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 | """ |
---|
12 | pay online |
---|
13 | """ |
---|
14 | try: |
---|
15 | from Products.zdb import set_trace |
---|
16 | except: |
---|
17 | def set_trace(): |
---|
18 | pass |
---|
19 | from urllib import urlencode |
---|
20 | import logging |
---|
21 | logger = logging.getLogger('Skins.pay_interswitch_acco') |
---|
22 | import DateTime |
---|
23 | |
---|
24 | if context.portal_membership.isAnonymousUser(): |
---|
25 | return None |
---|
26 | |
---|
27 | request = context.REQUEST |
---|
28 | wftool = context.portal_workflow |
---|
29 | students = context.portal_url.getPortalObject().campus.students |
---|
30 | |
---|
31 | student_id = context.getStudentId() |
---|
32 | if student_id is None: |
---|
33 | return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
34 | student = getattr(students,student_id) |
---|
35 | |
---|
36 | student_record = context.students_catalog.getRecordByKey(student_id) |
---|
37 | #amount,description = context.getSchoolFee(student_record.faculty,student_record.session,student_record.course) |
---|
38 | now = DateTime.DateTime() |
---|
39 | timestamp = "%d" % int(now.timeTime()*1000) |
---|
40 | payment_id = "p%s" % timestamp |
---|
41 | order_id = "%s%s" % (student_id[1:],timestamp) |
---|
42 | hostel = paytype in ('HOM','HOMH',) |
---|
43 | if hostel: |
---|
44 | info = context.getInterswitchParams(paytype,student,payment_id,order_id,student_record) |
---|
45 | info['student'] = student_record |
---|
46 | else: |
---|
47 | return None |
---|
48 | |
---|
49 | info['pay_bill_to'] = student_record.name |
---|
50 | info['student_id'] = student_id |
---|
51 | info['student_name'] = student_record.name |
---|
52 | info['session_id'] = student_record.session |
---|
53 | info['student_email'] = student_record.email |
---|
54 | info['date'] = now |
---|
55 | info['order_id'] = order_id |
---|
56 | |
---|
57 | if "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') |
---|
64 | else: |
---|
65 | payments = getattr(student,'payments') |
---|
66 | |
---|
67 | |
---|
68 | payments.invokeFactory('Payment', payment_id) |
---|
69 | payment = getattr(payments,payment_id) |
---|
70 | wftool.doActionFor(payment,'open') |
---|
71 | d = {} |
---|
72 | d.update(info) |
---|
73 | payment.getContent().edit(mapping=d) |
---|
74 | #wftool.doActionFor(payment,'close') |
---|
75 | #wftool.doActionFor(student,'pay_school_fee') |
---|
76 | info['callback_url'] = "%s/payments/%s/%s?echo=%s" % (student.absolute_url(), |
---|
77 | payment_id, |
---|
78 | info['callback_function'], |
---|
79 | payment_id) |
---|
80 | |
---|
81 | logger.info('%(student_id)s initiated %(type_description)s payment with order_id %(order_id)s and callback url %(callback_url)s' % info) |
---|
82 | payment_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 | ) |
---|
96 | args = {} |
---|
97 | for arg,field in payment_fields: |
---|
98 | args[arg] = info[field] |
---|
99 | interswitch_amount = int(info['surcharge'])*100 |
---|
100 | uni_amount = int(info['fee'])*100 |
---|
101 | total_amount = interswitch_amount + uni_amount |
---|
102 | args['Amount'] = "%d" % (total_amount) |
---|
103 | args['cust_name_desc'] = "Student Name" |
---|
104 | info['args'] = args |
---|
105 | return context.goto_interswitch_form(info=info) |
---|