source: WAeUP_SRP/fceokene/waeup_custom/getPaymentsFolderInfo.py @ 2988

Last change on this file since 2988 was 2964, checked in by Henrik Bettermann, 17 years ago

show correct requery link

File size: 4.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 2480 2007-10-30 15:23:25Z joachim $
11"""
12Info for the PaymentsFolder
13"""
14
15mtool = context.portal_membership
16member = mtool.getAuthenticatedMember()
17if mtool.isAnonymousUser():
18    return None
19try:
20    from Products.zdb import set_trace
21except:
22    def set_trace():
23        pass
24
25
26#import logging
27#logger = logging.getLogger('Skins.getPaymentsFolderInfo')
28def cmp_id(a,b):
29    s1 = "%(id)s" % a
30    s2 = "%(id)s" % b
31    if s1 == s2:
32        return 0
33    if s1 > s2:
34        return 1
35    return -1
36
37import DateTime
38request = context.REQUEST
39students = context.portal_url.getPortalObject().campus.students
40student_id = context.getStudentId()
41if student_id is None:
42    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
43student = getattr(students,student_id)
44student_record = context.students_catalog.getRecordByKey(student_id)
45#context['updatePayments']()
46payments = []
47
48info = {}
49is_so = info['is_so'] = context.isSectionOfficer()
50is_student = info['is_student'] = context.isStudent()
51info['student_name'] = student_record.name
52info['query_url'] = "https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx"
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')
56
57#if review_state == 'cleared_and_validated' or (parttime and review_state == 'returning'):
58#    online_payment = True
59#elif fulltime and review_state == 'returning':
60#    sc_payment = True
61
62session = student_record.session
63next_info = context.getNextInfo(student_record)
64info['next_session'] = next_info['next_session_id']
65info['next_session_str'] = next_info['next_session_str']
66info['payment_method'] = ""
67info['reasons'] = next_info['reasons']
68
69if review_state == 'cleared_and_validated':
70    info['payment_method'] = "online_payment"
71elif review_state == 'returning' and info['next_session'] != session:
72    info['payment_method'] = "online_payment"
73info['prod_id'] = '83'
74
75info['student_name'] = student_record.name
76payments_path = "%s/campus/students/%s/payments" % (context.portal_url.getPortalPath(),student_id)
77sos = context.portal_catalog(container_path=payments_path)
78info['is_so'] = is_so
79
80for so in sos:
81    row = {}
82    row['id'] = so.getId
83    row['title'] = so.Title
84    url = row['url'] = "%s/%s" % (payments_path,so.getId)
85    so_doc = context.restrictedTraverse(url,default=None).getContent()
86    row['type'] = so.portal_type
87    review_state = row['review_state'] = so.review_state
88    if so_doc.type_description.startswith('School Fee'):
89        row['is_approvable'] = is_so and (review_state == "opened") and info['review_state'] in ('cleared_and_validated','returning')
90    else:
91        row['is_approvable'] = False    # is_so and (review_state == "opened")
92    row['is_requeryable'] = False
93    #set_trace()
94    row['resp_desc'] = getattr(so_doc,'resp_desc','no response')
95    row['trans_ref'] = getattr(so_doc,'order_id','')
96    if so_doc.type_description.startswith('School Fee'):
97        if (review_state == 'opened' and info['review_state'] in ('cleared_and_validated','returning') and \
98                                  hasattr(so_doc, 'order_id') and not so_doc.resp_code) or str(member) in ('admin','delejason','isouaba'):
99            row['is_requeryable'] = True
100            row['callback_url'] = "%s/payments/%s/interswitch_cb" % (student.absolute_url(),
101                                                            so.getId)
102            href = '%(query_url)s' % info
103            href += '?transRef=%(trans_ref)s' % row
104            href += '&prodID=%(prod_id)s' % info
105            href += '&redirectURL=%(callback_url)s' % row
106            row['href'] = href
107    elif so_doc.type_description.startswith('Hostel'):
108        if (review_state == 'opened' and \
109                                  hasattr(so_doc, 'order_id') and not so_doc.resp_code) or str(member) in ('admin',):
110            row['is_requeryable'] = True
111            row['callback_url'] = "%s/payments/%s/interswitch_acco_cb" % (student.absolute_url(),
112                                                            so.getId)
113            href = '%(query_url)s' % info
114            href += '?transRef=%(trans_ref)s' % row
115            href += '&prodID=%(prod_id)s' % info
116            href += '&redirectURL=%(callback_url)s' % row
117            row['href'] = href
118    if (review_state == "closed") and so_doc.resp_code in ('SC','00','AP','IP',):
119        row['confirmed'] = 'active'
120    else:
121        row['confirmed'] = 'unsuccessful'
122    row['is_editable'] = is_so and (row['confirmed'] == 'active')
123    payments.append(row)
124
125payments.sort(cmp_id)
126info['payments'] = payments
127return info
128
Note: See TracBrowser for help on using the repository browser.