Changeset 15971 for main/waeup.aaue/trunk/src/waeup/aaue/interswitch
- Timestamp:
- 31 Jan 2020, 14:47:29 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r15953 r15971 304 304 academic_session.library_fee) 305 305 library_amt_pg = gateway_net_amt( 306 academic_session.library_ fee_pg)306 academic_session.library_pg_fee) 307 307 xmldict['student_union_bank_id'] = '31' 308 308 xmldict['student_union_acct'] = '0051005007' … … 331 331 academic_session.library_fee) 332 332 library_amt_pg = gateway_net_amt( 333 academic_session.library_ fee_pg)333 academic_session.library_pg_fee) 334 334 xmldict['student_union_bank_id'] = '7' 335 335 xmldict['student_union_acct'] = '1019763348' … … 630 630 gateway_net_amt(self.context.amount_auth)) 631 631 632 # Sports Fee 633 elif self.context.p_category == 'sports': 634 self.pay_item_id = '000' 635 xmldict['institution_amt'] = 100 * ( 636 gateway_net_amt(self.context.amount_auth)) 637 638 # Library Fee 639 elif self.context.p_category == 'library': 640 self.pay_item_id = '000' 641 xmldict['institution_amt'] = 100 * ( 642 gateway_net_amt(self.context.amount_auth)) 643 644 # Library PG Fee 645 elif self.context.p_category == 'library_pg': 646 self.pay_item_id = '000' 647 xmldict['institution_amt'] = 100 * ( 648 gateway_net_amt(self.context.amount_auth)) 649 632 650 # Late Registration Fee 633 651 elif self.context.p_category == 'late_registration':
Note: See TracChangeset for help on using the changeset viewer.