## Script (Python) "getInterswitchParams" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters=paytype,student,payment_id,student_record ##title= ## # $Id: getInterswitchParams.py 3625 2008-08-17 07:47:00Z henrik $ test = "" d = {} d['payment_possible'] = True d['pay_ship_to'] = "Federal University of Technology Minna" d['site_id'] = '117' d['site_name'] = "futminna.waeup.org" d['currency_id'] = '566' d['type'] = 'online' d['status'] = 'started' d['surcharge'] = '300' if test == 'simulate': d['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),payment_id) #do not use simulate_callback elif test == 'test': d['action'] = "https://webpay.interswitchng.com/test_paydirect/webpay/pay.aspx" else: d['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx" if paytype in ("HOM",): d['callback_function'] = 'interswitch_cb' d['pay_item_id'] = '11701' d['type_description'] = 'Hostel Maintenance Fee' d['pay_item_name'] = "FUT Minna %(type_description)s" % d if student_record.level in ('200','300','400','500') and student_record.faculty in ('EET','SET','AAT'): d['amount'] = '9000' else: d['amount'] = '7000' d['category'] = 'hostel_maintenance' d['item'] = paytype #d['payment_params'] = 'college_split' d['payment_params'] = '0' return d