source: WAeUP_SRP/base/skins/waeup_accommodation/change_bed.py @ 3165

Last change on this file since 3165 was 3165, checked in by Henrik Bettermann, 17 years ago

fix syntax error

  • Property svn:keywords set to Id
File size: 4.8 KB
Line 
1## Script (Python) "change_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: change_bed.py 3165 2008-02-14 20:17:36Z henrik $
11"""
12relocate to a new bed if allocated bed is wrong
13"""
14import logging
15from Products.AdvancedQuery import Eq, Between, Le,In
16
17logger = logging.getLogger('Skins.change_bed')
18request = context.REQUEST
19redirect = request.RESPONSE.redirect
20mtool = context.portal_membership
21wf = context.portal_workflow
22member = mtool.getAuthenticatedMember()
23member_id = str(member)
24path_info = request.get('PATH_INFO').split('/')
25
26if mtool.isAnonymousUser():
27    return None
28students = context.portal_url.getPortalObject().campus.students
29beds = context.portal_accommodation
30studs = context.students_catalog
31student_id = context.getStudentId()
32
33if student_id is not None:
34    logger.info('%s requests bed change for %s' % (member_id,student_id))
35    info = context.getAccommodationInfo(student_id)
36    if info['acco'] is None:
37        logger.info('No accommodation object for %s' % (student_id))
38        return redirect("%s/%s/no_booking_allowed" % (students.absolute_url(),student_id))
39    res = beds(student=student_id)
40    status = info['student_status']
41    while True:
42        if len(res) == 0:
43            psm = 'No bed allocated for %s' % (student_id)
44            logger.info(psm)
45            break
46        allocated_bed = res[0]
47        if allocated_bed.bed_type == status:
48            logger.info('Status %s of %s has not changed' % (status,student_id))
49            psm='Student status has not changed!'
50            break
51            #return redirect("%s/%s/%s/waeup_document_view?portal_status_message=%s" % (students.absolute_url(),student_id,info['acco_id'],psm))
52        logger.info('Bed status %s of %s has changed to %s' % (allocated_bed.bed_type,student_id,status))
53        query = Eq('bed_type',status) & Eq('student',context.portal_accommodation.not_occupied)
54        records = context.portal_accommodation.evalAdvancedQuery(query)
55        if len(records) < 1:
56            psm='New bed allocation for %s failed, No bed free in category %s' % (student_id,status)
57            logger.info(psm)
58            psm='Bed change failed!'
59            break
60        beds.modifyRecord(bed=allocated_bed.bed,student=beds.not_occupied)
61        logger.info('Bed %s released' % (allocated_bed.bed))
62        code,bed = beds.searchAndReserveBed(student_id,status)
63        if code > 0:
64            d = {}
65            d['bed'] = bed
66            d['student_status'] = status
67            acco_info = context.waeup_tool.getHallInfo(bed)
68            d['acco_maint_code'] = acco_info.get('maintenance_code')
69            d['acco_maint_fee'] = acco_info.get('maintenance_fee')
70            acco_doc = info['acco_doc']
71            acco_doc.edit(mapping=d)
72            logger.info('Bed %s allocated to %s' % (bed,student_id))
73            psm='Bed changed!'
74            break
75            #return redirect("%s/%s/%s/waeup_document_view?portal_status_message=%s" % (students.absolute_url(),student_id,info['acco_id'],psm))
76        #acco_doc = info['acco_doc']
77        #acco_doc.edit(mapping={'bed':"-- cancelled by officer due to failed bed change request --"})
78        logger.info('New bed allocation for %s failed, code = %s' % (student_id,code))
79        #logger.info('%s cancelled booking of bed %s by %s' % (member,bed,student_id))
80        psm='Bed change failed!'
81    return redirect("%s/%s/%s/waeup_document_view?portal_status_message=%s" % (students.absolute_url(),student_id,info['acco_id'],psm))
82
83info = {}
84records = [r for r in beds() if  r.student]
85list = []
86to_modify = []
87for r in records:
88    info = context.getAccommodationInfo(r.student)
89    sbt = info.get('student_status',None)
90    if sbt is None:
91        continue
92    elif r.bed_type == sbt:
93        list.append("Student %s bed_type %s ok" % (r.student,r.bed_type))
94        continue
95    list.append("Student %s bed_type %s != %s" % (r.student,
96                                                  r.bed_type,
97                                                  info['student_status']))
98    to_modify.append((r.bed,r.student,info['student_status'],info['acco_doc']))
99for former_bed, student, status,acco_doc in to_modify:
100    beds.modifyRecord(bed=former_bed,student='')
101    code,bed = beds.searchAndReserveBed(student,status)
102    if code > 0:
103        #from Products.zdb import set_trace; set_trace()
104        d = {}
105        d['bed'] = bed
106        d['student_status'] = status
107        acco_info = context.waeup_tool.getHallInfo(bed)
108        d['acco_maint_code'] = acco_info.get('maintenance_code')
109        d['acco_maint_fee'] = acco_info.get('maintenance_fee')
110        acco_doc.edit(mapping=d)
111        list.append("New bed %s allocated to %s, code = %s" % (bed,
112                                                              student,
113                                                              code))
114return "\r".join(list)
Note: See TracBrowser for help on using the repository browser.