Changeset 16175
- Timestamp:
- 21 Jul 2020, 05:36:59 (4 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/browser.py
r16164 r16175 168 168 return 169 169 170 @property 171 def label(self): 172 if self.context.prefix.startswith('tsc'): 173 return _('Request for ${a}', 174 mapping = {'a':self.context.title}) 175 return _('Apply for ${a}', 176 mapping = {'a':self.context.title}) 177 170 178 class CustomApplicantDisplayFormPage(NigeriaApplicantDisplayFormPage): 171 179 """A display view for applicant data. -
main/waeup.uniben/trunk/src/waeup/uniben/applicants/utils.py
r16173 r16175 65 65 '(2nd supplementary advert)', 'ASE'], 66 66 'spft': ['Special Full-Time Programmes', 'SP'], 67 'tscf': ['Transcript Application(without student record)', 'TRF'],68 'tscs': ['Transcript Application(with student record)', 'TRS'],67 'tscf': ['Transcript (without student record)', 'TRF'], 68 'tscs': ['Transcript (with student record)', 'TRS'], 69 69 } 70 70 … … 132 132 cost = DESTINATION_COST[applicant.charge][1] 133 133 payment.amount_auth = applicant.no_copies * cost 134 payment.p_category = ' transcript'134 payment.p_category = 'application' 135 135 return 136 136 else: -
main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py
r16174 r16175 263 263 if self.context.__parent__.applicant_id.startswith('pre'): 264 264 provider_amt = 2000.0 265 if self.context.__parent__.applicant_id.startswith('tsc'): 266 provider_amt = 1200.0 265 267 if self.context.__parent__.applicant_id.startswith('dp'): 266 268 inst_acct = "0040217361038"
Note: See TracChangeset for help on using the changeset viewer.