Changeset 16870 for main/kofacustom.unidel/trunk/src/kofacustom
- Timestamp:
- 8 Mar 2022, 21:36:15 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py
r16717 r16870 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 … … 24 25 """ 25 26 27 PAYMENT_CATEGORIES = { 28 'schoolfee': 'School Fee', 29 'clearance': 'Acceptance Fee', 30 'bed_allocation': 'Bed Allocation Fee', 31 #'hostel_maintenance': 'Hostel Maintenance Fee', 32 #'transfer': 'Transfer Fee', 33 #'gown': 'Gown Hire Fee', 34 'application': 'Application Fee', 35 #'app_balance': 'Application Fee Balance', 36 #'transcript': 'Transcript Fee', 37 #'late_registration': 'Late Course Registration Fee', 38 #'combi': 'Combi Payment', 39 } 40 41 SELECTABLE_PAYMENT_CATEGORIES = { 42 'schoolfee': 'School Fee', 43 'clearance': 'Acceptance Fee', 44 'bed_allocation': 'Bed Allocation Fee', 45 } 46 47 def selectable_payment_categories(self, student): 48 return self.SELECTABLE_PAYMENT_CATEGORIES 49 50 PREVIOUS_PAYMENT_CATEGORIES = deepcopy(SELECTABLE_PAYMENT_CATEGORIES) 51
Note: See TracChangeset for help on using the changeset viewer.