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

Last change on this file since 1164 was 1138, checked in by joachim, 18 years ago

add a total (in custom)

  • Property svn:keywords set to Id
File size: 1.7 KB
Line 
1## Script (Python) "getAccoFolderInfo"
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: getAccoFolderInfo.py 1138 2006-12-23 12:37:21Z 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['action'] = "%s" % context.absolute_url()
22info['choosen_ids'] = request.get('ids',[])
23items = []
24halls = context.portal_catalog(portal_type='AccoHall')
25for f in halls:
26    row = {}
27    fo = f.getObject()
28    fd = fo.getContent()
29    row['id'] = fo.getId()
30    row['title'] = fd.Title()
31    row['url'] = fo.absolute_url()
32    row['is_editable'] = mtool.checkPermission('Modify portal content', fo)
33    items.append(row)
34info['items'] = items
35pa = context.portal_accommodation
36bed_types = pa.uniqueValuesFor('bed_type')
37bt_list = []
38bt_names =  context.getBedTypeNames()
39reserved = pa.uniqueValuesFor('student')
40sum_total = 0
41sum_free = 0
42for bt in bed_types:
43    total = len(pa(bed_type=bt))
44    sum_total += total
45    free = len(pa.searchResults({'bed_type': bt,'student':reserved}))
46    sum_free += free
47    bt_list.append({'name': bt_names[bt],
48                    'total': total,
49                    'reserved': free,
50                    })
51bt_list.append({'name': "Total",
52                'total': sum_total,
53                'reserved': sum_free,
54                })
55info['bed_types'] = bt_list
56reserved = pa.uniqueValuesFor('student')
57res_list = []
58if reserved > 1:
59    for st in reserved:
60        if st:
61            res = pa(student=st)
62            res_list.append({'student': st, 'bed': res[0].bed })
63info['reserved'] = res_list
64
65return info
Note: See TracBrowser for help on using the repository browser.