Last change
on this file since 1062 was
1001,
checked in by joachim, 18 years ago
|
double call in raise_objection fixed (in custom)
pins_view faster (not in custom)
|
File size:
757 bytes
|
Rev | Line | |
---|
[863] | 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 | """ |
---|
| 12 | raise an objection 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={'objection_date':current,}) |
---|
[1001] | 25 | if info['review_state'] == "admitted": |
---|
| 26 | wf.doActionFor(info['student'],'raise_objection') |
---|
| 27 | return context.objection_raised_form(info=info) |
---|
| 28 | return context.admission_form() |
---|
Note: See
TracBrowser for help on using the repository browser.