source: WAeUP_SRP/uniben/waeup_custom/pay_interswitch.py @ 2867

Last change on this file since 2867 was 2860, checked in by joachim, 17 years ago

addition for new payment fields

File size: 5.7 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 2664 2007-11-15 14:35:05Z 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
35sbrain = context.students_catalog(id=student_id)[0]
36#amount,description = context.getSchoolFee(sbrain.faculty,sbrain.session,sbrain.course)
37info = {}
38info['student'] = sbrain
39info['payment_possible'] = False
40info['amount'] = '0'
41info['bank'] = ''
42info['type_description'] = ''
43info['pay_bill_to'] = ''
44fee_dict = context.getSchoolFee(sbrain)
45fulltime = sbrain.mode.endswith('_ft')
46new = sbrain.review_state == 'cleared_and_validated'
47returning = sbrain.review_state == 'returning'
48if not fee_dict or (not new and fulltime) or not (new or returning):
49    return context.interswitch_form(info=info)
50info['site_id'] = '61'
51info['currency_id'] = '566'
52if new:
53    amount = info['amount'] = fee_dict['new']
54elif returning:
55    amount = info['amount'] = fee_dict['returning']
56if fulltime:
57    pay_item_id = "6100"
58    info['type_code'] = sbrain.faculty   #type_code is redundant and will be removed soon
59    info['bank'] = ''
60else:
61    pay_item_id = "6101"
62    info['type_code'] = sbrain.course  #type_code is redundant and will be removed soon
63    info['bank'] = ''
64info['payment_possible'] = True
65info['type_description'] = fee_dict['description']
66info['pay_bill_to'] = sbrain.name
67info['pay_ship_to'] = "University of Benin"
68info['student_id'] = student_id
69info['student_name'] = sbrain.name
70info['student_email'] = sbrain.email
71info['type'] = 'online'
72info['status'] = 'started'
73info['target'] = sbrain.course
74info['subject'] = 'schoolfee'
75now = DateTime.DateTime()
76info['date'] = now
77timestamp = "%d" % int(now.timeTime()*1000)
78info['order_id'] = "%s%s" % (student_id[1:],timestamp)
79p_id = "p%s" % timestamp
80
81if student_id is None:
82    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
83
84if True or context.portal_url().find('uniben-demo.waeup.org') >-1 or\
85   context.portal_url().find('uniben.waeup.org') >-1:
86    info['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx"
87else:
88    #pass
89    #return None
90    info['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),p_id)
91
92
93if "payments" not in student.objectIds():
94    student.invokeFactory('PaymentsFolder','payments')
95    payments = getattr(student,'payments')
96    d = {}
97    d['Title'] = 'Payments'
98    payments.getContent().edit(mapping=d)
99    wftool.doActionFor(payments,'open')
100else:
101    payments = getattr(student,'payments')
102if request.has_key('epayment'):
103    return context.interswitch_form(info=info)
104
105
106payments.invokeFactory('Payment', p_id)
107payment = getattr(payments,p_id)
108wftool.doActionFor(payment,'open')
109d = {}
110d.update(info)
111#from Products.zdb import set_trace;set_trace()
112payment.getContent().edit(mapping=d)
113#wftool.doActionFor(payment,'close')
114#wftool.doActionFor(student,'pay_school_fee')
115info['callback_url'] = "%s/payments/%s/interswitch_cb?echo=%s" % (student.absolute_url(),
116                                                                  p_id,
117                                                                  p_id)
118
119logger.info('%(student_id)s initiated online school fee payment with order_id %(order_id)s and callback url %(callback_url)s' % info)
120payment_fields = (('product_id','site_id'),
121                  ('site_redirect_url','callback_url'),
122                  ('Currency','currency_id'),
123                  ('cust_id','student_id'),
124                  ('cust_id_desc','type_description'),
125                  ('cust_name','student_name'),
126                  ('txn_ref','order_id'),
127                  ('Amount','amount'),
128                  )
129args = {}
130for arg,field in payment_fields:
131    args[arg] = info[field]
132itotal = int(amount)*100
133wema_amount = 10000
134provider_amount = 35000
135interswitch_amount = 15000
136#uniben_amount = itotal - wema_amount - provider_amount - interswitch_amount
137uniben_amount = itotal - interswitch_amount
138xmldict = {}
139xmldict['detail_ref'] = args['txn_ref']
140xmldict['department'] = sbrain.department
141xmldict['faculty'] = sbrain.faculty
142#xmldict['wema_amt'] = "%d" % wema_amount
143#xmldict['provider_amt'] = "%d" % provider_amount
144xmldict['uniben_amt'] = "%d" % uniben_amount
145##<item_detail item_id="2" item_name="WEMA" item_amt="%(wema_amt)s" bank_id="16" acct_num="48398023902" />
146##<item_detail item_id="3" item_name="Portal Provider" item_amt="%(provider_amt)s" bank_id="47" acct_num="0980938209483" />
147xmltext = """
148<payment_item_detail>
149<item_details detail_ref="%(detail_ref)s" college="UNIBEN" department="%(department)s"
150faculty="%(faculty)s">
151<item_detail item_id="1" item_name="UNIBEN" item_amt="%(uniben_amt)s" bank_id="16" acct_num="384950902390" />
152</item_details>
153</payment_item_detail>
154""" % xmldict
155#total = int(xmldict['uniben_amt'])+int(xmldict['wema_amt'])+int(xmldict['provider_amt'])
156total = int(xmldict['uniben_amt'])
157args['Amount'] = "%d" % (total + 15000)
158args['site_name'] = "uniben.waeup.org"
159args['cust_name_desc'] = "Student Name"
160args['pay_item_id'] = pay_item_id
161args['pay_item_name'] = "UNIBEN Tuition Payments"
162args['payment_params'] = 'switch_college_split'
163#args['xml_data'] = xmltext % info
164args['xml_data'] = ''
165info['args'] = args
166return context.goto_interswitch_form(info=info)
Note: See TracBrowser for help on using the repository browser.