Changeset 15745 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 3 Nov 2019, 08:39:29 (5 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
r15742 r15745 260 260 ) 261 261 262 ict_fee = schema.Float( 263 title = _(u'ICT Fee'), 264 default = 0.0, 265 required = True, 266 ) 267 262 268 coursereg_deadline = schema.Datetime( 263 269 title = _(u'FT Course Reg. Deadline'), -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r15742 r15745 455 455 and student.state == CLEARED: 456 456 amount += gateway_net_amt(academic_session.id_card_fee) 457 if student.entry_session >= 2019:458 amount += gateway_net_amt(academic_session.ict_fee)459 457 # Add session specific penalty fees 460 458 if student.is_postgrad: … … 472 470 elif student.depcode == 'VAT': 473 471 amount = 5000.0 472 if student.entry_session >= 2019: 473 amount += gateway_net_amt(academic_session.ict_fee) 474 474 elif not student.is_postgrad: 475 475 fee_name = category + '_fee' -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r15723 r15745 65 65 'gst_registration_2': 'Registration Fee GST222', 66 66 'ent_registration_1': 'Registration Fee ENT201', 67 'fac_dep': 'Faculty and Departmental Dues ',67 'fac_dep': 'Faculty and Departmental Dues (incl. ICT Fee)', 68 68 'restitution': 'Restitution Fee', 69 69 } … … 97 97 'gst_registration_2': 'Registration Fee GST222', 98 98 'ent_registration_1': 'Registration Fee ENT201', 99 'fac_dep': 'Faculty and Departmental Dues ',99 'fac_dep': 'Faculty and Departmental Dues (incl. ICT Fee)', 100 100 'restitution': 'Restitution Fee', 101 101 }
Note: See TracChangeset for help on using the changeset viewer.