Changeset 8318 for WAeUP_SRP/trunk/skins/waeup_uniben/pay_etranzact.py
- Timestamp:
- 30 Apr 2012, 15:18:10 (13 years ago)
- File:
-
- 1 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
Note: See TracChangeset for help on using the changeset viewer.