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

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

Implementation of a Late Registration Fee (FUTMinna only). This was more work and customization than expected. We urgently need a new consistent payment module.

File size: 7.7 KB
Line 
1## Script (Python) "pay_interswitch"
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'
52
53if student_record.mode in ('pg_ft'):
54    pay_item_id = "11703"
55elif student_record.review_state == 'cleared_and_validated' and student_record.level in ('100'):
56    pay_item_id = "11700"
57elif student_record.review_state == 'cleared_and_validated' and student_record.level in ('200'):
58    pay_item_id = "11701" 
59elif student_record.review_state == 'cleared_and_validated' and student_record.level in ('300'):
60    pay_item_id = "11702"   
61elif student_record.review_state == 'returning' and student_record.level in ('100','110'):
62    pay_item_id = "11701"
63elif student_record.review_state == 'returning' and student_record.level in ('200','210'):
64    pay_item_id = "11702"
65elif student_record.review_state == 'returning' and student_record.level in ('300','310'):
66    pay_item_id = "11703"
67elif student_record.review_state == 'returning' and student_record.level in ('400','410','500','510','600'):
68    pay_item_id = "11704"
69else:
70    pay_item_id = ""
71   
72info['bank'] = ''
73info['payment_possible'] = True
74info['type_description'] = fee_dict['description']
75info['pay_bill_to'] = student_record.name
76info['student_id'] = student_id
77info['student_name'] = student_record.name
78info['type'] = 'online'
79info['status'] = 'started'
80info['session_id'] = fee_dict['next_session_id']
81info['item'] = student_record.course
82info['category'] = 'schoolfee'
83info['student_email'] = student_record.email
84now = DateTime.DateTime()
85info['date'] = now
86info['pay_ship_to'] = "Federal University of Technology, Minna, Nigeria"
87timestamp = "%d" % int(now.timeTime()*1000)
88info['order_id'] = "%s%s" % (student_id[1:],timestamp)
89p_id = "p%s" % timestamp
90
91
92# students don't have to pay the Interswitch surcharge, FUT is paying for them
93info['lrf'] = fee_dict['lrf']
94info['fee'] = fee_dict['all']
95info['amount'] = amount = info['fee'] + info['lrf']
96total_amount = 100*int(amount)
97
98
99if student_id is None:
100    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
101
102if True:
103    info['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx"
104else:
105    info['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),p_id)
106
107
108if "payments" not in student.objectIds():
109    student.invokeFactory('PaymentsFolder','payments')
110    payments = getattr(student,'payments')
111    d = {}
112    d['Title'] = 'Payments'
113    payments.getContent().edit(mapping=d)
114    wftool.doActionFor(payments,'open')
115else:
116    payments = getattr(student,'payments')
117if request.has_key('epayment'):
118    return context.interswitch_form(info=info)
119
120
121payments.invokeFactory('Payment', p_id)
122payment = getattr(payments,p_id)
123wftool.doActionFor(payment,'open')
124d = {}
125d.update(info)
126payment.getContent().edit(mapping=d)
127
128
129info['callback_url'] = "%s/payments/%s/interswitch_cb?echo=%s" % (student.absolute_url(),
130                                                                  p_id,
131                                                                  p_id)
132
133logger.info('%(student_id)s initiated online school fee payment with order_id %(order_id)s and callback url %(callback_url)s' % info)
134payment_fields = (('product_id','site_id'),
135                  ('site_redirect_url','callback_url'),
136                  ('Currency','currency_id'),
137                  ('cust_id','student_id'),
138                  ('cust_id_desc','type_description'),
139                  ('cust_name','student_name'),
140                  ('txn_ref','order_id'),
141                  ('Amount','amount'),
142                  )
143args = {}
144for arg,field in payment_fields:
145    args[arg] = info[field]
146
147bt_amount = 1500
148interswitch_amount = 300
149#fut_split = 0000 #not appicable
150fut_amount = amount - bt_amount - interswitch_amount
151
152xmldict = {}
153xmldict['detail_ref'] = args['txn_ref']
154xmldict['department'] = student_record.department
155xmldict['level'] = student_record.level
156xmldict['faculty'] = student_record.faculty
157xmldict['fut_amount'] = "%d" % int(100*fut_amount)
158xmldict['bt_amount'] = "%d" % int(100*bt_amount)
159#xmldict['fut_split'] = "%d" % int(100*fut_split)
160
161#students at all levels pay their school fees to different banks
162
163if student_record.mode == 'jm_ft':
164    xmldict['fut_acct'] = "000000000000"
165    xmldict['bank_id'] = '0'
166elif student_record.mode in ('pg_ft'):
167    xmldict['fut_acct'] = "2522040000134"
168    xmldict['bank_id'] = '8'
169elif student_record.review_state == 'cleared_and_validated' and student_record.level in ('100'):
170    xmldict['fut_acct'] = "0030001000017110"
171    xmldict['bank_id'] = '89'
172elif student_record.review_state == 'cleared_and_validated' and student_record.level in ('200'):
173    xmldict['fut_acct'] = "0591201005146"
174    xmldict['bank_id'] = '101'
175elif student_record.review_state == 'cleared_and_validated' and student_record.level in ('300'):
176    xmldict['fut_acct'] = "6013803345"
177    xmldict['bank_id'] = '117'
178elif student_record.review_state == 'returning' and student_record.level in ('100','110'):   
179    xmldict['fut_acct'] = "0591201005146"
180    xmldict['bank_id'] = '101'
181elif student_record.level in ('200','210'):
182    xmldict['fut_acct'] = "6013803345"
183    xmldict['bank_id'] = '117' 
184elif student_record.level in ('300','310'):
185    xmldict['fut_acct'] = "2522040000134"
186    xmldict['bank_id'] = '8' 
187#Change of acct from UBA to GTBank
188elif student_record.level in ('400','410','500','510','600'):
189    xmldict['fut_acct'] = "3713516838111"
190    xmldict['bank_id'] = '10'   
191#remedial students
192#elif student_record.level in ('000'):
193    #xmldict['fut_acct'] = "00000000000"
194    #xmldict['bank_id'] = '0'     
195else:
196    xmldict['fut_acct'] = "0000000000000"
197    xmldict['bank_id'] = '0'
198
199
200xmltext = """<payment_item_detail>
201<item_details detail_ref="%(detail_ref)s" college="FUT Minna" department="%(department)s" faculty="%(faculty)s">
202<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" />
203<item_detail item_id="2" item_name="BT" item_amt="%(bt_amount)s" bank_id="89" acct_num="0061001000021095" />
204</item_details>
205</payment_item_detail>""" % xmldict
206
207info['xml_data'] = """<input type="hidden" name="xml_data" value='%s'  />""" % xmltext
208
209args['Amount'] = "%d" % (total_amount)
210args['site_name'] = "futminna.waeup.org"
211args['cust_name_desc'] = "Student Name"
212args['pay_item_id'] = pay_item_id
213args['pay_item_name'] = "FUT Minna Tuition Payments"
214args['payment_params'] = 'college_split'
215#args['xml_data'] = ''
216#args['xml_data'] = xmltext   # info['xml_data']can be used instead
217info['args'] = args
218
219return context.goto_interswitch_form(info=info)
220
Note: See TracBrowser for help on using the repository browser.