Changeset 15764 for main/kofacustom.dspg/trunk/src/kofacustom/dspg
- Timestamp:
- 7 Nov 2019, 07:44:28 (5 years ago)
- Location:
- main/kofacustom.dspg/trunk/src/kofacustom/dspg
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.dspg/trunk/src/kofacustom/dspg/interswitch/browser.py
r15707 r15764 123 123 self.redirect(self.url(self.context, '@@index')) 124 124 return 125 self.context.r_company = u'interswitch' 125 126 student = self.student 126 127 xmldict = self.xmldict … … 138 139 if self.context.p_category.startswith('schoolfee'): 139 140 self.pay_item_id = '102' 140 provider_amt = 2800.0 141 if self.context.p_item != 'Balance': 142 provider_amt = 2800.0 141 143 tech_fee = 1200.0 142 144 if student.faccode == 'SPAT': … … 148 150 elif self.context.p_category == 'clearance': 149 151 self.pay_item_id = '103' 150 provider_amt = 500.0 152 if self.context.p_item != 'Balance': 153 provider_amt = 500.0 151 154 if student.faccode == 'SPAT': 152 155 xmldict['institution_acct'] = '1015220292' … … 184 187 xmldict['institution_bank_id'] = '8' 185 188 elif self.context.p_category == 'hostel_maintenance': 186 provider_amt = 500.0 189 if self.context.p_item != 'Balance': 190 provider_amt = 500.0 187 191 self.pay_item_id = '117' 188 192 xmldict['institution_acct'] = '2011810353' … … 492 496 self.redirect(self.url(self.context, '@@index')) 493 497 return 498 self.context.r_company = u'interswitch' 494 499 xmldict = {} 495 500 provider_amt = 500.0 -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/browser.py
r15753 r15764 280 280 281 281 def render(self): 282 return283 282 students_utils = getUtility(IStudentsUtils) 284 283 return students_utils.renderPDFAdmissionLetter(self,
Note: See TracChangeset for help on using the changeset viewer.