Changeset 17948


Ignore:
Timestamp:
22 Oct 2024, 12:26:24 (2 weeks ago)
Author:
Henrik Bettermann
Message:

Fx splitting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py

    r17901 r17948  
    344344                elif student.entry_session < 2023:
    345345                    sorted_items = SCHOOLFEES[22][student.certcode].items()
     346                elif student.entry_session < 2024:
     347                    sorted_items = SCHOOLFEES[23][student.certcode].items()
    346348                else:
    347                     sorted_items = SCHOOLFEES[23][student.certcode].items()
     349                    sorted_items = SCHOOLFEES[24][student.certcode].items()
    348350                # Move tuition. We expect that tuition is the fourth element
    349351                sorted_items.insert(0, sorted_items.pop(3))
     
    370372                                and student.entry_session < 2022:
    371373                                item_amt += 20000.0
    372                         else:
     374                        elif item[0] == 'tuition':
    373375                            item_amt += academic_session.penalty_ug
    374376                        item_amt *= 100
Note: See TracChangeset for help on using the changeset viewer.