- Timestamp:
- 22 Jan 2018, 22:48:02 (7 years ago)
- Location:
- main/kofacustom.dspg/trunk/src/kofacustom/dspg
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.dspg/trunk/src/kofacustom/dspg/interfaces.py
r14869 r14942 70 70 # Additional fees in custom package 71 71 72 gown_fee = schema.Float( 73 title = _(u'Gown Fee'), 74 default = 0.0, 75 required = False, 76 ) 77 72 78 certificate_fee = schema.Float( 73 79 title = _(u'ND Certificate Fee'), -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/interswitch/browser.py
r14940 r14942 150 150 xmldict['institution_acct'] = '2004402644' 151 151 xmldict['institution_bank_id'] = '8' 152 elif self.context.p_category == 'gown': 153 self.pay_item_id = '102' # We use school fee item id. 154 xmldict['institution_acct'] = '2006612782' 155 xmldict['institution_bank_id'] = '8' 152 156 elif self.context.p_category in SPECIAL_PAYMENT_PARAMS.keys(): 153 157 self.pay_item_id = SPECIAL_PAYMENT_PARAMS[self.context.p_category][0] -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/utils.py
r14940 r14942 163 163 else: 164 164 return _(u'No bed allocated.'), None 165 elif category == 'gown': 166 amount = academic_session.gown_fee 165 167 elif category == 'transcript': 166 168 amount = academic_session.transcript_fee -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/utils/utils.py
r14937 r14942 105 105 'nysc_id_card': 'NYSC ID Card', 106 106 'ijmb_result':'IJMB Result', 107 'gown': 'Gown Hire Fee', 107 108 } 108 109 … … 111 112 'schoolfee': 'School Fee', 112 113 'dep_sug':'NADESU/SA/SUG', 114 'gown': 'Gown Hire Fee', 113 115 #'carryover1': 'One Carry-Over', 114 116 #'carryover2': 'Two Carry-Overs',
Note: See TracChangeset for help on using the changeset viewer.