source: WAeUP_SRP/aaua/waeup_custom/pay_interswitch.py @ 3598

Last change on this file since 3598 was 3594, checked in by Henrik Bettermann, 16 years ago

use different bank accounts

File size: 5.2 KB
RevLine 
[2644]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
[2883]35student_record = context.students_catalog.getRecordByKey(student_id)
36#amount,description = context.getSchoolFee(student_record.faculty,student_record.session,student_record.course)
[2644]37info = {}
[2883]38info['student'] = student_record
[2644]39info['payment_possible'] = False
40info['amount'] = '0'
41info['bank'] = ''
42info['type_description'] = ''
43info['pay_bill_to'] = ''
[2883]44fee_dict = context.getSchoolFee(student_record)
45fulltime = student_record.mode.endswith('_ft')
[2644]46
47if not fee_dict:
48    return context.interswitch_form(info=info)
49
[3586]50info['site_id'] = '105'
[2644]51info['currency_id'] = '566'
[3586]52pay_item_id = "10500"
[2644]53
[2877]54#info['type_code'] = sbrain.course  #type_code is redundant and will be removed soon
[2644]55info['bank'] = ''
56info['payment_possible'] = True
57info['type_description'] = fee_dict['description']
[2883]58info['pay_bill_to'] = student_record.name
[2644]59info['student_id'] = student_id
[2883]60info['student_name'] = student_record.name
61info['type'] = 'online'
[2833]62info['status'] = 'started'
[2913]63info['session_id'] = fee_dict['next_session_id']
[2891]64info['item'] = student_record.course
65info['category'] = 'schoolfee'
[2883]66info['student_email'] = student_record.email
[2644]67now = DateTime.DateTime()
68info['date'] = now
[3586]69info['pay_ship_to'] = "Adekunle Ajasin University"
[2644]70timestamp = "%d" % int(now.timeTime()*1000)
71info['order_id'] = "%s%s" % (student_id[1:],timestamp)
72p_id = "p%s" % timestamp
73
[2824]74
[2836]75info['surcharge'] = interswitch_amount = '150'
76info['amount'] = amount = fee_dict['all']
77total_amount = 100*int(amount) + 100*int(interswitch_amount)
78
79
[2644]80if student_id is None:
81    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
82
[2824]83if True:
[3594]84    info['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx"
[2644]85else:
86    #pass
87    #return None
88    info['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),p_id)
89
90
91if "payments" not in student.objectIds():
92    student.invokeFactory('PaymentsFolder','payments')
93    payments = getattr(student,'payments')
94    d = {}
95    d['Title'] = 'Payments'
96    payments.getContent().edit(mapping=d)
97    wftool.doActionFor(payments,'open')
98else:
99    payments = getattr(student,'payments')
100if request.has_key('epayment'):
101    return context.interswitch_form(info=info)
102
103
104payments.invokeFactory('Payment', p_id)
105payment = getattr(payments,p_id)
106wftool.doActionFor(payment,'open')
107d = {}
108d.update(info)
109payment.getContent().edit(mapping=d)
[2836]110
111
[2644]112info['callback_url'] = "%s/payments/%s/interswitch_cb?echo=%s" % (student.absolute_url(),
113                                                                  p_id,
114                                                                  p_id)
115
116logger.info('%(student_id)s initiated online school fee payment with order_id %(order_id)s and callback url %(callback_url)s' % info)
117payment_fields = (('product_id','site_id'),
118                  ('site_redirect_url','callback_url'),
119                  ('Currency','currency_id'),
120                  ('cust_id','student_id'),
121                  ('cust_id_desc','type_description'),
122                  ('cust_name','student_name'),
123                  ('txn_ref','order_id'),
124                  ('Amount','amount'),
125                  )
126args = {}
127for arg,field in payment_fields:
128    args[arg] = info[field]
[2798]129
[3586]130bt_amount = 4000
131
132aaua_amount = amount - bt_amount
133xmldict = {}
134xmldict['detail_ref'] = args['txn_ref']
135xmldict['department'] = student_record.department
136xmldict['faculty'] = student_record.faculty
137xmldict['aaua_amount'] = "%d" % int(100*aaua_amount)
138xmldict['bt_amount'] = "%d" % int(100*bt_amount)
[3594]139if student_record.mode.endswith('_pt'):
140    xmldict['aaua_acct'] = "0321100000000046"
141elif student_record.mode.endswith('_sw'):
142    xmldict['aaua_acct'] = "0321100000000056"
143else:
144    xmldict['aaua_acct'] = "0000000000000000"
[3586]145
146
[3594]147xmltext = """<payment_item_detail>
[3586]148<item_details detail_ref="%(detail_ref)s" college="AAUA" department="%(department)s" faculty="%(faculty)s">
[3594]149<item_detail item_id="1" item_name="AAUA" item_amt="%(aaua_amount)s" bank_id="89" acct_num="%(aaua_acct)s" />
150<item_detail item_id="2" item_name="BT" item_amt="%(bt_amount)s" bank_id="117" acct_num="6012015294" />
[3586]151</item_details>
[3594]152</payment_item_detail>""" % xmldict
[3586]153
[3594]154info['xml_data'] = """<input type="hidden" name="xml_data" value='%s'  />""" % xmltext
[3586]155
[2798]156args['Amount'] = "%d" % (total_amount)
[3586]157args['site_name'] = "aaua.waeup.org"
[2644]158args['cust_name_desc'] = "Student Name"
159args['pay_item_id'] = pay_item_id
[3586]160args['pay_item_name'] = "AAUA Tuition Payments"
161args['payment_params'] = 'college_split'
162#args['xml_data'] = ''
[3594]163#args['xml_data'] = xmltext   # info['xml_data']can be used instead
[2644]164info['args'] = args
[3594]165
[2644]166return context.goto_interswitch_form(info=info)
[3586]167
Note: See TracBrowser for help on using the repository browser.