Changeset 13425 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 10 Nov 2015, 05:06:58 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r13414 r13425 142 142 except KeyError: 143 143 academic_session = None 144 text = '\n\n The amounts include: ' 145 text += '250.0 Naira Transaction Charge' 144 text = '\n\n The Amount Authorized is inclusive of: ' 146 145 if self.context.p_category == 'schoolfee_incl' and academic_session: 147 146 welfare_fee = gateway_net_amt(academic_session.welfare_fee) 148 147 union_fee = gateway_net_amt(academic_session.union_fee) 149 text += (', %s Naira Student Welfare Assurance Fee and %s Naira Students\' Union Dues' 150 % (welfare_fee, union_fee)) 148 text += ('School Fee' 149 ', %s Naira Students\' Union Dues' 150 ', %s Naira Student Welfare Assurance Fee' 151 % (union_fee, welfare_fee)) 151 152 elif self.context.p_category in ( 152 153 'clearance_incl', 'clearance_medical_incl') and academic_session: 153 154 matric_gown_fee = gateway_net_amt(academic_session.matric_gown_fee) 154 155 lapel_fee = gateway_net_amt(academic_session.lapel_fee) 155 text += (', %s Naira Matriculation Gown Fee and %s Naira Lapel/File Fee' 156 text += ('Acceptance Fee' 157 ', %s Naira Matriculation Gown Fee' 158 ', %s Naira Lapel/File Fee' 156 159 % (matric_gown_fee, lapel_fee)) 157 return text + ' .'160 return text + ' and 250.0 Naira Transaction Charge.' 158 161 159 162 class CustomStudyLevelDisplayFormPage(StudyLevelDisplayFormPage):
Note: See TracChangeset for help on using the changeset viewer.