- Timestamp:
- 14 Nov 2017, 11:08:44 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r14893 r14897 263 263 if p_item is None: 264 264 return _('Study course data are incomplete.'), None 265 #if student.faccode == 'JUPEB':266 # return _('No payment required.'), None267 if student.faccode.startswith('FCETA'):265 if student.faccode == 'JUPEB': 266 amount = 50000.0 267 elif student.faccode.startswith('FCETA'): 268 268 # ASABA and AKOKA 269 269 amount = 30000.0 270 270 elif p_item in ('BSCANA', 'BSCMBC', 'BMLS', 'BSCNUR', 'BSCPHS', 'BDS', 271 271 'MBBSMED', 'MBBSNDU', 'BSCPTY'): 272 amount = 65000.0 273 else: 274 amount = 45000.0 275 # Clearance fee and provider amount have been increased 276 # for new students. 277 if student.entry_session >= 2016: 278 amount += 5000.0 272 amount = 80000.0 273 else: 274 amount = 60000.0 279 275 elif category == 'schoolfee': 280 276 try:
Note: See TracChangeset for help on using the changeset viewer.