Changeset 15393 for main/waeup.aaue
- Timestamp:
- 13 Apr 2019, 20:44:24 (6 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
r15373 r15393 61 61 62 62 clearance_fee_ug_pt = schema.Float( 63 title = _(u'PT UG Acceptance Fee'),63 title = _(u'PT and DSH UG Acceptance Fee'), 64 64 default = 0.0, 65 65 required = True, -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r15382 r15393 342 342 elif student.faccode == 'FP': 343 343 amount = academic_session.clearance_fee_fp 344 elif student.current_mode.endswith('_pt'): 345 if student.is_postgrad: 346 amount = academic_session.clearance_fee_pg_pt 347 else: 348 amount = academic_session.clearance_fee_ug_pt 344 elif student.current_mode in ('ug_pt', 'de_pt', 'ug_dsh', 'de_dsh'): 345 amount = academic_session.clearance_fee_ug_pt 346 elif student.current_mode == 'special_pg_pt': 347 amount = academic_session.clearance_fee_pg_pt 349 348 elif student.faccode == 'FCS': 350 349 # Students in clinical medical sciences pay the medical 351 350 # acceptance fee 352 351 amount = academic_session.clearance_fee_med 353 elif student. is_postgrad: # and not part-time352 elif student.current_mode == 'special_pg_ft': 354 353 if category != 'clearance': 355 354 return _("No additional fees required."), None
Note: See TracChangeset for help on using the changeset viewer.