Changeset 11913 for main/waeup.fceokene/trunk/src/waeup/fceokene/utils
- Timestamp:
- 29 Oct 2014, 21:23:53 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/utils/utils.py
r10570 r11913 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 from waeup.fceokene.interfaces import MessageFactory as _ … … 36 37 } 37 38 39 40 PAYMENT_CATEGORIES = { 41 'schoolfee': 'School Fee', 42 'clearance': 'Acceptance Fee', 43 'bed_allocation': 'Bed Allocation Fee', 44 'hostel_maintenance': 'Hostel Maintenance Fee', 45 #'transfer': 'Transfer Fee', 46 #'gown': 'Gown Hire Fee', 47 'application': 'Application Fee', 48 #'transcript': 'Transcript Fee', 49 'third_semester': 'NCE Third Semester Fee', 50 } 51 52 SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES) 53 38 54 def getPaymentItem(self, payment): 39 55 """Return payment item.
Note: See TracChangeset for help on using the changeset viewer.