- Timestamp:
- 14 Dec 2016, 16:57:13 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/utils/utils.py
r14336 r14344 18 18 """Customize general helper utilities for Kofa. 19 19 """ 20 from copy import deepcopy 20 21 from kofacustom.nigeria.utils.utils import NigeriaKofaUtils 21 22 … … 43 44 'no': 'no application', 44 45 } 46 47 PAYMENT_CATEGORIES = { 48 'schoolfee': 'School Fee (total)', 49 'schoolfee_1': 'School Fee (1st instalment)', 50 'schoolfee_2': 'School Fee (2nd instalment)', 51 'clearance': 'Acceptance Fee', 52 #'bed_allocation': 'Bed Allocation Fee', 53 #'hostel_maintenance': 'Hostel Maintenance Fee', 54 #'transfer': 'Transfer Fee', 55 #'gown': 'Gown Hire Fee', 56 'application': 'Application Fee', 57 #'transcript': 'Transcript Fee', 58 #'late_registration': 'Late Course Registration Fee' 59 } 60 61 SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES)
Note: See TracChangeset for help on using the changeset viewer.