Last change
on this file since 11152 was
3785,
checked in by Henrik Bettermann, 16 years ago
|
more FUT Minna customizations
|
File size:
1.3 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,student_record |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id: getInterswitchParams.py 3625 2008-08-17 07:47:00Z henrik $ |
---|
11 | |
---|
12 | |
---|
13 | test = "" |
---|
14 | d = {} |
---|
15 | d['payment_possible'] = True |
---|
16 | d['pay_ship_to'] = "Federal College Oyo" |
---|
17 | |
---|
18 | d['site_id'] = '83' |
---|
19 | d['site_name'] = "fceoyo.waeup.org" |
---|
20 | d['currency_id'] = '566' |
---|
21 | d['type'] = 'online' |
---|
22 | d['status'] = 'started' |
---|
23 | d['surcharge'] = '150' |
---|
24 | if test == 'simulate': |
---|
25 | d['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),payment_id) #do not use simulate_callback |
---|
26 | elif test == 'test': |
---|
27 | d['action'] = "https://webpay.interswitchng.com/test_paydirect/webpay/pay.aspx" |
---|
28 | else: |
---|
29 | d['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx" |
---|
30 | if paytype in ("HOM",): |
---|
31 | d['callback_function'] = 'interswitch_cb' |
---|
32 | d['pay_item_id'] = '8300' |
---|
33 | d['type_description'] = 'Hostel Maintenance Fee' |
---|
34 | d['pay_item_name'] = "FCE Oyo %(type_description)s" % d |
---|
35 | if student_record.mode.endswith('_sw'): |
---|
36 | d['amount'] = '2500' |
---|
37 | else: |
---|
38 | d['amount'] = '4000' |
---|
39 | d['category'] = 'hostel_maintenance' |
---|
40 | d['item'] = paytype |
---|
41 | #d['payment_params'] = 'switch_college_split' |
---|
42 | d['payment_params'] = '0' |
---|
43 | |
---|
44 | return d |
---|
Note: See
TracBrowser for help on using the repository browser.