source: WAeUP_SRP/trunk/skins/waeup_aaue/getPaymentsFolderInfo.py @ 5190

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

implement request payment

File size: 5.5 KB
Line 
1## Script (Python) "getPaymentsFolderInfo"
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: getPaymentsFolderInfo.py 2480 2007-10-30 15:23:25Z joachim $
11"""
12Info for the PaymentsFolder
13"""
14from Products.AdvancedQuery import Eq, Between, Le,In
15
16mtool = context.portal_membership
17wftool = context.portal_workflow
18member = mtool.getAuthenticatedMember()
19payments_catalog = context.payments_catalog
20aq_payments = payments_catalog.evalAdvancedQuery
21if mtool.isAnonymousUser():
22    return None
23try:
24    from Products.zdb import set_trace
25except:
26    def set_trace():
27        pass
28
29import DateTime
30request = context.REQUEST
31#students = context.portal_url.getPortalObject().campus.students
32student_id = context.getStudentId()
33if student_id is None:
34    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
35#student = getattr(students,student_id)
36student_record = context.students_catalog.getRecordByKey(student_id)
37
38
39info = {}
40is_so = info['is_so'] = context.isSectionOfficer()
41is_student = info['is_student'] = context.isStudent()
42info['student_name'] = student_record.name
43info['query_url'] = "https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx"
44review_state = info['review_state'] = student_record.review_state
45parttime = student_record.mode and student_record.mode.endswith('_pt')
46fulltime = student_record.mode and student_record.mode.endswith('_ft')
47
48
49session = student_record.session
50next_info = context.getNextInfo(student_record)
51info['next_session'] = next_info['next_session_id']
52info['next_session_str'] = next_info['next_session_str']
53info['payment_method'] = ""
54info['reasons'] = next_info['reasons']
55
56# begin customization
57
58if review_state == 'cleared_and_validated':
59    info['payment_method'] = "online_payment"
60#elif review_state == 'cleared_and_validated' and session == '07':
61#    info['payment_method'] = "sc_payment"
62elif review_state == 'returning' and info['next_session'] != session:
63    info['payment_method'] = "online_payment"
64info['prod_id'] = '119'
65
66# end customization
67
68info['student_name'] = student_record.name
69payments_path = "%s/campus/students/%s/payments" % (context.portal_url(),student_id)
70payments = []
71payment_records = aq_payments(Eq('student_id',student_id)) # & Eq('session_id',student_record.session))
72vocabularies = context.portal_vocabularies
73paid_fees = []
74for payment in payment_records:
75    if payment.status == "paid":
76        paid_fees += "%s_%s" % (payment.category,payment.session_id),
77#info['pf'] = paid_fees
78for payment in payment_records:
79    row = {}
80    row['id'] = payment.key
81    if payment.status == 'invalid':
82        row['title'] = "Invalid Payment, Naira %s, %s" % (payment.amount,
83                                                          payment.date.strftime("%d/%m/%y %H:%M:%S"))
84    else:
85        row['title'] = "%s for Session %s, Naira %s, %s" % (vocabularies.payment_categories.get(payment.category),
86                                                            vocabularies.sessions.get(payment.session_id),
87                                                            payment.amount,
88                                                            payment.date.strftime("%d/%m/%y %H:%M:%S"))
89    oid = payment.order_id
90    onr = oid.rfind('-')+1
91    if onr > 0:
92        start_pos = onr
93    else:
94        start_pos = 6
95    url = row['url'] = "%s/p%s" % (payments_path,oid[start_pos:])
96    row['is_requeryable'] = "%s_%s" % (payment.category,payment.session_id) not in paid_fees and (not payment.resp_desc or str(member) in ('admin','isouaba')) and payment.type == 'online'   # customized too
97    row['is_requestable'] = "%s_%s" % (payment.category,payment.session_id) not in paid_fees and (not payment.resp_desc or str(member) in ('admin','isouaba')) and payment.type == 'request'  # customized too
98    row['is_approvable'] = is_so and (row['is_requeryable'] or row['is_requestable']) and payment.category == 'schoolfee' # does not make sense for maintenance
99    row['resp_desc'] = payment.resp_desc or 'Payment Process Interrupted'
100    row['trans_ref'] = payment.order_id
101    if row['is_requeryable']:
102        row['callback_url'] = "%(url)s/interswitch_cb" % row
103#        if payment.category == 'schoolfee':
104#            row['callback_url'] = "%(url)s/interswitch_cb" % row
105#        elif payment.category == 'hostel_maintenance':
106#            row['callback_url'] = "%(url)s/interswitch_acco_cb" % row
107#        else:
108        href = '%(query_url)s' % info
109        href += '?transRef=%(trans_ref)s' % row
110        href += '&prodID=%(prod_id)s' % info
111        href += '&redirectURL=%(callback_url)s' % row
112        row['href'] = href
113    elif row['is_requestable']:
114        row['callback_url'] = "%(url)s/interswitch_request_cb" % row
115        #href = '%(query_url)s' % info
116        href = "http://testwebpay.interswitchng.com/CollegepayService/TransactionQueryURL.aspx"
117        href += '?redirectURL=%(callback_url)s' % row
118        href += '&productid=53'
119        href += '&merchantref=ignore'
120        href += '&custNumber=%s' % student_id
121        href += '&session=%s' % info['next_session_str']
122        href += '&semester=Semester 1'             
123        row['href'] = href       
124    if payment.status == 'paid':
125        row['confirmed'] = 'active'
126    else:
127        row['confirmed'] = 'unsuccessful'
128    row['is_editable'] = is_so and (row['confirmed'] == 'active')
129    payments.append(row)
130
131payments.sort(cmp=lambda x,y: cmp(x['trans_ref'],y['trans_ref']))
132info['payments'] = payments
133return info
134
Note: See TracBrowser for help on using the repository browser.