Changeset 16887 for main/waeup.fceokene/trunk/src/waeup/fceokene/students
- Timestamp:
- 15 Mar 2022, 22:05:44 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/students/utils.py
r16554 r16887 126 126 if student.state not in (ADMITTED, CLEARANCE, REQUESTED, CLEARED): 127 127 return _(u'Acceptance Fee payments not allowed.'), None 128 elif category == 'third_semester'and student.current_mode == 'nce_ft' \128 elif category.startswith('third_semester') and student.current_mode == 'nce_ft' \ 129 129 and p_level in (300, 310, 320, 400, 410, 420): 130 130 if not self._nce3PaymentMade(student, p_level): 131 131 return _(u'Make NCE 3 school fee payment first.'), None 132 132 if student.depcode in ARTS: 133 amount = 7688 133 amount = 7688.0 134 134 else: 135 amount = 7938 135 amount = 7938.0 136 no_additional_courses = 0 137 if len(category.split('_')) == 3: 138 no_additional_courses = int(category.split('_')[2]) 139 amount += 2000.0 * no_additional_courses 136 140 elif category.startswith('schoolfee'): 137 141 if category == 'schoolfee_pde1':
Note: See TracChangeset for help on using the changeset viewer.