Changeset 14987 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 23 Apr 2018, 07:36:08 (7 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r14980 r14987 272 272 xmldict['institution_amt'] = 100 * ( 273 273 gateway_net_amt(self.context.amount_auth)) 274 elif self.context.p_category in ('schoolfee_incl', 'schoolfee_1'): 274 elif self.context.p_category in ('schoolfee_incl', 'schoolfee_1') \ 275 and student.current_mode != 'ijmbe': 275 276 # Schoolfee including additional fees 276 277 xmldict['student_union_due_amt'] = 100 * student_union_due_amt -
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r14986 r14987 295 295 'clearance': 'Acceptance Fee', 296 296 'schoolfee': 'School Fee', 297 'schoolfee_1': 'School Fee (1st instalment) + Student Union Dues + Welfare Assurance Fee',297 'schoolfee_1': 'School Fee (1st instalment)', 298 298 'schoolfee_2': 'School Fee (2nd instalment)', 299 299 } -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r14977 r14987 418 418 return _(u'Amount could not be determined.'), None 419 419 # Add Student Union Fee , Student Id Card Fee and Welfare Assurance 420 if category in ('schoolfee_incl', 'schoolfee_1'): 420 if category in ('schoolfee_incl', 'schoolfee_1') and \ 421 student.current_mode != 'ijmbe': 421 422 amount += gateway_net_amt(academic_session.welfare_fee) + \ 422 423 gateway_net_amt(academic_session.union_fee)
Note: See TracChangeset for help on using the changeset viewer.