Changeset 17173 for main/kofacustom.unidel
- Timestamp:
- 25 Nov 2022, 07:12:58 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/students/utils.py
r17170 r17173 127 127 return _('Study course data are incomplete.'), None 128 128 amount = academic_session.clearance_fee 129 if amount and student.faccode != 'PRE' and not student.is_jupeb: 130 if local(student): 131 amount *= 2.0 132 else: 133 amount *= 2.4 129 if local(student): 130 amount *= 2.0 131 else: 132 amount *= 2.4 133 if student.faccode == 'PRE': 134 amount = 20000.0 135 if student.is_jupeb: 136 amount = 25000.0 134 137 elif category == 'bed_allocation': 135 138 p_item = self.getAccommodationDetails(student)['bt']
Note: See TracChangeset for help on using the changeset viewer.