Changeset 15181 for main/waeup.aaue/trunk/src/waeup/aaue/interswitch
- Timestamp:
- 2 Oct 2018, 15:03:19 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r15180 r15181 244 244 library_amt = gateway_net_amt( 245 245 academic_session.library_fee) 246 library_amt_pg = gateway_net_amt( 247 academic_session.library_fee_pg) 246 248 xmldict['student_union_bank_id'] = '31' 247 249 xmldict['student_union_acct'] = '0051005007' … … 267 269 library_amt = gateway_net_amt( 268 270 academic_session.library_fee) 271 library_amt_pg = gateway_net_amt( 272 academic_session.library_fee_pg) 269 273 xmldict['student_union_bank_id'] = '7' 270 274 xmldict['student_union_acct'] = '1019763348' … … 293 297 xmldict['student_welfare_assurance_amt'] = 100 * student_welfare_assurance_amt 294 298 xmldict['sports_amt'] = 100 * sports_amt 295 xmldict['library_amt'] = 100 * library_amt 299 if student.is_postgrad: 300 xmldict['library_amt'] = 100 * library_amt_pg 301 else: 302 xmldict['library_amt'] = 100 * library_amt 296 303 xmldict['institution_amt'] = 100 * ( 297 304 gateway_net_amt(self.context.amount_auth)
Note: See TracChangeset for help on using the changeset viewer.