Changeset 15764
- Timestamp:
- 7 Nov 2019, 07:44:28 (5 years ago)
- Location:
- main/kofacustom.dspg/trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.dspg/trunk/buildout.cfg
r14716 r15764 39 39 update-versions-file = versions.cfg 40 40 41 index = https://pypi.python.org/simple/ 42 41 43 # eggs will be installed in the default buildout location 42 44 # (see .buildout/default.cfg in your home directory) -
main/kofacustom.dspg/trunk/layout/theme.html
r14451 r15764 198 198 199 199 <div class="col-md-10 content kofa-content-narrow"> 200 <div id="logo-container-narrow"> 201 <img src="static_custom/dspg_logo.png" width="65"> 202 </div> 200 203 <div class="well"> 201 204 <div class="kofa-content"> … … 341 344 <div class="row"> 342 345 <div class="col-md-12 content kofa-content-wide"> 346 <div id="logo-container-wide"> 347 <img src="static_custom/dspg_logo.png" width="80"> 348 </div> 343 349 <div class="well kofa-content"> 344 350 <div class="actionbar"> -
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.