source: WAeUP_SRP/trunk/skins/waeup_accommodation/getAccoFolderInfo.py @ 783

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

some improvements to accommodation views

File size: 1.6 KB
Line 
1## Script (Python) "cpsdocument_edit"
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: student_edit.py 486 2006-09-06 10:09:39Z joachim $
11"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17mtool = context.portal_membership
18path_info = request.get('PATH_INFO').split('/')
19
20info = {}
21info['is_manager'] = context.isManager()
22info['is_student'] = context.isStudent()
23info['action'] = "%s" % context.absolute_url()
24info['choosen_ids'] = request.get('ids',[])
25items = []
26halls = context.portal_catalog(portal_type='AccoHall')
27for f in halls:
28    row = {}
29    fo = f.getObject()
30    fd = fo.getContent()
31    row['id'] = fo.getId()
32    row['title'] = fd.Title()
33    row['url'] = fo.absolute_url()
34    row['is_editable'] = mtool.checkPermission('Modify portal content', fo)
35    items.append(row)
36info['items'] = items
37pa = context.portal_accommodation
38bed_types = pa.uniqueValuesFor('bed_type')
39bt_list = []
40bt_names =  context.getBedTypeNames()
41reserved = pa.uniqueValuesFor('student')
42for bt in bed_types:
43    total = len(pa(bed_type=bt))
44    free = len(pa.searchResults({'bed_type': bt,'student':reserved}))
45    bt_list.append({'name': bt_names[bt],
46                    'total': total,
47                    'reserved': free,
48                    })
49info['bed_types'] = bt_list
50reserved = pa.uniqueValuesFor('student')
51res_list = []
52if reserved > 1:
53    for st in reserved:
54        if st:
55            res = pa(student=st)
56            res_list.append({'student': st, 'bed': res[0].bed })
57info['reserved'] = res_list
58
59return info
Note: See TracBrowser for help on using the repository browser.