[1596] | 1 | ## Script (Python) "reject_courses" |
---|
[1515] | 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
[1597] | 7 | ##parameters=REQUEST=None, student=None, action_after_reject=None, action_after_validate=None |
---|
[1515] | 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: getStudyCourseInfo.py 1504 2007-02-26 21:20:40Z henrik $ |
---|
| 11 | """ |
---|
| 12 | close the Students StudyLevel |
---|
| 13 | """ |
---|
[1597] | 14 | from Products.CMFCore.WorkflowCore import WorkflowException |
---|
[1515] | 15 | try: |
---|
| 16 | from Products.zdb import set_trace |
---|
| 17 | except: |
---|
| 18 | def set_trace(): |
---|
| 19 | pass |
---|
[1596] | 20 | from urllib import urlencode |
---|
[1515] | 21 | request = context.REQUEST |
---|
| 22 | mtool = context.portal_membership |
---|
| 23 | member = mtool.getAuthenticatedMember() |
---|
| 24 | member_id = str(member) |
---|
| 25 | import logging |
---|
[1596] | 26 | logger = logging.getLogger('Skins.reject_courses') |
---|
[1515] | 27 | |
---|
| 28 | wftool = context.portal_workflow |
---|
| 29 | wftool.doActionFor(context,'open') |
---|
| 30 | wftool.doActionFor(context,'close_for_edit') |
---|
| 31 | students_folder = context.portal_url.getPortalObject().campus.students |
---|
[1597] | 32 | student_id = context.getStudentId() |
---|
| 33 | student = getattr(students_folder,student_id) |
---|
| 34 | try: |
---|
| 35 | wftool.doActionFor(student,'reject_courses') |
---|
| 36 | except WorkflowException,E: |
---|
| 37 | logger.info('%s WorkflowException %s for %s' % (member_id,E,student_id)) |
---|
| 38 | return request.RESPONSE.redirect("%s" % context.absolute_url()) |
---|
| 39 | logger.info('%s rejected course list of %s' % (member_id,student_id)) |
---|
[1596] | 40 | |
---|
| 41 | args = {} |
---|
| 42 | |
---|
| 43 | psm = "Student's course list has been rejected! Please fill and submit the form below!" |
---|
| 44 | subject = "Course list rejected" |
---|
| 45 | args['subject'] = subject |
---|
| 46 | args['continue'] = action_after_validate |
---|
| 47 | args['portal_status_message'] = psm |
---|
| 48 | url = context.absolute_url() + '/' + action_after_reject + '?' + urlencode(args) |
---|
| 49 | return REQUEST.RESPONSE.redirect(url) |
---|