source: WAeUP_SRP/trunk/skins/waeup_utilities/unpay.py @ 1464

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

manual workflow transition utility

File size: 882 bytes
Line 
1## Script (Python) "unpay"
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: epayment_cb.py 1348 2007-01-25 17:06:21Z henrik $
11"""
12payment callback
13"""
14import logging
15logger = logging.getLogger('EPayment.Unpay')
16import DateTime
17
18request = context.REQUEST
19students = context.portal_url.getPortalObject().campus.students
20wftool = context.portal_workflow
21student_id = context.getStudentId()
22if student_id is None:
23    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
24
25student = getattr(students,student_id)
26
27#wftool.doActionFor(student,'return')
28wftool.doActionFor(student,'clear_and_validate')
29logger.info('"%s", "reset to state returning"' % student_id)
30
31return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url())
Note: See TracBrowser for help on using the repository browser.