Changeset 17948 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 22 Oct 2024, 12:26:24 (2 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r17901 r17948 344 344 elif student.entry_session < 2023: 345 345 sorted_items = SCHOOLFEES[22][student.certcode].items() 346 elif student.entry_session < 2024: 347 sorted_items = SCHOOLFEES[23][student.certcode].items() 346 348 else: 347 sorted_items = SCHOOLFEES[2 3][student.certcode].items()349 sorted_items = SCHOOLFEES[24][student.certcode].items() 348 350 # Move tuition. We expect that tuition is the fourth element 349 351 sorted_items.insert(0, sorted_items.pop(3)) … … 370 372 and student.entry_session < 2022: 371 373 item_amt += 20000.0 372 el se:374 elif item[0] == 'tuition': 373 375 item_amt += academic_session.penalty_ug 374 376 item_amt *= 100
Note: See TracChangeset for help on using the changeset viewer.