source: WAeUP_SRP/branches/joachim-event-branch/skins/waeup_accommodation/release_bed.py @ 1596

Last change on this file since 1596 was 1596, checked in by joachim, 18 years ago

merged changes from trunk to joachim-event-branch

  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1## Script (Python) "release_bed"
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: release_bed.py 1596 2007-03-19 21:45:44Z joachim $
11"""
12release an allocated bed
13"""
14import logging
15logger = logging.getLogger('Skins.release_bed')
16
17request = context.REQUEST
18redirect = request.RESPONSE.redirect
19mtool = context.portal_membership
20wf = context.portal_workflow
21member = mtool.getAuthenticatedMember()
22member_id = str(member)
23path_info = request.get('PATH_INFO').split('/')
24
25if mtool.isAnonymousUser():
26    return None
27students = context.portal_url.getPortalObject().campus.students
28acco_cat = context.portal_accommodation
29#stud_cat = context.students_catalog
30student_id = context.getStudentId()
31try:
32    from Products.zdb import set_trace
33except:
34    def set_trace():
35        return
36#set_trace()
37if student_id is not None:
38    logger.info('%s requests bed_release for %s' % (member_id,student_id))
39    res = acco_cat(student=student_id)
40    if len(res) == 0:
41        logger.info('no bed of %s found' % (student_id))
42        redirect("%s/%s" % (students.absolute_url(),student_id))
43    allocated_bed = res[0]
44    acco_cat.modifyRecord(bed=allocated_bed.bed,student='')
45    acco_doc = context.getContent()
46    acco_doc.edit(mapping={'bed':"-- cancelled by section officer --"})
47    logger.info('%s released bed of %s' % (member_id,student_id))
48    redirect("%s" % (context.absolute_url()))
49
Note: See TracBrowser for help on using the repository browser.