source: WAeUP_SRP/fceokene/waeup_custom/getInterswitchParams.py @ 3622

Last change on this file since 3622 was 3622, checked in by Henrik Bettermann, 16 years ago

see FCEOkene ticket #131

  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1## Script (Python) "getInterswitchParams"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=paytype,student,payment_id
8##title=
9##
10# $Id: getInterswitchParams.py 3622 2008-08-10 11:47:59Z henrik $
11
12test = ""
13d = {}
14d['payment_possible'] = True
15d['pay_ship_to'] = "Federal College Okene"
16
17d['site_id'] = '83'
18d['site_name'] = "fceokene.waeup.org"
19d['currency_id'] = '566'
20d['type'] = 'online'
21d['status'] = 'started'
22d['surcharge'] = '150'
23if test == 'simulate':
24    d['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),payment_id) #do not use simulate_callback
25elif test == 'test':
26    d['action'] = "https://webpay.interswitchng.com/test_paydirect/webpay/pay.aspx"
27else:
28    d['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx"
29if paytype in ("HOM",):
30    d['callback_function'] = 'interswitch_cb'
31    d['pay_item_id'] = '8300'
32    d['type_description'] = 'Hostel Maintenance Fee'
33    d['pay_item_name'] = "FCE Okene %(type_description)s" % d
34    d['amount'] = '2500'
35    d['category'] = 'hostel_maintenance'
36    d['item'] = paytype
37    #d['payment_params'] = 'switch_college_split'
38    d['payment_params'] = '0'
39
40return d
Note: See TracBrowser for help on using the repository browser.