Changeset 8679 for WAeUP_SRP/trunk/skins/waeup_uniben/pay_etranzact.py
- Timestamp:
- 11 Jun 2012, 11:28:03 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_uniben/pay_etranzact.py
r8318 r8679 54 54 amount = info['amount'] = fee_dict['returning'] 55 55 56 if new and int(student_record.session) < 11: 57 amount_int = int(amount) 58 amount_int += 5000 59 amount = info['amount'] = '%d' % (amount_int) 60 if returning and int(student_record.session) < 10: 56 late_registration = False 57 if new and int(student_record.session) < 11 and student_record.mode.startswith('ug'): 58 late_registration = True 59 if returning and int(student_record.session) < 10 and student_record.mode.startswith('ug'): 60 late_registration = True 61 if new and int(student_record.session) < 10 and student_record.mode.startswith('pg'): 62 late_registration = True 63 if returning and int(student_record.session) < 9 and student_record.mode.startswith('pg'): 64 late_registration = True 65 if late_registration: 61 66 amount_int = int(amount) 62 67 amount_int += 5000
Note: See TracChangeset for help on using the changeset viewer.