- Timestamp:
- 18 Aug 2016, 06:01:42 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/etranzact/browser.py
r14085 r14087 106 106 'SCHOOL-FEE-PT-BALANCE': ('schoolfee','schoolfee_incl', 107 107 'schoolfee_1','schoolfee_2'), 108 'SCHOOL-FEE-FP-NEW': ('schoolfee',), 108 109 109 110 'ACCEPTANCE-FEE': ('clearance',), 110 111 'ACCEPTANCE-FEE-PLUS': ('clearance_incl',), 111 112 'ACCEPTANCE-FEE-PG': ('clearance',), 112 113 113 'ACCEPTANCE-FEE-PT': ('clearance',), 114 114 'ACCEPTANCE-FEE-PT-PLUS': ('clearance_incl',), 115 115 'ACCEPTANCE-FEE-PT-PG': ('clearance',), 116 'ACCEPTANCE-FEE-FP': ('clearance',), 116 117 117 118 'APPLICATION-FEE': ('application',), 118 119 'APPLICATION-FEE-PT': ('application',), 120 'APPLICATION-FEE-FP': ('application',), 119 121 120 122 'LATE-REGISTRATION': ('late_registration',), … … 200 202 and student.current_mode.endswith('_pt'): 201 203 self.output = ERROR_PART1 + 'Part-time student' + ERROR_PART2 204 return 205 if student and '-FP' in PAYMENT_TYPE and student.current_mode != 'found': 206 self.output = ERROR_PART1 + 'Not a foundation programme student' + ERROR_PART2 207 return 208 if student and '-FP' not in PAYMENT_TYPE and student.current_mode == 'found': 209 self.output = ERROR_PART1 + 'Foundation programme student' + ERROR_PART2 202 210 return 203 211 if '-BALANCE' in PAYMENT_TYPE and results[0].p_item != 'Balance':
Note: See TracChangeset for help on using the changeset viewer.