source: WAeUP_SRP/trunk/skins/waeup_epayment/pay_interswitch.py @ 4799

Last change on this file since 4799 was 4799, checked in by Henrik Bettermann, 15 years ago

enable college_split for Uniben (tested online with Jason)

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