source: WAeUP_SRP/trunk/skins/waeup_uniben/getPaymentsFolderInfo.py @ 7901

Last change on this file since 7901 was 7901, checked in by Henrik Bettermann, 13 years ago

Implement eTranzact payment and restructure change school fee payment.

Session 2011/2012: eTranzact and Interswitch payments only
Previous sessions: scratch card payments only

  • Property svn:keywords set to Id
File size: 5.6 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 7901 2012-03-17 10:16:07Z henrik $
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"
44info['query_url_tranzact'] = "http://demo.etranzact.com:8080/WebConnect/queryPayoutletTransaction.jsp"
45review_state = info['review_state'] = student_record.review_state
46parttime = student_record.mode and student_record.mode.endswith('_pt')
47fulltime = student_record.mode and student_record.mode.endswith('_ft')
48
49
50session = student_record.session
51next_info = context.getNextInfo(student_record)
52info['next_session'] = next_info['next_session_id']
53info['next_session_str'] = next_info['next_session_str']
54info['payment_method'] = ""
55info['reasons'] = next_info['reasons']
56
57# begin customization
58
59if session in ('11','12','13'):
60    info['payment_method'] = "online_payment"
61else:
62    info['payment_method'] = "sc_payment"
63
64info['prod_id'] = '61'
65
66gown_records = aq_payments(Eq('student_id',student_id)  & Eq('category','gown'))
67try:
68    level = int(student_record.level)
69    end_level = int(student_record.end_level)
70    if level >= end_level and not gown_records:
71        info['gown'] = True
72except:
73    pass
74
75# end customization
76
77info['student_name'] = student_record.name
78payments_path = "%s/campus/students/%s/payments" % (context.portal_url(),student_id)
79payments = []
80payment_records = aq_payments(Eq('student_id',student_id)) # & Eq('session_id',student_record.session))
81vocabularies = context.portal_vocabularies
82paid_fees = []
83for payment in payment_records:
84    if payment.status == "paid":
85        paid_fees += "%s_%s" % (payment.category,payment.session_id),
86#info['pf'] = paid_fees
87for payment in payment_records:
88    row = {}
89    row['id'] = payment.key
90    if payment.status == 'invalid':
91        row['title'] = "Invalid Payment, Naira %s, %s" % (payment.amount,
92                                                          payment.date.strftime("%d/%m/%y %H:%M:%S"))
93    else:
94        row['title'] = "%s for Session %s, Naira %s, %s" % (vocabularies.payment_categories.get(payment.category),
95                                                            vocabularies.sessions.get(payment.session_id),
96                                                            payment.amount,
97                                                            payment.date.strftime("%d/%m/%y %H:%M:%S"))
98    oid = payment.order_id
99    onr = oid.rfind('-')+1
100    if onr > 0:
101        start_pos = onr
102    else:
103        start_pos = 6
104    row['sort_param'] = payment.date
105    url = row['url'] = "%s/p%s" % (payments_path,oid[start_pos:])
106    row['is_requeryable_interswitch'] = "%s_%s" % (payment.category,payment.session_id) not in paid_fees and payment.type == 'online' #or str(member) in ('admin',)
107    row['is_requeryable_etranzact'] = "%s_%s" % (payment.category,payment.session_id) not in paid_fees and payment.type == 'etranzact' #or str(member) in ('admin',)
108    row['is_approvable'] = is_so and (row['is_requeryable_interswitch'] or row['is_requeryable_etranzact'])and payment.category == 'schoolfee' # does not make sense for maitenance
109    row['resp_desc'] = payment.resp_desc or 'Payment Process Interrupted'
110    row['trans_ref'] = payment.order_id
111    if row['is_requeryable_interswitch']:
112        row['callback_url_inter'] = "%(url)s/interswitch_cb" % row
113#        if payment.category == 'schoolfee':
114#            row['callback_url'] = "%(url)s/interswitch_cb" % row
115#        elif payment.category == 'hostel_maintenance':
116#            row['callback_url'] = "%(url)s/interswitch_acco_cb" % row
117#        else:
118        href = '%(query_url)s' % info
119        href += '?transRef=%(trans_ref)s' % row
120        href += '&prodID=%(prod_id)s' % info
121        href += '&redirectURL=%(callback_url_inter)s' % row
122        row['href_inter'] = href
123
124    if row['is_requeryable_etranzact']:
125        row['callback_url_tranzact'] = "%(url)s/tranzact_cb" % row
126#        if payment.category == 'schoolfee':
127#            row['callback_url'] = "%(url)s/interswitch_cb" % row
128#        elif payment.category == 'hostel_maintenance':
129#            row['callback_url'] = "%(url)s/interswitch_acco_cb" % row
130#        else:
131
132        href = 'enter_tranzact_pin'
133        href += '?query_url=%(query_url_tranzact)s' % info
134        href += '&redirectURL=%(callback_url_tranzact)s' % row
135        row['href_tranzact'] = href
136
137    if payment.status == 'paid':
138        row['confirmed'] = 'active'
139    else:
140        row['confirmed'] = 'unsuccessful'
141    row['is_editable'] = is_so and (row['confirmed'] == 'active')
142    payments.append(row)
143
144payments.sort(cmp=lambda x,y: cmp(x['sort_param'],y['sort_param']))
145info['payments'] = payments
146return info
Note: See TracBrowser for help on using the repository browser.