Changeset 15976 for main/waeup.aaue/trunk/src/waeup/aaue/interswitch
- Timestamp:
- 3 Feb 2020, 14:07:33 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r15971 r15976 368 368 xmldict['student_welfare_assurance_amt'] = 100 * student_welfare_assurance_amt 369 369 370 if student.entry_session == 2018 and student.is_fresh:370 if student.entry_session >= 2018 and student.is_fresh: 371 371 xmldict['sports_amt'] = 100 * sports_amt 372 372 if student.is_postgrad: … … 632 632 # Sports Fee 633 633 elif self.context.p_category == 'sports': 634 self.pay_item_id = ' 000'634 self.pay_item_id = '105' 635 635 xmldict['institution_amt'] = 100 * ( 636 636 gateway_net_amt(self.context.amount_auth)) … … 638 638 # Library Fee 639 639 elif self.context.p_category == 'library': 640 self.pay_item_id = ' 000'640 self.pay_item_id = '105' 641 641 xmldict['institution_amt'] = 100 * ( 642 642 gateway_net_amt(self.context.amount_auth)) … … 644 644 # Library PG Fee 645 645 elif self.context.p_category == 'library_pg': 646 self.pay_item_id = ' 000'646 self.pay_item_id = '105' 647 647 xmldict['institution_amt'] = 100 * ( 648 648 gateway_net_amt(self.context.amount_auth))
Note: See TracChangeset for help on using the changeset viewer.