Changeset 16899 for main/waeup.fceokene/trunk/src/waeup/fceokene/utils
- Timestamp:
- 22 Mar 2022, 12:46:49 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/utils/utils.py
r16891 r16899 88 88 'schoolfee': 'School Fee', 89 89 'schoolfee_pde1': 'School Fee 1st instalment (new PDE students only)', 90 'schoolfee_third': 'NCE Third Semester Fee (6 courses)', 90 91 'clearance': 'Acceptance Fee', 91 92 'bed_allocation': 'Bed Allocation Fee', 92 93 'hostel_maintenance': 'Hostel Maintenance Fee', 93 94 'application': 'Application Fee', 94 'third_semester': 'NCE Third Semester Fee (fee depends on the number of courses registered)', 95 'third_semester': 'NCE Third Semester Fee (additional courses)', 96 } 97 98 SELECTABLE_PAYMENT_CATEGORIES = { 99 'schoolfee': 'School Fee', 100 'schoolfee_pde1': 'School Fee 1st instalment (new PDE students only)', 101 'schoolfee_third': 'NCE Third Semester Fee (6 courses)', 102 'clearance': 'Acceptance Fee', 103 'bed_allocation': 'Bed Allocation Fee', 104 'hostel_maintenance': 'Hostel Maintenance Fee', 105 'application': 'Application Fee', 106 #'third_semester': 'NCE Third Semester Fee (additional courses)', 95 107 } 96 108 … … 101 113 } 102 114 115 BALANCE_PAYMENT_CATEGORIES = { 116 'schoolfee': 'School Fee', 117 'third_semester': 'NCE Third Semester Fee (N2000 per additional course)', 118 } 119 103 120 def selectable_payment_categories(self, student): 104 return self. PAYMENT_CATEGORIES121 return self.SELECTABLE_PAYMENT_CATEGORIES 105 122 106 123 VERDICTS_DICT = {
Note: See TracChangeset for help on using the changeset viewer.