Changeset 6964 for WAeUP_SRP/trunk/skins/waeup_futminna
- Timestamp:
- 29 Oct 2011, 12:30:52 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_futminna/pay_interswitch_accept.py
r6955 r6964 69 69 70 70 info['surcharge'] = 300 71 info['acceptance_fee'] = 20000 71 72 #students in faculties 'EET','ICT' and Department 'ARC' pay 25000 while others pay 20000 73 if student_record.faculty in ['EET','ICT'] or student_record.department in ['ARC']: 74 info['acceptance_fee'] = 25000 75 else: 76 info['acceptance_fee'] = 20000 77 72 78 info['amount'] = amount = info['acceptance_fee'] 73 total_amount = 100*(in t(amount)+ info['surcharge'])79 total_amount = 100*(info['amount'] + info['surcharge']) 74 80 75 81 if student_id is None: … … 80 86 81 87 info['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx" 82 info['action'] = "https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx"88 #info['action'] = "https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx" 83 89 84 90 if "payments" not in student.objectIds():
Note: See TracChangeset for help on using the changeset viewer.