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

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

Add requery link for eTranzact payments.

  • Property svn:keywords set to Id
File size: 5.9 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 7776 2012-03-07 12:07:00Z 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"
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
58# special handling of 06 DPA students (ticket 658)
59if review_state == 'cleared_and_validated' and session in ('06') and student_record.course == 'DPA':
60    info['payment_method'] = "sc_payment"
61# special handling of 06 payments for testing purposes     
62elif review_state == 'cleared_and_validated' and session in ('06'):
63    info['payment_method'] = "online_payment"
64elif review_state == 'returning' and info['next_session'] == '06':
65    info['payment_method'] = "both_payments"
66elif review_state == 'cleared_and_validated' and session not in ('07','08'):
67    info['payment_method'] = "both_payments"
68elif review_state == 'cleared_and_validated' and session in ('07','08'):
69    info['payment_method'] = "sc_payment"
70elif review_state == 'returning' and info['next_session'] != session:
71    info['payment_method'] = "sc_payment"
72
73
74
75info['prod_id'] = '61'
76
77gown_records = aq_payments(Eq('student_id',student_id)  & Eq('category','gown'))
78try:
79    level = int(student_record.level)
80    end_level = int(student_record.end_level)
81    if level >= end_level and not gown_records:
82        info['gown'] = True
83except:
84    pass
85
86# end customization
87
88info['student_name'] = student_record.name
89payments_path = "%s/campus/students/%s/payments" % (context.portal_url(),student_id)
90payments = []
91payment_records = aq_payments(Eq('student_id',student_id)) # & Eq('session_id',student_record.session))
92vocabularies = context.portal_vocabularies
93paid_fees = []
94for payment in payment_records:
95    if payment.status == "paid":
96        paid_fees += "%s_%s" % (payment.category,payment.session_id),
97#info['pf'] = paid_fees
98for payment in payment_records:
99    row = {}
100    row['id'] = payment.key
101    if payment.status == 'invalid':
102        row['title'] = "Invalid Payment, Naira %s, %s" % (payment.amount,
103                                                          payment.date.strftime("%d/%m/%y %H:%M:%S"))
104    else:
105        row['title'] = "%s for Session %s, Naira %s, %s" % (vocabularies.payment_categories.get(payment.category),
106                                                            vocabularies.sessions.get(payment.session_id),
107                                                            payment.amount,
108                                                            payment.date.strftime("%d/%m/%y %H:%M:%S"))
109    oid = payment.order_id
110    onr = oid.rfind('-')+1
111    if onr > 0:
112        start_pos = onr
113    else:
114        start_pos = 6
115    row['sort_param'] = payment.date
116    url = row['url'] = "%s/p%s" % (payments_path,oid[start_pos:])
117    row['is_requeryable'] = "%s_%s" % (payment.category,payment.session_id) not in paid_fees and payment.type == 'online' or str(member) in ('admin',)
118    row['is_approvable'] = is_so and row['is_requeryable'] and payment.category == 'schoolfee' # does not make sense for maitenance
119    row['resp_desc'] = payment.resp_desc or 'Payment Process Interrupted'
120    row['trans_ref'] = payment.order_id
121    row['session'] = payment.session_id
122    row['category'] = payment.category
123    row['amount'] = payment.amount
124    if row['is_requeryable']:
125        row['callback_url_inter'] = "%(url)s/interswitch_cb" % row
126        row['callback_url_tranzact'] = "%(url)s/tranzact_cb" % row
127#        if payment.category == 'schoolfee':
128#            row['callback_url'] = "%(url)s/interswitch_cb" % row
129#        elif payment.category == 'hostel_maintenance':
130#            row['callback_url'] = "%(url)s/interswitch_acco_cb" % row
131#        else:
132        href = '%(query_url)s' % info
133        href += '?transRef=%(trans_ref)s' % row
134        href += '&prodID=%(prod_id)s' % info
135        href += '&redirectURL=%(callback_url_inter)s' % row
136        row['href_inter'] = href
137
138        href = 'enter_tranzact_pin'
139        href += '?category=%(category)s' % row
140        href += '?session=%(session)s' % row
141        href += '&amount=%(amount)s' % row
142        href += '&redirectURL=%(callback_url_tranzact)s' % row
143        row['href_tranzact'] = href
144
145    if payment.status == 'paid':
146        row['confirmed'] = 'active'
147    else:
148        row['confirmed'] = 'unsuccessful'
149    row['is_editable'] = is_so and (row['confirmed'] == 'active')
150    payments.append(row)
151
152payments.sort(cmp=lambda x,y: cmp(x['sort_param'],y['sort_param']))
153info['payments'] = payments
154return info
Note: See TracBrowser for help on using the repository browser.