Changeset 15106 for main/waeup.uniben/trunk
- Timestamp:
- 13 Aug 2018, 06:14:51 (6 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/interfaces.py
r15002 r15106 124 124 ) 125 125 126 development_fee = schema.Float( 127 title = _(u'Development Fee'), 128 default = 0.0, 129 required = False, 130 ) 131 126 132 remita_enabled = schema.Bool( 127 133 title = _(u'Remita integration enabled'), -
main/waeup.uniben/trunk/src/waeup/uniben/students/tests/test_browser.py
r15002 r15106 251 251 self.browser.open(self.payments_path) 252 252 self.browser.getLink("Add current session payment ticket").click() 253 self.browser.getControl(name="form.p_category").value = ['schoolfee'] 253 254 self.browser.getControl("Create ticket").click() 254 255 self.assertMatches('...Amount could not be determined...', -
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r15094 r15106 231 231 and student.current_mode == 'special_ft': 232 232 amount = 80000.0 233 elif category == 'develop' and student.is_postgrad: 234 amount = academic_session.development_fee 233 235 elif category == 'bed_allocation': 234 236 p_item = self.getAccommodationDetails(student)['bt'] -
main/waeup.uniben/trunk/src/waeup/uniben/utils/utils.py
r14971 r15106 89 89 #'pharmd_1':'Clerkship Fee', 90 90 'pharmd_2':'Module 1 Fee', 91 'develop':'Development Fee', 91 92 } 92 93 … … 108 109 #'pharmd_1':'PharmD Clerkship Fee (1st school fee prepayment)', 109 110 'pharmd_2':'PharmD Module 1 Fee (school fee prepayment)', 111 'develop':'Development Fee', 110 112 } 111 113
Note: See TracChangeset for help on using the changeset viewer.