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