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 1952 2007-06-23 21:44:30Z henrik $ |
---|
11 | """ |
---|
12 | Info for the PaymentsFolder |
---|
13 | """ |
---|
14 | |
---|
15 | mtool = context.portal_membership |
---|
16 | if mtool.isAnonymousUser(): |
---|
17 | return None |
---|
18 | try: |
---|
19 | from Products.zdb import set_trace |
---|
20 | except: |
---|
21 | def set_trace(): |
---|
22 | pass |
---|
23 | |
---|
24 | |
---|
25 | #import logging |
---|
26 | #logger = logging.getLogger('Skins.getPaymentsFolderInfo') |
---|
27 | def cmp_id(a,b): |
---|
28 | s1 = "%(id)s" % a |
---|
29 | s2 = "%(id)s" % b |
---|
30 | if s1 == s2: |
---|
31 | return 0 |
---|
32 | if s1 > s2: |
---|
33 | return 1 |
---|
34 | return -1 |
---|
35 | |
---|
36 | import DateTime |
---|
37 | request = context.REQUEST |
---|
38 | students = context.portal_url.getPortalObject().campus.students |
---|
39 | student_id = context.getStudentId() |
---|
40 | if student_id is None: |
---|
41 | return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
42 | student = getattr(students,student_id) |
---|
43 | s_brain = context.students_catalog(id = student_id)[0] |
---|
44 | |
---|
45 | payments = [] |
---|
46 | #from Products.zdb import set_trace;set_trace() |
---|
47 | |
---|
48 | info = {} |
---|
49 | is_so = info['is_so'] = context.isSectionOfficer() |
---|
50 | info['query_url'] = "https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx" |
---|
51 | info['prod_id'] = '61' |
---|
52 | #res = context.portal_catalog(portal_type='Student',id = student_id) |
---|
53 | #res = context.students_catalog(id = student_id) |
---|
54 | info['review_state'] = s_brain.review_state |
---|
55 | session = s_brain.session |
---|
56 | info['next_session'], info['next_session_str'] = context.getNextSessionId(session) |
---|
57 | |
---|
58 | info['student_name'] = s_brain.name |
---|
59 | payments_path = "%s/campus/students/%s/payments" % (context.portal_url.getPortalPath(),student_id) |
---|
60 | sos = context.portal_catalog(container_path=payments_path) |
---|
61 | info['is_so'] = is_so |
---|
62 | |
---|
63 | for so in sos: |
---|
64 | row = {} |
---|
65 | row['id'] = so.getId |
---|
66 | row['title'] = so.Title |
---|
67 | url = row['url'] = "%s/%s" % (payments_path,so.getId) |
---|
68 | so_doc = context.restrictedTraverse(url,default=None).getContent() |
---|
69 | row['type'] = so.portal_type |
---|
70 | review_state = row['review_state'] = so.review_state |
---|
71 | if so_doc.type_description.startswith('School Fee'): |
---|
72 | row['is_approvable'] = is_so and (review_state == "opened") and info['review_state'] == 'cleared_and_validated' |
---|
73 | else: |
---|
74 | row['is_approvable'] = is_so and (review_state == "opened") |
---|
75 | row['is_requeryable'] = False |
---|
76 | #set_trace() |
---|
77 | row['resp_desc'] = getattr(so_doc,'resp_desc','no response') |
---|
78 | row['trans_ref'] = getattr(so_doc,'order_id','') |
---|
79 | if so_doc.type_description.startswith('School Fee'): |
---|
80 | if review_state == 'opened' and info['review_state'] == 'cleared_and_validated' and hasattr(so_doc, 'order_id') and not so_doc.resp_code: |
---|
81 | row['is_requeryable'] = True |
---|
82 | row['callback_url'] = "%s/payments/%s/interswitch_cb" % (student.absolute_url(), |
---|
83 | so.getId) |
---|
84 | href = '%(query_url)s' % info |
---|
85 | href += '?transRef=%(trans_ref)s' % row |
---|
86 | href += '&prodID=%(prod_id)s' % info |
---|
87 | href += '&redirectURL=%(callback_url)s' % row |
---|
88 | row['href'] = href |
---|
89 | if (review_state == "closed") and so_doc.resp_code in ('SC','00','AP','IP',): |
---|
90 | row['confirmed'] = 'active' |
---|
91 | else: |
---|
92 | row['confirmed'] = 'unsuccessful' |
---|
93 | payments.append(row) |
---|
94 | |
---|
95 | payments.sort(cmp_id) |
---|
96 | info['payments'] = payments |
---|
97 | return info |
---|
98 | |
---|