source: WAeUP_SRP/trunk/skins/waeup_futminna/getInterswitchParams.py @ 5628

Last change on this file since 5628 was 5628, checked in by Henrik Bettermann, 14 years ago

Second step of implementation of second hostel fee.

accommodation_edit_form has to be changed too.

File size: 2.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,order_id,student_record
8##title=
9##
10# $Id: getInterswitchParams.py 3625 2008-08-17 07:47:00Z henrik $
11       
12       
13test = ""
14d = {}
15d['payment_possible'] = True
16d['pay_ship_to'] = "Federal University of Technology Minna"
17
18d['site_id'] = '117'
19d['site_name'] = "futminna.waeup.org"
20d['currency_id'] = '566'
21d['type'] = 'online'
22d['status'] = 'started'
23d['surcharge'] = '300'
24if test == 'simulate':
25    d['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),payment_id) #do not use simulate_callback
26elif test == 'test':
27    d['action'] = "https://webpay.interswitchng.com/test_paydirect/webpay/pay.aspx"
28else:
29    d['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx"
30
31
32if paytype in ('HOM','HOMH',):
33    d['callback_function'] = 'interswitch_cb'
34    d['pay_item_id'] = '11701'
35    d['type_description'] = 'Hostel Maintenance Fee'
36    d['pay_item_name'] = "FUT Minna %(type_description)s" % d
37    if paytype == 'HOMH':
38        d['amount'] = 15000
39    elif student_record.level  in ('100','200','300','400','500') and student_record.faculty in ('EET','SET','AAT','ICT','EMT'):
40        d['amount'] = 9000
41    else:
42        d['amount'] = 7000
43    d['category'] = 'hostel_maintenance'
44    d['item'] = paytype
45   
46    #Adding xml split data
47    d['payment_params'] = 'college_split'
48    xmldict = {}
49    xmldict['detail_ref'] = order_id
50    xmldict['department'] = student_record.department
51    xmldict['faculty'] = student_record.faculty
52    xmldict['fut_amount'] = "%d" % int(100*d['amount'])
53   
54    xmltext = """<payment_item_detail>
55    <item_details detail_ref="%(detail_ref)s" college="Federal University of Technology Minna" department="%(department)s" faculty="%(faculty)s">
56    <item_detail item_id="1" item_name="Hostel Maintenance Fee" item_amt="%(fut_amount)s" bank_id="101" acct_num="0591301005175" />
57    </item_details>
58    </payment_item_detail>""" % xmldict
59   
60    d['xml_data'] = """<input type="hidden" name="xml_data" value='%s'  />""" % xmltext
61   
62return d
Note: See TracBrowser for help on using the repository browser.