Changeset 14236
- Timestamp:
- 27 Oct 2016, 15:34:12 (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
r14206 r14236 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) 239 240 text += ('Acceptance Fee, ' 240 241 '%s Naira Matriculation Gown Fee, ' 242 '%s Naira Student ID Card Fee, ' 241 243 '%s Naira Lapel/File Fee and ' 242 % (matric_gown_fee, lapel_fee))244 % (matric_gown_fee, id_card_fee, lapel_fee)) 243 245 return text + '250.0 Naira Transaction Charge.' 244 246 -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r14234 r14236 234 234 if amount in (0.0, None): 235 235 return _(u'Amount could not be determined.'), None 236 # Add Matric Gown Feeand Lapel Fee236 # Add Matric Gown, Student Id Card 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) + \ 239 240 gateway_net_amt(academic_session.lapel_fee) 240 241 elif category == 'late_registration': -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r14234 r14236 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 ',58 'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee + Student ID Card Fee', 59 59 'hostel_maintenance': 'Hostel Accommodation Fee', 60 60 'application': 'Application Fee',
Note: See TracChangeset for help on using the changeset viewer.