Changeset 13377 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 2 Nov 2015, 05:54:08 (9 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
r13374 r13377 30 30 """ 31 31 32 32 33 application_fee = schema.Float( 33 34 title = _(u'Application Fee'), … … 44 45 clearance_fee_fp = schema.Float( 45 46 title = _(u'FP Acceptance Fee'), 47 default = 0.0, 48 required = True, 49 ) 50 51 clearance_fee_pt = schema.Float( 52 title = _(u'PT Acceptance Fee'), 53 default = 0.0, 54 required = True, 55 ) 56 57 clearance_fee_med = schema.Float( 58 title = _(u'Medical Acceptance Fee'), 46 59 default = 0.0, 47 60 required = True, -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r13374 r13377 136 136 if student.faccode == 'FP': 137 137 amount = academic_session.clearance_fee_fp 138 elif student.current_mode.endswith('_pt'): 139 amount = academic_session.clearance_fee_pt 140 elif student.faccode in ('FBM', 'FCS'): 141 amount = academic_session.clearance_fee_med 138 142 else: 139 143 amount = academic_session.clearance_fee
Note: See TracChangeset for help on using the changeset viewer.