source: WAeUP_SRP/base/skins/waeup_epayment/approve_epayment.py @ 3310

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

merge callback scripts and more

File size: 2.3 KB
Line 
1## Script (Python) "approve_epayment"
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: aprove_epayment.py 1425 2007-02-15 17:52:01Z joachim $
11"""
12"""
13import logging
14logger = logging.getLogger('Skins.approve_epayment')
15import DateTime
16if context.portal_membership.isAnonymousUser():
17    return None
18
19request = context.REQUEST
20students = context.portal_url.getPortalObject().campus.students
21wftool = context.portal_workflow
22mtool = context.portal_membership
23is_anon = mtool.isAnonymousUser()
24member = mtool.getAuthenticatedMember()
25student_id = context.getStudentId()
26is_so = context.isSectionOfficer()
27if student_id is None or not is_so:
28    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
29
30student = getattr(students,student_id)
31
32s_brain = context.students_catalog(id=student_id)[0]
33session = s_brain.session
34
35next_info = context.getNextInfo(s_brain)
36next_session_id = next_info['next_session_id']
37next_session_str = next_info['next_session_str']
38next_level_id = next_info['next_level_id']
39next_transition = next_info['next_transition']
40next_verdict = next_info['next_verdict']
41
42pd = {}
43doc = context.getContent()
44pd['resp_code'] = 'AP'
45pd['resp_desc'] = 'Payment approved by %s, %s' % (member,DateTime.DateTime())
46pd['status'] = 'paid'
47doc.edit(mapping=pd)
48
49#if doc.type_description.startswith('School Fee'):
50#    study_course = getattr(student,'study_course')
51#    try:
52#        wftool.doActionFor(study_course,'open')
53#    except:
54#        pass
55#    verdict = s_brain.verdict
56#    if verdict == 'N/A':
57#        verdict = ''
58#    study_course.getContent().edit(mapping= {'current_level': next_level_id,
59#                                             'current_session': next_session_id,
60#                                             'current_verdict': next_verdict,
61#                                             'previous_verdict': verdict,
62#                                             })
63#    if next_transition:
64#        wftool.doActionFor(student,next_transition)
65
66logger.info('%s approves epayment for %s' % (member,student_id))
67review_state = wftool.getInfoFor(context,'review_state',None)
68if review_state == 'opened':
69    wftool.doActionFor(context,'close')
70return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url())
Note: See TracBrowser for help on using the repository browser.