Changeset 17166 for main/kofacustom.unidel
- Timestamp:
- 20 Nov 2022, 11:22:41 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/students/utils.py
r17162 r17166 126 126 return _('Study course data are incomplete.'), None 127 127 amount = academic_session.clearance_fee 128 if amount: 129 if not local(student) and student.faccode != 'PRE' \ 130 and not student.is_jupeb: 131 amount += 10000 132 if student.faccode == 'PRE': 133 amount -= 5000 128 if amount and student.faccode != 'PRE' and not student.is_jupeb: 129 if nlocal(student): 130 amount *= 2.0 131 else: 132 amount *= 2.4 134 133 elif category == 'bed_allocation': 135 134 p_item = self.getAccommodationDetails(student)['bt']
Note: See TracChangeset for help on using the changeset viewer.