Changeset 17703 for main/kofacustom.edopoly/trunk/src
- Timestamp:
- 22 Feb 2024, 10:59:32 (9 months ago)
- Location:
- main/kofacustom.edopoly/trunk/src/kofacustom/edopoly
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/interswitch/tests.py
r17391 r17703 89 89 payment.p_session = 2004 90 90 self.student['payments']['567'] = payment 91 92 91 self.browser.open(self.payments_path + '/addop') 93 92 self.browser.getControl(name="form.p_category").value = ['schoolfee'] -
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/students/utils.py
r17397 r17703 96 96 req_payments = ('ict_entre',) 97 97 req_payments_titles = 'ICT' 98 # HND1 and HND2 full time do not pay for LOGBOOK 98 # HND1 and HND2 full time do not pay for LOGBOOK and ICT 99 99 elif student.current_mode == 'hnd_ft' and student.state in ( 100 100 CLEARED, RETURNING): 101 req_payments = (' ict_entre', 'union')102 req_payments_titles = 'Student Union and ICT'101 req_payments = ('union',) 102 req_payments_titles = 'Student Union' 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
r17635 r17703 115 115 del spc['admission_checking'] 116 116 del spc['clearance'] 117 if student.current_mode == 'hnd_ft': 118 del spc['ict_entre'] 117 119 return spc 118 120
Note: See TracChangeset for help on using the changeset viewer.