Changeset 18057
- Timestamp:
- 9 Apr 2025, 10:10:39 (5 days ago)
- Location:
- main/waeup.fceokene/trunk/src/waeup/fceokene
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/interswitch/browser.py
r16008 r18057 85 85 xmldict['institution_item_name'] = self.category 86 86 xmldict['institution_name'] = INSTITUTION_NAME 87 if self.context.p_category in ('schoolfee', 'third_semester' ):87 if self.context.p_category in ('schoolfee', 'third_semester', 'reg2sandwich'): 88 88 self.pay_item_id = '8302' 89 89 elif 'maintenance' in self.context.p_category: … … 93 93 provider_amt = 0.0 94 94 self.pay_item_id = '8304' 95 if self.context.p_item == 'Balance' or self.context.p_category == 'third_semester':95 if self.context.p_item == 'Balance' or self.context.p_category in ('third_semester', 'reg2sandwich'): 96 96 provider_amt = 0.0 97 97 xmldict['institution_amt'] = 100 * ( -
main/waeup.fceokene/trunk/src/waeup/fceokene/remita/browser.py
r16919 r18057 82 82 provider_amt = 1600.0 83 83 if self.context.p_item == 'Balance' or self.context.p_category in ( 84 'clearance', 'hostel_maintenance', 'third_semester', 84 'clearance', 'hostel_maintenance', 'third_semester', 'reg2sandwich', 85 85 'schoolfee_third'): 86 86 provider_amt = 0.0 -
main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py
r18052 r18057 144 144 # no_additional_courses = len(courses_level)-6 145 145 # amount = 2000.0 * no_additional_courses 146 elif category == 'reg2sandwich': 147 amount = 40000.0 146 148 elif category.startswith('schoolfee'): 147 149 increment_2022 = 0 -
main/waeup.fceokene/trunk/src/waeup/fceokene/utils/utils.py
r17734 r18057 95 95 'hostel_maintenance': 'Hostel Maintenance Fee', 96 96 'application': 'Application Fee', 97 ' third_semester': 'NCE Third Semester Fee (additionalcourses)',97 'reg2sandwich': 'Regular to Sandwich (14 courses)', 98 98 } 99 99 … … 109 109 'application': 'Application Fee', 110 110 #'third_semester': 'NCE Third Semester Fee (additional courses)', 111 'reg2sandwich': 'Regular to Sandwich (14 courses)', 111 112 } 112 113
Note: See TracChangeset for help on using the changeset viewer.