Changeset 17494 for main/waeup.aaue/trunk/src/waeup/aaue/interswitch
- Timestamp:
- 19 Jul 2023, 16:41:44 (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r17491 r17494 104 104 'matricgown': 'Matriculation Gown Fee', 105 105 'lapel': 'File/Lapel Fee', 106 ' lmsplus':'LMS Plus Fee',106 '1_lmsplus': 'LMS Plus Fee', 107 107 'nuga': 'NUGA Fee', 108 108 } … … 335 335 for item in sorted_items: 336 336 try: 337 item_amt = 100 * int(item[1]) 337 if item[1].startswith('1_') and student.state == CLEARED: 338 # first year payment only 339 item_amt = 100 * int(item.split('_')[1]) 340 else: 341 item_amt = 100 * int(item[1]) 338 342 if self.context.p_category == 'schoolfee_1' and item[0] == 'tuition': 339 343 item_amt /= 2
Note: See TracChangeset for help on using the changeset viewer.