source: WAeUP_SRP/base/skins/waeup_epayment/getPaymentsFolderInfo.py @ 2461

Last change on this file since 2461 was 2461, checked in by joachim, 17 years ago

include reasons if payment is not possible

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