Changeset 13454 for main/waeup.aaue/trunk
- Timestamp:
- 13 Nov 2015, 13:56:02 (9 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r13418 r13454 92 92 new_session = student['studycourse'].current_session + 1 93 93 return new_session, new_level 94 95 def _isPaymentDisabled(self, p_session, category, student): 96 academic_session = self._getSessionConfiguration(p_session) 97 if category == 'schoolfee' and \ 98 'sf_all' in academic_session.payment_disabled: 99 return True 100 if category == 'hostel_maintenance' and \ 101 'maint_all' in academic_session.payment_disabled: 102 return True 103 return False 94 104 95 105 def setPaymentDetails(self, category, student, -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r13453 r13454 54 54 'clearance': 'Acceptance Fee without additional fees', 55 55 'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee', 56 #'hostel_maintenance': 'Hostel Accommodation Fee',56 'hostel_maintenance': 'Hostel Accommodation Fee', 57 57 'application': 'Application Fee', 58 58 #'bed_allocation': 'Bed Allocation Fee', … … 130 130 'FRNS': 'Faculty requirements not satisfied', 131 131 } 132 133 DISABLE_PAYMENT_GROUP_DICT = { 134 'sf_all': 'School Fee - All Students', 135 'maint_all': 'Accommodation Fee - All Students', 136 }
Note: See TracChangeset for help on using the changeset viewer.