- Timestamp:
- 17 May 2018, 09:01:49 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/utils/utils.py
r10765 r15011 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': 'Accommodation Booking Fee', 31 'hostel_maintenance': 'Hostel Maintenance Fee', 32 'application': 'Application Fee', 33 'ict_entre': 'ICT & Entrepreneur Fee', 34 'logbook': 'Logbook Fee', 35 } 36 37 SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES)
Note: See TracChangeset for help on using the changeset viewer.