source: WAeUP_SRP/trunk/skins/waeup_futminna/pay_interswitch_acco.py @ 5795

Last change on this file since 5795 was 5795, checked in by Henrik Bettermann, 14 years ago

Implementation of a Late Registration Fee (FUTMinna only). This was more work and customization than expected. We urgently need a new consistent payment module.

  • Property svn:keywords set to Id
File size: 3.5 KB
Line 
1## Script (Python) "pay_interswitch_acco"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=paytype=None
8##title=
9##
10# $Id: pay_interswitch_acco.py 5795 2011-03-05 12:34:09Z henrik $
11"""
12pay online
13"""
14try:
15    from Products.zdb import set_trace
16except:
17    def set_trace():
18        pass
19from urllib import urlencode
20import logging
21logger = logging.getLogger('Skins.pay_interswitch_acco')
22import DateTime
23
24if context.portal_membership.isAnonymousUser():
25    return None
26
27request = context.REQUEST
28wftool = context.portal_workflow
29students = context.portal_url.getPortalObject().campus.students
30
31student_id = context.getStudentId()
32if student_id is None:
33    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
34student = getattr(students,student_id)
35
36student_record = context.students_catalog.getRecordByKey(student_id)
37#amount,description = context.getSchoolFee(student_record.faculty,student_record.session,student_record.course)
38now = DateTime.DateTime()
39timestamp = "%d" % int(now.timeTime()*1000)
40payment_id = "p%s" % timestamp
41order_id = "%s%s" % (student_id[1:],timestamp)
42hostel = paytype in ('HOM','HOMH',)
43if hostel:
44    info = context.getInterswitchParams(paytype,student,payment_id,order_id,student_record)
45    info['student'] = student_record
46else:
47    return None
48
49info['pay_bill_to'] = student_record.name
50info['student_id'] = student_id
51info['student_name'] = student_record.name
52info['session_id'] = student_record.session
53info['student_email'] = student_record.email
54info['date'] = now
55info['order_id'] = order_id
56
57if "payments" not in student.objectIds():
58    student.invokeFactory('PaymentsFolder','payments')
59    payments = getattr(student,'payments')
60    d = {}
61    d['Title'] = 'Payments'
62    payments.getContent().edit(mapping=d)
63    wftool.doActionFor(payments,'open')
64else:
65    payments = getattr(student,'payments')
66
67
68payments.invokeFactory('Payment', payment_id)
69payment = getattr(payments,payment_id)
70wftool.doActionFor(payment,'open')
71d = {}
72d.update(info)
73payment.getContent().edit(mapping=d)
74#wftool.doActionFor(payment,'close')
75#wftool.doActionFor(student,'pay_school_fee')
76info['callback_url'] = "%s/payments/%s/%s?echo=%s" % (student.absolute_url(),
77                                                      payment_id,
78                                                      info['callback_function'],
79                                                      payment_id)
80
81logger.info('%(student_id)s initiated %(type_description)s payment with order_id %(order_id)s and callback url %(callback_url)s' % info)
82payment_fields = (('product_id','site_id'),
83                  ('site_name','site_name'),
84                  ('site_redirect_url','callback_url'),
85                  ('Currency','currency_id'),
86                  ('cust_id','student_id'),
87                  ('cust_id_desc','type_description'),
88                  ('cust_name','student_name'),
89                  ('txn_ref','order_id'),
90                  ('Amount','amount'),
91                  ('pay_item_id','pay_item_id'),
92                  ('pay_item_name','pay_item_name'),
93                  ('payment_params','payment_params'),
94                  #('xml_data','xml_data'),
95                  )
96args = {}
97for arg,field in payment_fields:
98    args[arg] = info[field]
99interswitch_amount = int(info['surcharge'])*100
100uni_amount = int(info['fee'])*100
101total_amount = interswitch_amount + uni_amount
102args['Amount'] = "%d" % (total_amount)
103args['cust_name_desc'] = "Student Name"
104info['args'] = args
105return context.goto_interswitch_form(info=info)
Note: See TracBrowser for help on using the repository browser.