source: WAeUP_SRP/trunk/skins/waeup_futminna/pay_interswitch.py @ 3960

Last change on this file since 3960 was 3843, checked in by Henrik Bettermann, 16 years ago
  • pay_interswitch.py: add bank account for futminna spillovers
  • minor changes
File size: 6.0 KB
Line 
1## Script (Python) "pay_online"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=
8##title=
9##
10# $Id: pay_interswitch.py 2619 2007-11-10 17:39:36Z henrik $
11"""
12pay online
13"""
14from urllib import urlencode
15import logging
16logger = logging.getLogger('Skins.pay_interswitch')
17import DateTime
18
19if context.portal_membership.isAnonymousUser():
20    return None
21
22try:
23    from Products.zdb import set_trace
24except:
25    def set_trace():
26        pass
27request = context.REQUEST
28wftool = context.portal_workflow
29students = context.portal_url.getPortalObject().campus.students
30
31
32student_id = context.getStudentId()
33student = getattr(students,student_id)
34
35student_record = context.students_catalog.getRecordByKey(student_id)
36#amount,description = context.getSchoolFee(student_record.faculty,student_record.session,student_record.course)
37info = {}
38info['student'] = student_record
39info['payment_possible'] = False
40info['amount'] = '0'
41info['bank'] = ''
42info['type_description'] = ''
43info['pay_bill_to'] = ''
44fee_dict = context.getSchoolFee(student_record)
45fulltime = student_record.mode.endswith('_ft')
46
47if not fee_dict:
48    return context.interswitch_form(info=info)
49
50info['site_id'] = '117'
51info['currency_id'] = '566'
52pay_item_id = "11700"
53
54info['bank'] = ''
55info['payment_possible'] = True
56info['type_description'] = fee_dict['description']
57info['pay_bill_to'] = student_record.name
58info['student_id'] = student_id
59info['student_name'] = student_record.name
60info['type'] = 'online'
61info['status'] = 'started'
62info['session_id'] = fee_dict['next_session_id']
63info['item'] = student_record.course
64info['category'] = 'schoolfee'
65info['student_email'] = student_record.email
66now = DateTime.DateTime()
67info['date'] = now
68info['pay_ship_to'] = "Federal University of Technology, Minna, Nigeria"
69timestamp = "%d" % int(now.timeTime()*1000)
70info['order_id'] = "%s%s" % (student_id[1:],timestamp)
71p_id = "p%s" % timestamp
72
73
74info['surcharge'] = interswitch_amount = '300'
75info['amount'] = amount = fee_dict['all']
76total_amount = 100*int(amount) + 100*int(interswitch_amount)
77
78
79if student_id is None:
80    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
81
82if True:
83    info['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx"
84else:
85    info['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),p_id)
86
87
88if "payments" not in student.objectIds():
89    student.invokeFactory('PaymentsFolder','payments')
90    payments = getattr(student,'payments')
91    d = {}
92    d['Title'] = 'Payments'
93    payments.getContent().edit(mapping=d)
94    wftool.doActionFor(payments,'open')
95else:
96    payments = getattr(student,'payments')
97if request.has_key('epayment'):
98    return context.interswitch_form(info=info)
99
100
101payments.invokeFactory('Payment', p_id)
102payment = getattr(payments,p_id)
103wftool.doActionFor(payment,'open')
104d = {}
105d.update(info)
106payment.getContent().edit(mapping=d)
107
108
109info['callback_url'] = "%s/payments/%s/interswitch_cb?echo=%s" % (student.absolute_url(),
110                                                                  p_id,
111                                                                  p_id)
112
113logger.info('%(student_id)s initiated online school fee payment with order_id %(order_id)s and callback url %(callback_url)s' % info)
114payment_fields = (('product_id','site_id'),
115                  ('site_redirect_url','callback_url'),
116                  ('Currency','currency_id'),
117                  ('cust_id','student_id'),
118                  ('cust_id_desc','type_description'),
119                  ('cust_name','student_name'),
120                  ('txn_ref','order_id'),
121                  ('Amount','amount'),
122                  )
123args = {}
124for arg,field in payment_fields:
125    args[arg] = info[field]
126
127bt_amount = 1500
128#fut_split = 0000 #not appicable
129fut_amount = amount - bt_amount
130
131xmldict = {}
132xmldict['detail_ref'] = args['txn_ref']
133xmldict['department'] = student_record.department
134xmldict['level'] = student_record.level
135xmldict['faculty'] = student_record.faculty
136xmldict['fut_amount'] = "%d" % int(100*fut_amount)
137xmldict['bt_amount'] = "%d" % int(100*bt_amount)
138#xmldict['fut_split'] = "%d" % int(100*fut_split)
139
140#students at all levels pay their school fees to different banks
141if student_record.review_state == 'cleared_and_validated' and student_record.level in ('100'):
142    xmldict['fut_acct'] = "0510031193719"
143    xmldict['bank_id'] = '75'
144elif student_record.review_state == 'returning' and student_record.level in ('100'):   
145    xmldict['fut_acct'] = "0030001000017110"
146    xmldict['bank_id'] = '89'
147elif student_record.level in ('200'):
148    xmldict['fut_acct'] = "2522040000134"
149    xmldict['bank_id'] = '8' 
150elif student_record.level in ('300','400'):
151    xmldict['fut_acct'] = "0591201005146"
152    xmldict['bank_id'] = '101' 
153elif student_record.level in ('500'):
154    xmldict['fut_acct'] = "0030001000017110"
155    xmldict['bank_id'] = '89'   
156#remedial students
157elif student_record.level in ('000'):
158    xmldict['fut_acct'] = "6013803183"
159    xmldict['bank_id'] = '117'           
160else:
161    xmldict['fut_acct'] = "0000000000000"
162    xmldict['bank_id'] = '0'
163
164
165xmltext = """<payment_item_detail>
166<item_details detail_ref="%(detail_ref)s" college="FUT Minna" department="%(department)s" faculty="%(faculty)s">
167<item_detail item_id="1" item_name="FUT Minna School Fee" item_amt="%(fut_amount)s" bank_id="%(bank_id)s" acct_num="%(fut_acct)s" />
168<item_detail item_id="2" item_name="BT" item_amt="%(bt_amount)s" bank_id="89" acct_num="0061001000021095" />
169</item_details>
170</payment_item_detail>""" % xmldict
171
172info['xml_data'] = """<input type="hidden" name="xml_data" value='%s'  />""" % xmltext
173
174args['Amount'] = "%d" % (total_amount)
175args['site_name'] = "futminna.waeup.org"
176args['cust_name_desc'] = "Student Name"
177args['pay_item_id'] = pay_item_id
178args['pay_item_name'] = "FUT Minna Tuition Payments"
179args['payment_params'] = 'college_split'
180#args['xml_data'] = ''
181#args['xml_data'] = xmltext   # info['xml_data']can be used instead
182info['args'] = args
183
184return context.goto_interswitch_form(info=info)
185
Note: See TracBrowser for help on using the repository browser.