Changeset 17082


Ignore:
Timestamp:
2 Sep 2022, 12:28:47 (2 years ago)
Author:
Henrik Bettermann
Message:

Fix split.

File:
1 edited

Legend:

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

    r17081 r17082  
    391391                        gateway_net_amt(self.context.amount_auth)
    392392                        - provider_amt
    393                         - joint_venture_amt
    394                         - aaue_share_amt
    395393                        - student_union_due_amt
    396394                        - student_welfare_assurance_amt
     
    410408<item_detail item_id="7" item_name="Joint Venture" item_amt="%(joint_venture_amt)d" bank_id="%(joint_venture_bank_id)s" acct_num="%(joint_venture_acct)s" />
    411409<item_detail item_id="8" item_name="AAUE Share" item_amt="%(aaue_share_amt)d" bank_id="%(aaue_share_bank_id)s" acct_num="%(aaue_share_acct)s" />""" % xmldict
     410                        xmldict['institution_amt'] = 100 * (
     411                            gateway_net_amt(self.context.amount_auth)
     412                            - provider_amt
     413                            - joint_venture_amt
     414                            - aaue_share_amt
     415                            - student_union_due_amt
     416                            - student_welfare_assurance_amt
     417                            - sports_amt
     418                            - library_amt)                   
    412419                    if student.entry_session >= 2021 and student.current_mode == 'ug_ft':
    413420                        xmltext += """"
    414421<item_detail item_id="9" item_name="LMS plus Sundry Fees" item_amt="%(lms_sund_amt)d" bank_id="%(institution_bank_id)s" acct_num="%(institution_acct)s" />""" % xmldict
     422                        xmldict['institution_amt'] = 100 * (
     423                            gateway_net_amt(self.context.amount_auth)
     424                            - provider_amt
     425                            - joint_venture_amt
     426                            - aaue_share_amt
     427                            - student_union_due_amt
     428                            - student_welfare_assurance_amt
     429                            - sports_amt
     430                            - library_amt
     431                            - lms_sund_amt)                   
    415432                    xmltext += """"
    416433</item_details>
Note: See TracChangeset for help on using the changeset viewer.