Changeset 17704 for main/kofacustom.edopoly/trunk/src/kofacustom
- Timestamp:
- 26 Feb 2024, 08:50:11 (9 months ago)
- Location:
- main/kofacustom.edopoly/trunk/src/kofacustom/edopoly
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/students/utils.py
r17703 r17704 96 96 req_payments = ('ict_entre',) 97 97 req_payments_titles = 'ICT' 98 # HND1 and HND2 full time do not pay for LOGBOOK and ICT98 # HND1 and HND2 full time do not pay for LOGBOOK 99 99 elif student.current_mode == 'hnd_ft' and student.state in ( 100 100 CLEARED, RETURNING): 101 req_payments = ('union', )102 req_payments_titles = 'Student Union '101 req_payments = ('union', 'ict_entre') 102 req_payments_titles = 'Student Union and ICT' 103 103 # ND2 FULL TIME do not pay LOGBOOK 104 104 elif student.current_mode == 'nd_ft' and student.state == RETURNING: -
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/utils/utils.py
r17703 r17704 116 116 del spc['clearance'] 117 117 if student.current_mode == 'hnd_ft': 118 del spc[' ict_entre']118 del spc['logbook_combo'] 119 119 return spc 120 120
Note: See TracChangeset for help on using the changeset viewer.