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 | """
|
---|
12 | pay online
|
---|
13 | """
|
---|
14 | from urllib import urlencode
|
---|
15 | import logging
|
---|
16 | logger = logging.getLogger('Skins.pay_interswitch')
|
---|
17 | import DateTime
|
---|
18 |
|
---|
19 | if context.portal_membership.isAnonymousUser():
|
---|
20 | return None
|
---|
21 |
|
---|
22 | try:
|
---|
23 | from Products.zdb import set_trace
|
---|
24 | except:
|
---|
25 | def set_trace():
|
---|
26 | pass
|
---|
27 | request = context.REQUEST
|
---|
28 | wftool = context.portal_workflow
|
---|
29 | students = context.portal_url.getPortalObject().campus.students
|
---|
30 |
|
---|
31 |
|
---|
32 | student_id = context.getStudentId()
|
---|
33 | student = getattr(students,student_id)
|
---|
34 |
|
---|
35 | student_record = context.students_catalog.getRecordByKey(student_id)
|
---|
36 | #amount,description = context.getSchoolFee(student_record.faculty,student_record.session,student_record.course)
|
---|
37 | info = {}
|
---|
38 | info['student'] = student_record
|
---|
39 | info['payment_possible'] = False
|
---|
40 | info['amount'] = '0'
|
---|
41 | info['bank'] = ''
|
---|
42 | info['type_description'] = ''
|
---|
43 | info['pay_bill_to'] = ''
|
---|
44 | fee_dict = context.getSchoolFee(student_record)
|
---|
45 | fulltime = student_record.mode.endswith('_ft')
|
---|
46 | new = student_record.review_state == 'cleared_and_validated'
|
---|
47 | returning = student_record.review_state == 'returning'
|
---|
48 | if not fee_dict or (not new and fulltime) or not (new or returning):
|
---|
49 | return context.interswitch_form(info=info)
|
---|
50 | info['site_id'] = '57'
|
---|
51 | info['currency_id'] = '566'
|
---|
52 | if new:
|
---|
53 | amount = info['amount'] = fee_dict['new']
|
---|
54 | elif returning:
|
---|
55 | amount = info['amount'] = fee_dict['returning']
|
---|
56 | if fulltime:
|
---|
57 | pay_item_id = "5700"
|
---|
58 | #info['type_code'] = student_record.faculty #type_code is redundant and will be removed soon
|
---|
59 | info['bank'] = ''
|
---|
60 | else:
|
---|
61 | pay_item_id = "5701"
|
---|
62 | #info['type_code'] = student_record.course #type_code is redundant and will be removed soon
|
---|
63 | info['bank'] = ''
|
---|
64 | info['surcharge'] = '0' # Uniben doesn't show the surcharge on the slip
|
---|
65 | info['payment_possible'] = True
|
---|
66 | info['type_description'] = fee_dict['description']
|
---|
67 | info['pay_bill_to'] = student_record.name
|
---|
68 | info['pay_ship_to'] = "University of Benin"
|
---|
69 | info['student_id'] = student_id
|
---|
70 | info['student_name'] = student_record.name
|
---|
71 | info['student_email'] = student_record.email
|
---|
72 | #info['session_id'] = student_record.session # this holds only for new students und must be replaced when also previous session students will pay online !!!!!!
|
---|
73 | info['session_id'] = fee_dict['next_session_id']
|
---|
74 | info['type'] = 'online'
|
---|
75 | info['status'] = 'started'
|
---|
76 | info['item'] = student_record.course
|
---|
77 | info['category'] = 'schoolfee'
|
---|
78 | now = DateTime.DateTime()
|
---|
79 | info['date'] = now
|
---|
80 | timestamp = "%d" % int(now.timeTime()*1000)
|
---|
81 | info['order_id'] = "%s%s" % (student_id[1:],timestamp)
|
---|
82 | p_id = "p%s" % timestamp
|
---|
83 |
|
---|
84 | if student_id is None:
|
---|
85 | return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
|
---|
86 |
|
---|
87 | if True or context.portal_url().find('uniben-demo.waeup.org') >-1 or\
|
---|
88 | context.portal_url().find('uniben.waeup.org') >-1:
|
---|
89 | #info['action'] = "https://webpay.interswitchng.com/test_paydirect/webpay/pay.aspx"
|
---|
90 | info['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx"
|
---|
91 | else:
|
---|
92 | info['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),p_id)
|
---|
93 |
|
---|
94 |
|
---|
95 | if "payments" not in student.objectIds():
|
---|
96 | student.invokeFactory('PaymentsFolder','payments')
|
---|
97 | payments = getattr(student,'payments')
|
---|
98 | d = {}
|
---|
99 | d['Title'] = 'Payments'
|
---|
100 | payments.getContent().edit(mapping=d)
|
---|
101 | wftool.doActionFor(payments,'open')
|
---|
102 | else:
|
---|
103 | payments = getattr(student,'payments')
|
---|
104 | if request.has_key('epayment'):
|
---|
105 | return context.interswitch_form(info=info)
|
---|
106 |
|
---|
107 |
|
---|
108 | payments.invokeFactory('Payment', p_id)
|
---|
109 | payment = getattr(payments,p_id)
|
---|
110 | wftool.doActionFor(payment,'open')
|
---|
111 | d = {}
|
---|
112 | d.update(info)
|
---|
113 | payment.getContent().edit(mapping=d)
|
---|
114 | info['callback_url'] = "%s/payments/%s/interswitch_cb?echo=%s" % (student.absolute_url(),
|
---|
115 | p_id,
|
---|
116 | p_id)
|
---|
117 |
|
---|
118 | logger.info('%(student_id)s initiated online school fee payment with order_id %(order_id)s and callback url %(callback_url)s' % info)
|
---|
119 | payment_fields = (('product_id','site_id'),
|
---|
120 | ('site_redirect_url','callback_url'),
|
---|
121 | ('Currency','currency_id'),
|
---|
122 | ('cust_id','student_id'),
|
---|
123 | ('cust_id_desc','type_description'),
|
---|
124 | ('cust_name','student_name'),
|
---|
125 | ('txn_ref','order_id'),
|
---|
126 | ('Amount','amount'),
|
---|
127 | )
|
---|
128 | args = {}
|
---|
129 | for arg,field in payment_fields:
|
---|
130 | args[arg] = info[field]
|
---|
131 | itotal = int(amount)*100
|
---|
132 | fbn_amount = 10000
|
---|
133 | bt_amount = 75000
|
---|
134 | interswitch_amount = 15000
|
---|
135 | uniben_amount = itotal - fbn_amount - bt_amount - interswitch_amount
|
---|
136 | xmldict = {}
|
---|
137 | xmldict['detail_ref'] = args['txn_ref']
|
---|
138 | xmldict['department'] = student_record.department
|
---|
139 | xmldict['faculty'] = student_record.faculty
|
---|
140 | xmldict['fbn_amt'] = "%d" % fbn_amount
|
---|
141 | xmldict['bt_amt'] = "%d" % bt_amount
|
---|
142 | xmldict['uniben_amt'] = "%d" % uniben_amount
|
---|
143 | #Full and Part-time students School Fees go into different Accounts
|
---|
144 | if student_record.mode.endswith('_ft'):
|
---|
145 | xmldict['uniben_acct'] = "6162030000198"
|
---|
146 | xmldict['bank_id'] = '8'
|
---|
147 | else:
|
---|
148 | xmldict['uniben_acct'] = "6162030000277"
|
---|
149 | xmldict['bank_id'] = '8'
|
---|
150 |
|
---|
151 | xmltext = """<payment_item_detail>
|
---|
152 | <item_details detail_ref="%(detail_ref)s" college="UNIBEN" department="%(department)s" faculty="%(faculty)s">
|
---|
153 | <item_detail item_id="1" item_name="UNIBEN School Fee" item_amt="%(uniben_amt)s" bank_id="%(bank_id)s" acct_num="%(uniben_acct)s" />
|
---|
154 | <item_detail item_id="2" item_name="BT" item_amt="%(bt_amt)s" bank_id="89" acct_num="0061001000021095" />
|
---|
155 | <item_detail item_id="3" item_name="FBN" item_amt="%(fbn_amt)s" bank_id="8" acct_num="6162030000286" />
|
---|
156 | </item_details>
|
---|
157 | </payment_item_detail>""" % xmldict
|
---|
158 |
|
---|
159 | info['xml_data'] = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext
|
---|
160 |
|
---|
161 | args['Amount'] = "%d" % (itotal)
|
---|
162 | args['site_name'] = "uniben.waeup.org"
|
---|
163 | args['cust_name_desc'] = "Student Name"
|
---|
164 | args['pay_item_id'] = pay_item_id
|
---|
165 | args['pay_item_name'] = "UNIBEN Tuition Payments"
|
---|
166 | args['payment_params'] = 'college_split'
|
---|
167 | #args['xml_data'] = ''
|
---|
168 | #args['xml_data'] = xmltext # info['xml_data']can be used instead
|
---|
169 | info['args'] = args
|
---|
170 |
|
---|
171 | return context.goto_interswitch_form(info=info) |
---|