Changeset 8679
- Timestamp:
- 11 Jun 2012, 11:28:03 (12 years ago)
- Location:
- WAeUP_SRP/trunk/skins/waeup_uniben
- Files:
-
- 2 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 -
WAeUP_SRP/trunk/skins/waeup_uniben/pay_interswitch.py
r8456 r8679 56 56 amount = info['amount'] = fee_dict['returning'] 57 57 58 if new and int(student_record.session) < 11: 59 amount_int = int(amount) 60 amount_int += 5000 61 amount = info['amount'] = '%d' % (amount_int) 62 if returning and int(student_record.session) < 10: 58 late_registration = False 59 if new and int(student_record.session) < 11 and student_record.mode.startswith('ug'): 60 late_registration = True 61 if returning and int(student_record.session) < 10 and student_record.mode.startswith('ug'): 62 late_registration = True 63 if new and int(student_record.session) < 10 and student_record.mode.startswith('pg'): 64 late_registration = True 65 if returning and int(student_record.session) < 9 and student_record.mode.startswith('pg'): 66 late_registration = True 67 if late_registration: 63 68 amount_int = int(amount) 64 69 amount_int += 5000
Note: See TracChangeset for help on using the changeset viewer.