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