Changeset 14239 for main/waeup.aaue/trunk
- Timestamp:
- 28 Oct 2016, 15:11:47 (8 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r14236 r14239 237 237 matric_gown_fee = gateway_net_amt(academic_session.matric_gown_fee) 238 238 lapel_fee = gateway_net_amt(academic_session.lapel_fee) 239 id_card_fee = gateway_net_amt(academic_session.id_card_fee)240 239 text += ('Acceptance Fee, ' 241 240 '%s Naira Matriculation Gown Fee, ' 242 '%s Naira Student ID Card Fee, '243 241 '%s Naira Lapel/File Fee and ' 244 % (matric_gown_fee, id_card_fee,lapel_fee))242 % (matric_gown_fee, lapel_fee)) 245 243 return text + '250.0 Naira Transaction Charge.' 246 244 -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r14238 r14239 234 234 if amount in (0.0, None): 235 235 return _(u'Amount could not be determined.'), None 236 # Add Matric Gown , Student Id Cardand Lapel Fee236 # Add Matric Gown Fee and Lapel Fee 237 237 if category == 'clearance_incl': 238 238 amount += gateway_net_amt(academic_session.matric_gown_fee) + \ 239 gateway_net_amt(academic_session.id_card_fee) + \240 239 gateway_net_amt(academic_session.lapel_fee) 241 240 elif category == 'late_registration': -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r14236 r14239 56 56 'schoolfee_incl': 'School Fee + Student Union Dues + Welfare Assurance Fee', 57 57 'clearance': 'Acceptance Fee without additional fees', 58 'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee + Student ID Card Fee',58 'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee', 59 59 'hostel_maintenance': 'Hostel Accommodation Fee', 60 60 'application': 'Application Fee',
Note: See TracChangeset for help on using the changeset viewer.