source: WAeUP_SRP/fceokene/waeup_custom/pay_interswitch.py @ 2834

Last change on this file since 2834 was 2833, checked in by joachim, 17 years ago

customize pay_ship_to

File size: 4.1 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 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
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')
46
47# begin customization
48
49if not fee_dict:
50    return context.interswitch_form(info=info)
51amount = info['amount'] = fee_dict['all']
52info['pay_ship_to'] = "Federal College of Education Okene"
53
54# end customization
55
56
57info['site_id'] = '83'
58info['currency_id'] = '566'
59
60pay_item_id = "8302"
61info['type_code'] = sbrain.course  #type_code is redundant and will be removed soon
62info['bank'] = ''
63info['payment_possible'] = True
64info['type_description'] = fee_dict['description']
65info['pay_bill_to'] = sbrain.name
66info['student_id'] = student_id
67info['student_name'] = sbrain.name
68info['type'] = 'ONL'
69info['status'] = 'started'
70info['target'] = sbrain.course
71info['subject'] = 'schoolfee'
72info['student_email'] = sbrain.email
73now = DateTime.DateTime()
74info['date'] = now
75timestamp = "%d" % int(now.timeTime()*1000)
76info['order_id'] = "%s%s" % (student_id[1:],timestamp)
77p_id = "p%s" % timestamp
78
79interswitch_amount = 15000
80info['surcharge'] = interswitch_amount/100
81
82if student_id is None:
83    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
84
85if True:
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)
111payment.getContent().edit(mapping=d)
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]
129itotal = int(amount)*100
130total_amount = itotal + interswitch_amount
131
132args['Amount'] = "%d" % (total_amount)
133args['site_name'] = "fceokene.waeup.org"
134args['cust_name_desc'] = "Student Name"
135args['pay_item_id'] = pay_item_id
136args['pay_item_name'] = "FCEOKENE Tuition Payments"
137args['payment_params'] = 'switch_college_split'
138args['xml_data'] = ''
139info['args'] = args
140return context.goto_interswitch_form(info=info)
Note: See TracBrowser for help on using the repository browser.