source: WAeUP_SRP/base/skins/waeup_epayment/pay_by_sc.py @ 2782

Last change on this file since 2782 was 2678, checked in by Henrik Bettermann, 17 years ago
  • fix previous_verdict for payments in session 04
  • fix missing_data notice
  • Property svn:keywords set to Id
File size: 4.3 KB
Line 
1## Script (Python) "pay_by_sc"
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: pay_by_sc.py 2678 2007-11-16 13:41:44Z henrik $
11"""
12pay online
13"""
14import logging
15from urllib import urlencode
16logger = logging.getLogger('Skins.pay_by_sc')
17import DateTime
18try:
19    from Products.zdb import set_trace
20except:
21    def set_trace():
22        pass
23
24if context.portal_membership.isAnonymousUser():
25    return None
26wftool = context.portal_workflow
27lt = context.portal_layouts
28request = context.REQUEST
29students = context.portal_url.getPortalObject().campus.students
30student_id = context.getStudentId()
31if student_id is None:
32    return request.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
33
34student = getattr(students,student_id)
35s_brain = context.students_catalog(id=student_id)[0]
36
37# session = s_brain.session
38# next_session, next_session_str = context.getNextSessionId(session)
39
40next_info = context.getNextInfo(s_brain)
41next_session_id = next_info['next_session_id']
42next_session_str = next_info['next_session_str']
43next_level_id = next_info['next_level_id']
44next_transition = next_info['next_transition']
45next_verdict = next_info['next_verdict']
46next_previous_verdict = next_info['next_previous_verdict']
47
48validate = request.has_key("cpsdocument_create_button")
49res,psm,ds = lt.renderLayout(layout_id= 'student_schoolfee',
50                      schema_id= 'payment',
51                      context=context,
52                      mapping=validate and request,
53                      ob={},
54                      layout_mode="create",
55                      formaction = "pay_by_sc",
56                      button = 'Pay',
57                      commit = False,
58                      )
59if psm == 'invalid':
60    psm = 'Please correct your errors!'
61    return context.pay_by_sc_form(rendered = res,
62                                 psm = psm,
63                                 mode = 'edit',
64                                 next_session_str = next_session_str,
65                                 ds = ds,
66                                 )
67elif psm == '':
68    return context.pay_by_sc_form(rendered = res,
69                                 psm = None,
70                                 mode = 'edit',
71                                 next_session_str = next_session_str,
72                                 ds = ds,
73                                 )
74elif psm == 'valid':
75    pass
76if "payments" not in student.objectIds():
77    student.invokeFactory('PaymentsFolder','payments')
78    payments = getattr(student,'payments')
79    d = {}
80    d['Title'] = 'Payments'
81    payments.getContent().edit(mapping=d)
82    wftool.doActionFor(payments,'open')
83else:
84    payments = getattr(student,'payments')
85#from Products.zdb import set_trace; set_trace()
86info = {}
87p_id = "p%s" % ds.get('pin_n')
88pin = str(ds.get('pin'))
89try:
90    cost = context.portal_pins(pin="".join(pin.split('-')))[0].cost
91except:
92    cost = "n/a"
93try:
94    x = float(cost)
95except:
96    cost = "n/a"
97
98if not hasattr(payments,p_id):
99    now = DateTime.DateTime()
100    info['date'] = now
101    info['amount'] = cost
102    pin = info['order_id'] = "%s" % pin
103    info['type_code'] = "%s" % pin  #type_code is redundant and will be removed soon
104    info['type_description'] = 'School Fee for Session %s' % next_session_str
105    info['resp_code'] = "SC"
106    info['resp_desc'] = "SC Payment Successful"
107    payments.invokeFactory('Payment', p_id)
108    payment = getattr(payments,p_id)
109    wftool = context.portal_workflow
110    wftool.doActionFor(payment,'open')
111    payment.getContent().edit(mapping=info)
112    wftool.doActionFor(payment,'close')
113
114    study_course = getattr(student,'study_course')
115    try:
116        wftool.doActionFor(study_course,'open')
117    except:
118        pass
119    study_course.getContent().edit(mapping= {'current_level': next_level_id,
120                                             'current_session': next_session_id,
121                                             'current_verdict': next_verdict,
122                                             'previous_verdict': next_previous_verdict,
123                                             })
124    if next_transition:
125        wftool.doActionFor(student,next_transition)
126
127    logger.info('%s paid school fee by scratch card' % student_id)
128else:
129    logger.info('%s repeatedly paid school fee by scratch card' % student_id)
130url = "%s/payments" % (student.absolute_url())
131request.RESPONSE.redirect(url)
132
Note: See TracBrowser for help on using the repository browser.