source: WAeUP_SRP/aaua/waeup_custom/getPaymentsFolderInfo.py @ 3677

Last change on this file since 3677 was 3594, checked in by Henrik Bettermann, 16 years ago

use different bank accounts

File size: 4.8 KB
RevLine 
[2644]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"""
[3226]14from Products.AdvancedQuery import Eq, Between, Le,In
[2644]15
16mtool = context.portal_membership
[3069]17wftool = context.portal_workflow
[2890]18member = mtool.getAuthenticatedMember()
[3226]19payments_catalog = context.payments_catalog
20aq_payments = payments_catalog.evalAdvancedQuery
[2644]21if mtool.isAnonymousUser():
22    return None
23try:
24    from Products.zdb import set_trace
25except:
26    def set_trace():
27        pass
28
29def cmp_id(a,b):
30    s1 = "%(id)s" % a
31    s2 = "%(id)s" % b
32    if s1 == s2:
33        return 0
34    if s1 > s2:
35        return 1
36    return -1
37
38import DateTime
39request = context.REQUEST
[3226]40#students = context.portal_url.getPortalObject().campus.students
[2644]41student_id = context.getStudentId()
42if student_id is None:
43    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
[3226]44#student = getattr(students,student_id)
[2871]45student_record = context.students_catalog.getRecordByKey(student_id)
[2644]46
[3240]47
[2644]48info = {}
49is_so = info['is_so'] = context.isSectionOfficer()
50is_student = info['is_student'] = context.isStudent()
[2871]51info['student_name'] = student_record.name
[2644]52info['query_url'] = "https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx"
[2871]53review_state = info['review_state'] = student_record.review_state
54parttime = student_record.mode and student_record.mode.endswith('_pt')
55fulltime = student_record.mode and student_record.mode.endswith('_ft')
[2644]56
57
[2871]58session = student_record.session
59next_info = context.getNextInfo(student_record)
[2644]60info['next_session'] = next_info['next_session_id']
61info['next_session_str'] = next_info['next_session_str']
62info['payment_method'] = ""
63info['reasons'] = next_info['reasons']
64
[3242]65# begin customization
66
[2657]67if review_state == 'cleared_and_validated':
[2644]68    info['payment_method'] = "online_payment"
[3237]69#elif review_state == 'cleared_and_validated' and session == '07':
70#    info['payment_method'] = "sc_payment"
[2657]71elif review_state == 'returning' and info['next_session'] != session:
72    info['payment_method'] = "online_payment"
[3586]73info['prod_id'] = '105'
[2644]74
[3242]75# end customization
76
[2871]77info['student_name'] = student_record.name
[3227]78payments_path = "%s/campus/students/%s/payments" % (context.portal_url(),student_id)
[3226]79payments = []
[3270]80payment_records = aq_payments(Eq('student_id',student_id)) # & Eq('session_id',student_record.session))
[3226]81vocabularies = context.portal_vocabularies
82paid_fees = []
83for payment in payment_records:
84    if payment.status == "paid":
[3230]85        paid_fees += "%s_%s" % (payment.category,payment.session_id),
86#info['pf'] = paid_fees
[3226]87for payment in payment_records:
[2644]88    row = {}
[3226]89    row['id'] = payment.key
[3275]90    if payment.status == 'invalid':
91        row['title'] = "Invalid Payment, Naira %s, %s" % (payment.amount,
[3312]92                                                          payment.date.strftime("%d/%m/%y %H:%M:%S"))
93    else:
[3275]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"))
[3312]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    url = row['url'] = "%s/p%s" % (payments_path,oid[start_pos:])
[3594]105    row['is_requeryable'] = "%s_%s" % (payment.category,payment.session_id) not in paid_fees and not payment.resp_desc and payment.type == 'online'# or str(member) in ('admin',)  # customized too
106    row['is_approvable'] = is_so and row['is_requeryable'] and payment.category == 'schoolfee' # does not make sense for maintenance
[3229]107    row['resp_desc'] = payment.resp_desc or 'Payment Process Interrupted'
[3226]108    row['trans_ref'] = payment.order_id
109    if row['is_requeryable']:
[3240]110        row['callback_url'] = "%(url)s/interswitch_cb" % row
111#        if payment.category == 'schoolfee':
112#            row['callback_url'] = "%(url)s/interswitch_cb" % row
113#        elif payment.category == 'hostel_maintenance':
114#            row['callback_url'] = "%(url)s/interswitch_acco_cb" % row
115#        else:
[3226]116        href = '%(query_url)s' % info
117        href += '?transRef=%(trans_ref)s' % row
118        href += '&prodID=%(prod_id)s' % info
119        href += '&redirectURL=%(callback_url)s' % row
120        row['href'] = href
121    if payment.status == 'paid':
[2644]122        row['confirmed'] = 'active'
123    else:
124        row['confirmed'] = 'unsuccessful'
[2758]125    row['is_editable'] = is_so and (row['confirmed'] == 'active')
[2644]126    payments.append(row)
127
128payments.sort(cmp_id)
129info['payments'] = payments
130return info
131
Note: See TracBrowser for help on using the repository browser.