## Script (Python) "pay_online"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=
##title=
##
# $Id: pay_interswitch.py 2619 2007-11-10 17:39:36Z henrik $
"""
pay online
"""
from urllib import urlencode
import logging
logger = logging.getLogger('Skins.pay_interswitch')
import DateTime
if context.portal_membership.isAnonymousUser():
return None
try:
from Products.zdb import set_trace
except:
def set_trace():
pass
request = context.REQUEST
wftool = context.portal_workflow
students = context.portal_url.getPortalObject().campus.students
student_id = context.getStudentId()
student = getattr(students,student_id)
student_record = context.students_catalog.getRecordByKey(student_id)
#amount,description = context.getSchoolFee(student_record.faculty,student_record.session,student_record.course)
info = {}
info['student'] = student_record
info['payment_possible'] = False
info['amount'] = '0'
info['bank'] = ''
info['type_description'] = ''
info['pay_bill_to'] = ''
fee_dict = context.getSchoolFee(student_record)
fulltime = student_record.mode.endswith('_ft')
if not fee_dict:
return context.interswitch_form(info=info)
info['site_id'] = '105'
info['currency_id'] = '566'
pay_item_id = "10500"
#info['type_code'] = sbrain.course #type_code is redundant and will be removed soon
info['bank'] = ''
info['payment_possible'] = True
info['type_description'] = fee_dict['description']
info['pay_bill_to'] = student_record.name
info['student_id'] = student_id
info['student_name'] = student_record.name
info['type'] = 'online'
info['status'] = 'started'
info['session_id'] = fee_dict['next_session_id']
info['item'] = student_record.course
info['category'] = 'schoolfee'
info['student_email'] = student_record.email
now = DateTime.DateTime()
info['date'] = now
info['pay_ship_to'] = "Adekunle Ajasin University"
timestamp = "%d" % int(now.timeTime()*1000)
info['order_id'] = "%s%s" % (student_id[1:],timestamp)
p_id = "p%s" % timestamp
info['surcharge'] = interswitch_amount = '150'
info['amount'] = amount = fee_dict['all']
total_amount = 100*int(amount) + 100*int(interswitch_amount)
if student_id is None:
return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
if True:
info['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx"
else:
#pass
#return None
info['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),p_id)
if "payments" not in student.objectIds():
student.invokeFactory('PaymentsFolder','payments')
payments = getattr(student,'payments')
d = {}
d['Title'] = 'Payments'
payments.getContent().edit(mapping=d)
wftool.doActionFor(payments,'open')
else:
payments = getattr(student,'payments')
if request.has_key('epayment'):
return context.interswitch_form(info=info)
payments.invokeFactory('Payment', p_id)
payment = getattr(payments,p_id)
wftool.doActionFor(payment,'open')
d = {}
d.update(info)
payment.getContent().edit(mapping=d)
info['callback_url'] = "%s/payments/%s/interswitch_cb?echo=%s" % (student.absolute_url(),
p_id,
p_id)
logger.info('%(student_id)s initiated online school fee payment with order_id %(order_id)s and callback url %(callback_url)s' % info)
payment_fields = (('product_id','site_id'),
('site_redirect_url','callback_url'),
('Currency','currency_id'),
('cust_id','student_id'),
('cust_id_desc','type_description'),
('cust_name','student_name'),
('txn_ref','order_id'),
('Amount','amount'),
)
args = {}
for arg,field in payment_fields:
args[arg] = info[field]
bt_amount = 4000
aaua_amount = amount - bt_amount
xmldict = {}
xmldict['detail_ref'] = args['txn_ref']
xmldict['department'] = student_record.department
xmldict['faculty'] = student_record.faculty
xmldict['aaua_amount'] = "%d" % int(100*aaua_amount)
xmldict['bt_amount'] = "%d" % int(100*bt_amount)
if student_record.mode.endswith('_pt'):
xmldict['aaua_acct'] = "0321100000000046"
elif student_record.mode.endswith('_sw'):
xmldict['aaua_acct'] = "0321100000000056"
else:
xmldict['aaua_acct'] = "0000000000000000"
xmltext = """
""" % xmldict
info['xml_data'] = """""" % xmltext
args['Amount'] = "%d" % (total_amount)
args['site_name'] = "aaua.waeup.org"
args['cust_name_desc'] = "Student Name"
args['pay_item_id'] = pay_item_id
args['pay_item_name'] = "AAUA Tuition Payments"
args['payment_params'] = 'college_split'
#args['xml_data'] = ''
#args['xml_data'] = xmltext # info['xml_data']can be used instead
info['args'] = args
return context.goto_interswitch_form(info=info)