- Timestamp:
- 23 Jul 2020, 07:56:01 (4 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r16124 r16179 458 458 else: 459 459 amount += academic_session.penalty_ug 460 elif category == ('fac_dep'):461 if student.faccode in ('FAT', 'FED', 'FLW', 'FMS', 'FSS'):462 amount = 4200.0463 elif student.faccode in ('FAG', 'FBM', 'FCS',464 'FES', 'FET', 'FLS', 'FPS'):465 amount = 5200.0466 elif student.faccode == 'FAG' and student.current_level == 400:467 amount = 10200.0468 elif student.depcode == 'VTE':469 amount = 5200.0470 if student.entry_session >= 2019:471 amount += gateway_net_amt(academic_session.ict_fee)460 #elif category == ('fac_dep'): 461 # if student.faccode in ('FAT', 'FED', 'FLW', 'FMS', 'FSS'): 462 # amount = 4200.0 463 # elif student.faccode in ('FAG', 'FBM', 'FCS', 464 # 'FES', 'FET', 'FLS', 'FPS'): 465 # amount = 5200.0 466 # elif student.faccode == 'FAG' and student.current_level == 400: 467 # amount = 10200.0 468 # elif student.depcode == 'VTE': 469 # amount = 5200.0 470 # if student.entry_session >= 2019: 471 # amount += gateway_net_amt(academic_session.ict_fee) 472 472 elif category == 'sports_library': # temporarily in 2020 473 473 if student.is_postgrad: -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r16177 r16179 67 67 'ent_registration_1': 'Registration Fee ENT201', 68 68 'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 69 'ict': 'ICT/Affidavit Dues', 69 70 'restitution': 'Restitution Fee', 70 71 'sports': 'Sports Fee', … … 105 106 'ent_registration_1': 'Registration Fee ENT201', 106 107 #'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 108 'ict': 'ICT/Affidavit Dues', 107 109 'restitution': 'Restitution Fee', 108 110 'sports': 'Sports Fee', … … 200 202 'gst_registration_2': 'Registration Fee GST222', 201 203 'ent_registration_1': 'Registration Fee ENT201', 202 'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 204 #'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 205 'ict': 'ICT/Affidavit Dues', 203 206 'restitution': 'Restitution Fee', 204 207 }
Note: See TracChangeset for help on using the changeset viewer.