Ignore:
Timestamp:
19 Jul 2023, 16:41:44 (19 months ago)
Author:
Henrik Bettermann
Message:

100_ now indicates first year only payments.

File:
1 edited

Legend:

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

    r17491 r17494  
    104104    'matricgown': 'Matriculation Gown Fee',
    105105    'lapel':      'File/Lapel Fee',
    106     'lmsplus':    'LMS Plus Fee',
     106    '1_lmsplus':  'LMS Plus Fee',
    107107    'nuga':       'NUGA Fee',
    108108    }
     
    335335                for item in sorted_items:
    336336                    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])
    338342                        if self.context.p_category == 'schoolfee_1' and item[0] == 'tuition':
    339343                            item_amt /= 2
Note: See TracChangeset for help on using the changeset viewer.