Changeset 8318 for WAeUP_SRP/trunk
- Timestamp:
- 30 Apr 2012, 15:18:10 (13 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
r8296 r8318 54 54 amount = info['amount'] = fee_dict['returning'] 55 55 56 if int(student_record.session) < 11:56 if new and int(student_record.session) < 11: 57 57 amount_int = int(amount) 58 info['amount'] = '%d' % (amount_int + 5000) 58 amount_int += 5000 59 amount = info['amount'] = '%d' % (amount_int) 60 if returning and int(student_record.session) < 10: 61 amount_int = int(amount) 62 amount_int += 5000 63 amount = info['amount'] = '%d' % (amount_int) 59 64 60 65 info['surcharge'] = '0' # Uniben doesn't show the surcharge on the slip -
WAeUP_SRP/trunk/skins/waeup_uniben/pay_interswitch.py
r8316 r8318 56 56 amount = info['amount'] = fee_dict['returning'] 57 57 58 if int(student_record.session) < 11: 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: 59 63 amount_int = int(amount) 60 64 amount_int += 5000
Note: See TracChangeset for help on using the changeset viewer.