Last change
on this file since 852 was
845,
checked in by Henrik Bettermann, 18 years ago
|
script names corrected
|
-
Property svn:keywords set to
Id
|
File size:
651 bytes
|
Rev | Line | |
---|
[845] | 1 | ## Script (Python) "defer_admission" |
---|
[785] | 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 | ## |
---|
[801] | 10 | # $Id:defer_admission.py 486 2006-09-06 10:09:39Z joachim $ |
---|
[785] | 11 | """ |
---|
| 12 | defer student and print Info. |
---|
| 13 | """ |
---|
| 14 | import DateTime |
---|
| 15 | current = DateTime.DateTime() |
---|
| 16 | request = context.REQUEST |
---|
| 17 | wf = context.portal_workflow |
---|
| 18 | mtool = context.portal_membership |
---|
| 19 | member = mtool.getAuthenticatedMember() |
---|
| 20 | roles = member.getRoles() |
---|
| 21 | |
---|
| 22 | info = context.getStudentInfo() |
---|
| 23 | |
---|
| 24 | info['app_doc'].edit(mapping={'defer_date':current,}) |
---|
| 25 | wf.doActionFor(info['student'],'defer') |
---|
[803] | 26 | return context.defersvn_view(info=info) |
---|
Note: See
TracBrowser for help on using the repository browser.