source: WAeUP_SRP/trunk/skins/waeup_student/defer_admission.py @ 850

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

script names corrected

  • Property svn:keywords set to Id
File size: 651 bytes
Line 
1## Script (Python) "defer_admission"
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"""
12defer student 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={'defer_date':current,})
25wf.doActionFor(info['student'],'defer')
26return context.defersvn_view(info=info)
Note: See TracBrowser for help on using the repository browser.