source: WAeUP_SRP/trunk/skins/waeup_epayment/pay_online.py @ 1257

Last change on this file since 1257 was 1257, checked in by joachim, 18 years ago

create payment object before submitting to the bank

  • Property svn:keywords set to Id
File size: 3.2 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_online.py 1257 2007-01-10 09:02:02Z joachim $
11"""
12pay online
13"""
14import logging
15from urllib import urlencode
16logger = logging.getLogger('EPayment.')
17import DateTime
18request = context.REQUEST
19students = context.portal_url.getPortalObject().campus.students
20
21student_id = context.getStudentId()
22if student_id is None:
23    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
24
25student = getattr(students,student_id)
26sbrain = context.students_catalog(id=student_id)[0]
27amount,description = context.getSchoolFee(sbrain.faculty)
28##res = context.portal_catalog(portal_type="Certificate",
29##                                     id = sbrain.course)
30##
31##if not res:
32##    logger.info('"%s","certificate not found", "%s"' % (student_id,course))
33##    sfc = "ART"
34##else:   
35##    sfc = res[0].getPath().split('/')[-4]
36info = {}
37info['site_id'] = '8000'
38info['currency_id'] = '566'
39info['amount'] = amount
40info['type_code'] = sbrain.faculty
41info['type_description'] = description
42info['pay_bill_to'] = sbrain.name
43info['pay_ship_to'] = "University of Benin"
44info['student_id'] = student_id
45info['student_name'] = sbrain.name
46info['student_email'] = sbrain.email
47now = DateTime.DateTime()
48info['date'] = now
49order_id = info['order_id'] = "%d" % int(now.timeTime()*1000)
50info['order_id'] = "%s%s" % (student_id[1:],order_id)
51if "payments" not in student.objectIds():
52    student.invokeFactory('PaymentsFolder','payments')
53    payments = getattr(student,'payments')
54    d = {}
55    d['Title'] = 'Payments'
56    payments.getContent().edit(mapping=d)
57    wftool.doActionFor(payments,'open')
58else:
59    payments = getattr(student,'payments')
60if request.has_key('epayment'):
61    return context.wema_form(info=info)
62
63p_id = "p%s" % order_id
64payments.invokeFactory('Payment', p_id)
65payment = getattr(payments,p_id)
66d = {}
67d.update(info)
68#from Products.zdb import set_trace;set_trace()
69payment.getContent().edit(mapping=d)
70info['callback_url'] = "%s/payments/%s/epayment_cb" % (student.absolute_url(),p_id)
71if context.portal_url().find('uniben-demo.waeup.org') >-1 or\
72   context.portal_url().find('uniben.waeup.org') >-1:
73    info['action'] = "http://www.wemaonlinepayments.biz/payment.aspx"
74else:
75    info['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),p_id)
76logger.info('"%(student_id)s","%(type_description)s", "%(amount)s N"' % info)
77payment_fields = (('x_SiteID','site_id'),
78                  ('x_Redirect_url','callback_url'),
79                  ('x_CurrencyID','currency_id'),
80                  ('x_PaymentCode','type_code'),
81                  ('x_PayDesc','type_description'),
82                  ('x_Billto','pay_bill_to'),
83                  ('x_Shipto','pay_ship_to'),
84                  ('x_PayerID','student_id'),
85                  ('x_PayerNames','student_name'),
86                  ('x_PayerEmail','student_email'),
87                  ('x_OrderID','order_id'),
88                  ('x_amt','amount'),
89                  )
90args = {}
91for arg,field in payment_fields:
92    args[arg] = info[field]
93url = info['action'] + "?" + urlencode(args)
94request.RESPONSE.redirect(url)
95
Note: See TracBrowser for help on using the repository browser.