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 3156 2008-02-13 16:33:21Z joachim $ |
---|
11 | """ |
---|
12 | relocate to a new bed if allocated bed is wrong |
---|
13 | """ |
---|
14 | import logging |
---|
15 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
16 | |
---|
17 | logger = logging.getLogger('Skins.change_bed') |
---|
18 | request = context.REQUEST |
---|
19 | redirect = request.RESPONSE.redirect |
---|
20 | mtool = context.portal_membership |
---|
21 | wf = context.portal_workflow |
---|
22 | member = mtool.getAuthenticatedMember() |
---|
23 | member_id = str(member) |
---|
24 | path_info = request.get('PATH_INFO').split('/') |
---|
25 | |
---|
26 | if mtool.isAnonymousUser(): |
---|
27 | return None |
---|
28 | students = context.portal_url.getPortalObject().campus.students |
---|
29 | beds = context.portal_accommodation |
---|
30 | studs = context.students_catalog |
---|
31 | student_id = context.getStudentId() |
---|
32 | |
---|
33 | if 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 | |
---|
83 | info = {} |
---|
84 | records = [r for r in beds() if r.student] |
---|
85 | list = [] |
---|
86 | to_modify = [] |
---|
87 | for 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'])) |
---|
99 | for 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)) |
---|
114 | return "\r".join(list) |
---|