Rev | Line | |
---|
[1515] | 1 | ## Script (Python) "getStudyCourseInfo" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=student=None |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: getStudyCourseInfo.py 1504 2007-02-26 21:20:40Z henrik $ |
---|
| 11 | """ |
---|
| 12 | close the Students StudyLevel |
---|
| 13 | """ |
---|
| 14 | try: |
---|
| 15 | from Products.zdb import set_trace |
---|
| 16 | except: |
---|
| 17 | def set_trace(): |
---|
| 18 | pass |
---|
| 19 | |
---|
| 20 | request = context.REQUEST |
---|
| 21 | mtool = context.portal_membership |
---|
| 22 | member = mtool.getAuthenticatedMember() |
---|
| 23 | member_id = str(member) |
---|
| 24 | import logging |
---|
| 25 | logger = logging.getLogger('Student.reject_courses') |
---|
| 26 | |
---|
| 27 | wftool = context.portal_workflow |
---|
| 28 | wftool.doActionFor(context,'open') |
---|
| 29 | wftool.doActionFor(context,'close_for_edit') |
---|
| 30 | students_folder = context.portal_url.getPortalObject().campus.students |
---|
| 31 | student = getattr(students_folder,context.getStudentId()) |
---|
| 32 | wftool.doActionFor(student,'reject_courses') |
---|
| 33 | logger.info('"%s","rejects course list for","%s"' % (member,student.getId())) |
---|
| 34 | return request.RESPONSE.redirect("%s" % context.absolute_url()) |
---|
Note: See
TracBrowser for help on using the repository browser.