- Timestamp:
- 11 Nov 2015, 13:40:53 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r13425 r13437 146 146 welfare_fee = gateway_net_amt(academic_session.welfare_fee) 147 147 union_fee = gateway_net_amt(academic_session.union_fee) 148 text += ('School Fee '149 ' , %s Naira Students\' Union Dues'150 ' , %s Naira Student Welfare Assurance Fee'148 text += ('School Fee, ' 149 '%s Naira Students\' Union Dues, ' 150 '%s Naira Student Welfare Assurance Fee and ' 151 151 % (union_fee, welfare_fee)) 152 152 elif self.context.p_category in ( … … 154 154 matric_gown_fee = gateway_net_amt(academic_session.matric_gown_fee) 155 155 lapel_fee = gateway_net_amt(academic_session.lapel_fee) 156 text += ('Acceptance Fee '157 ' , %s Naira Matriculation Gown Fee'158 ' , %s Naira Lapel/File Fee'156 text += ('Acceptance Fee, ' 157 '%s Naira Matriculation Gown Fee, ' 158 '%s Naira Lapel/File Fee and ' 159 159 % (matric_gown_fee, lapel_fee)) 160 return text + ' and250.0 Naira Transaction Charge.'160 return text + '250.0 Naira Transaction Charge.' 161 161 162 162 class CustomStudyLevelDisplayFormPage(StudyLevelDisplayFormPage):
Note: See TracChangeset for help on using the changeset viewer.