source: WAeUP_SRP/base/skins/waeup_accommodation/getAccoHallInfo.py @ 2978

Last change on this file since 2978 was 2845, checked in by joachim, 17 years ago

add sort_id, additional fields in payment

  • Property svn:keywords set to Id
File size: 2.8 KB
RevLine 
[845]1## Script (Python) "getAccoHallInfo"
[622]2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=student=None
8##title=
9##
[805]10# $Id: getAccoHallInfo.py 2845 2007-12-03 21:14:20Z joachim $
[622]11"""
[1269]12return Info about a Accommodation Hall
[622]13"""
[2845]14try:
15    from Products.zdb import set_trace
16except:
17    def set_trace():
18        pass
19   
20from Products.AdvancedQuery import Eq, Between, Le,In
[1269]21
22def cmp_bed(a,b):
23    if a['bed'] > b['bed']:
24        return 1
25    return -1
26
[622]27request = context.REQUEST
28
29wf = context.portal_workflow
30path_info = request.get('PATH_INFO').split('/')
31mtool = context.portal_membership
[2845]32portal_accommodation = context.portal_accommodation
33aq_accommodation = portal_accommodation.evalAdvancedQuery
[622]34info = {}
35#dep_id = request.get('PATH_TRANSLATED').split('/')[-2]
36dep_id = context.aq_parent.getId()
37info['action'] = "%s" % context.absolute_url()
38info['choosen_ids'] = request.get('ids',[])
39info['doc'] = context.getContent()
[2845]40bed_types = portal_accommodation.uniqueValuesFor('bed_type')
[627]41bt_list = []
42bt_names =  context.getBedTypeNames()
[2845]43res = portal_accommodation.uniqueValuesFor('student')
44all_booked = [st for st in res if st and st != 'not_occupied']
[1297]45booked_list = []
[627]46for bt in bed_types:
[2845]47    total = len(portal_accommodation(bed_type=bt,hall=context.getId()))
[1269]48    if total <= 1:
49        continue
[2845]50    booked = portal_accommodation.searchResults({'bed_type': bt,
[1297]51                                 'student':all_booked,
52                                 'hall': context.getId()})
[654]53    bt_list.append({'name': bt_names[bt],
54                    'total': total,
[1297]55                    'reserved': len(booked),
[654]56                    })
[1297]57    booked_list.extend(booked)
[2845]58# query = ~Eq('student','not_occupied')
59# beds = aq_accommodation(query,sortSpecs=('bed_type',))
60# bt_list = []
61# bt_names =  context.getBedTypeNames()
62# bt = 'xxx'
63# for bed in beds:
64#     if bt != bed.bed_type:
65#         bt = bed.bed_type
66#         total = len(aq_accommodation(Eq('bed_type',bt)))
67#         bt_list.append({'name': bt_names[bt],
68#                         'total': total,
69#                         'reserved': len(booked),
70#                        })
71     
[627]72info['bed_types'] = bt_list
[654]73res_list = []
[1269]74students_url = "%s/campus/students" % (context.portal_url())
[1297]75for sbrain in booked_list:
76    d = {}
77    st = sbrain.student
78    if not st:
79        continue
80    d['student'] = st
81    d['student_url'] ='%s/%s' % (students_url,st)
[1566]82    bed = context.getFormattedBed(sbrain.bed).split('/')
[1297]83    d['bed'] = " / ".join(bed[1:])
84    erg = context.students_catalog(id = st)
85    if erg:
86        sd = context.getFormattedStudentEntry(erg[0])
87        d.update(sd)
[1914]88    else:
89        #d['student'] = None
90        d['student_url'] = None
91        #d['bed'] = None
92        d['name'] = 'Student record removed'
[1297]93    res_list.append(d)
[1269]94res_list.sort(cmp_bed)
[654]95info['reserved'] = res_list
[627]96
[622]97return info
Note: See TracBrowser for help on using the repository browser.