source: WAeUP_SRP/trunk/skins/waeup_utilities/changeRegState.py @ 4098

Last change on this file since 4098 was 3795, checked in by Henrik Bettermann, 16 years ago

fix accommodation payment futminna

File size: 1.4 KB
Line 
1## Script (Python) "changeRegState"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=REQUEST,transition=None
8##title=
9##
10# $Id: epayment_cb.py 1348 2007-01-25 17:06:21Z henrik $
11"""
12execute transition
13"""
14
15mtool = context.portal_membership
16member = mtool.getAuthenticatedMember()
17
18#if str(member) not in ('admin','joachim') or transition is None:
19#    return 'Forbidden!'
20   
21if not context.isSectionOfficer() or transition is None:
22    return 'Forbidden!'   
23
24import logging
25logger = logging.getLogger('Skins.changeRegState')
26
27pm = context.portal_membership
28member = pm.getAuthenticatedMember()
29
30request = context.REQUEST
31#students = context.portal_url.getPortalObject().campus.students
32wftool = context.portal_workflow
33student_id = context.getStudentId()
34context_doc = context
35if student_id is None:
36    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
37#student = getattr(students,student_id)
38#context_doc = student
39try:
40    wftool.doActionFor(context_doc,transition)
41    logger.info('%s executed transition %s for %s' % (member,transition,student_id))
42except:
43    logger.info('%s tried to execute transition %s for %s, transition not allowed' % (member,transition,student_id))
44    return 'Transition not allowed!'
45
46return request.RESPONSE.redirect("%s" % context.absolute_url())
Note: See TracBrowser for help on using the repository browser.