source: WAeUP_SRP/trunk/skins/waeup_student/raise_objection.py @ 886

Last change on this file since 886 was 863, checked in by Henrik Bettermann, 18 years ago

state deferred moved to the end of the workflow
objection_raised (raise_objection) instead of deferment by student
(not yet tested)

File size: 678 bytes
Line 
1## Script (Python) "raise_objection"
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:defer_admission.py 486 2006-09-06 10:09:39Z joachim $
11"""
12raise an objection and print Info.
13"""
14import DateTime
15current = DateTime.DateTime()
16request = context.REQUEST
17wf = context.portal_workflow
18mtool = context.portal_membership
19member = mtool.getAuthenticatedMember()
20roles = member.getRoles()
21
22info = context.getStudentInfo()
23
24info['app_doc'].edit(mapping={'objection_date':current,})
25wf.doActionFor(info['student'],'raise_objection')
26return context.objection_raised_view(info=info)
Note: See TracBrowser for help on using the repository browser.