Changeset 13420
- Timestamp:
- 9 Nov 2015, 14:11:21 (9 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/etranzact/browser.py
r13401 r13420 311 311 def update(self): 312 312 super(EtranzactEnterPinPageStudent, self).update() 313 if self.context.p_category != 'schoolfee':313 if not self.context.p_category.startswith('schoolfee'): 314 314 return 315 315 student = self.context.student … … 320 320 for ticket in student['payments'].values(): 321 321 if ticket.p_state == 'paid' and \ 322 ticket.p_category == 'clearance':322 ticket.p_category.startswith('clearance'): 323 323 return 324 324 self.flash(_('Please pay acceptance fee first.'), type="danger") -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r13413 r13420 48 48 49 49 SELECTABLE_PAYMENT_CATEGORIES = { 50 'schoolfee': 'School Fee without additional fees',50 #'schoolfee': 'School Fee without additional fees', 51 51 #'schoolfee_1': 'School Fee 1st instalment', 52 52 #'schoolfee_2': 'School Fee 2nd instalment', 53 53 'schoolfee_incl': 'School Fee + Students\' Union Dues + Welfare Assurance Fee', 54 'clearance': 'Acceptance Fee without additional fees',54 #'clearance': 'Acceptance Fee without additional fees', 55 55 'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee', 56 56 'hostel_maintenance': 'Hostel Maintenance Fee', … … 60 60 'transcript': 'Transcript Fee', 61 61 'late_registration': 'Late Course Registration Fee', 62 'welfare': 'Student Welfare Assurance Fee',63 'union': 'Students\' Union Dues',64 'lapel': 'Lapel/File Fee',65 'matric_gown': 'Matriculation Gown Fee',62 #'welfare': 'Student Welfare Assurance Fee', 63 #'union': 'Students\' Union Dues', 64 #'lapel': 'Lapel/File Fee', 65 #'matric_gown': 'Matriculation Gown Fee', 66 66 'concessional': 'Concessional Fee', 67 67 }
Note: See TracChangeset for help on using the changeset viewer.