- Timestamp:
- 4 Oct 2019, 21:11:24 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py
r10765 r15645 18 18 """Customize general helper utilities for Kofa. 19 19 """ 20 21 from copy import deepcopy 20 22 from kofacustom.nigeria.utils.utils import NigeriaKofaUtils 21 23 … … 24 26 """ 25 27 28 PAYMENT_CATEGORIES = { 29 'schoolfee': 'School Fee', 30 'clearance': 'Acceptance Fee', 31 'bed_allocation': 'Bed Allocation Fee', 32 'hostel_maintenance': 'Accommodation', 33 #'transfer': 'Transfer Fee', 34 #'gown': 'Gown Hire Fee', 35 'application': 'Application Fee', 36 'app_balance': 'Application Fee Balance', 37 'transcript': 'Transcript Fee', 38 'late_registration': 'Late Registration Fee', 39 'science': 'Science Bench Fee', 40 'clinical': 'Clinical Fee (Medical Students)', 41 'develop': 'Development Fee', 42 'municipal': 'Municipal Fee', 43 'alumni': 'Alumni Fee', 44 'conv': 'Convocation Fee', 45 'matric': 'Matriculation Fee', 46 'waecneco': 'WAEC & NECO Verification', 47 'jambver': 'JAMB Verification', 48 'book': 'Book Deposit', 49 'parentsconsult': 'Parents Consultative Forum (PCF) Fee', 50 'pharmlab': 'Pharmacy Lab Support Fee', 51 } 52 53 SELECTABLE_PAYMENT_CATEGORIES = { 54 'schoolfee': 'School Fee', 55 'clearance': 'Acceptance Fee', 56 #'bed_allocation': 'Bed Allocation Fee', 57 'hostel_maintenance': 'Accommodation', 58 #'transfer': 'Transfer Fee', 59 #'gown': 'Gown Hire Fee', 60 'application': 'Application Fee', 61 #'app_balance': 'Application Fee Balance', 62 #'transcript': 'Transcript Fee', 63 'late_registration': 'Late Registration Fee', 64 'science': 'Science Bench Fee', 65 'clinical': 'Clinical Fee (Medical Students)', 66 'develop': 'Development Fee', 67 'municipal': 'Municipal Fee', 68 'alumni': 'Alumni Fee', 69 'conv': 'Convocation Fee', 70 'matric': 'Matriculation Fee', 71 'waecneco': 'WAEC & NECO Verification', 72 'jambver': 'JAMB Verification', 73 'book': 'Book Deposit', 74 'parentsconsult': 'Parents Consultative Forum (PCF) Fee', 75 'pharmlab': 'Pharmacy Lab Support Fee', 76 } 77 78 PREVIOUS_PAYMENT_CATEGORIES = deepcopy(SELECTABLE_PAYMENT_CATEGORIES)
Note: See TracChangeset for help on using the changeset viewer.