Changeset 8296 for WAeUP_SRP/trunk/skins
- Timestamp:
- 27 Apr 2012, 10:54:30 (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
r8028 r8296 53 53 elif returning: 54 54 amount = info['amount'] = fee_dict['returning'] 55 56 if int(student_record.session) < 11: 57 amount_int = int(amount) 58 info['amount'] = '%d' % (amount_int + 5000) 59 55 60 info['surcharge'] = '0' # Uniben doesn't show the surcharge on the slip 56 61 info['payment_possible'] = True -
WAeUP_SRP/trunk/skins/waeup_uniben/pay_interswitch.py
r8238 r8296 43 43 info['pay_bill_to'] = '' 44 44 fee_dict = context.getSchoolFee(student_record) 45 45 46 fulltime = student_record.mode.endswith('_ft') 46 47 new = student_record.review_state == 'cleared_and_validated' … … 54 55 elif returning: 55 56 amount = info['amount'] = fee_dict['returning'] 57 58 if int(student_record.session) < 11: 59 amount_int = int(amount) 60 amount_int += 5000 61 amount = info['amount'] = '%d' % (amount_int) 62 56 63 if fulltime: 57 64 pay_item_id = "5700"
Note: See TracChangeset for help on using the changeset viewer.