source: WAeUP_SRP/trunk/skins/waeup_accommodation/getAccoHallInfo.py @ 913

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

is_* keys removed from get* functions

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1## Script (Python) "getAccoHallInfo"
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##
10# $Id: getAccoHallInfo.py 913 2006-11-21 10:49:45Z henrik $
11"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17path_info = request.get('PATH_INFO').split('/')
18mtool = context.portal_membership
19pa = context.portal_accommodation
20info = {}
21#dep_id = request.get('PATH_TRANSLATED').split('/')[-2]
22dep_id = context.aq_parent.getId()
23info['action'] = "%s" % context.absolute_url()
24info['choosen_ids'] = request.get('ids',[])
25info['doc'] = context.getContent()
26bed_types = pa.uniqueValuesFor('bed_type')
27bt_list = []
28bt_names =  context.getBedTypeNames()
29reserved = pa.uniqueValuesFor('student')
30for bt in bed_types:
31    total = len(pa(bed_type=bt,hall=context.getId()))
32    free = len(pa.searchResults({'bed_type': bt,
33                                 'student':reserved,
34                                 'hall': context.getId()}))
35    bt_list.append({'name': bt_names[bt],
36                    'total': total,
37                    'reserved': free,
38                    })
39info['bed_types'] = bt_list
40res_list = []
41students_rpath = context.portal_catalog(meta_type = "StudentsFolder")[-1].relative_path
42students_url = "%s/%s" % (context.portal_url(),students_rpath)
43if reserved > 1:
44    for st in reserved:
45        if st:
46            res = pa(hall=context.getId(),student=st)
47            if res:
48                res_list.append({'student': st,
49                                 'student_url': '%s/%s' % (students_url,st),
50                                 'bed': context.formatBed(res[0].bed) })
51info['reserved'] = res_list
52
53return info
Note: See TracBrowser for help on using the repository browser.