Changeset 15393 for main/waeup.aaue/trunk/src/waeup/aaue/students
- Timestamp:
- 13 Apr 2019, 20:44:24 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.