[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 913 2006-11-21 10:49:45Z henrik $ |
---|
[622] | 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 |
---|
[627] | 19 | pa = context.portal_accommodation |
---|
[622] | 20 | info = {} |
---|
| 21 | #dep_id = request.get('PATH_TRANSLATED').split('/')[-2] |
---|
| 22 | dep_id = context.aq_parent.getId() |
---|
| 23 | info['action'] = "%s" % context.absolute_url() |
---|
| 24 | info['choosen_ids'] = request.get('ids',[]) |
---|
| 25 | info['doc'] = context.getContent() |
---|
[627] | 26 | bed_types = pa.uniqueValuesFor('bed_type') |
---|
| 27 | bt_list = [] |
---|
| 28 | bt_names = context.getBedTypeNames() |
---|
[654] | 29 | reserved = pa.uniqueValuesFor('student') |
---|
[627] | 30 | for bt in bed_types: |
---|
[702] | 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()})) |
---|
[654] | 35 | bt_list.append({'name': bt_names[bt], |
---|
| 36 | 'total': total, |
---|
| 37 | 'reserved': free, |
---|
| 38 | }) |
---|
[627] | 39 | info['bed_types'] = bt_list |
---|
[654] | 40 | res_list = [] |
---|
[695] | 41 | students_rpath = context.portal_catalog(meta_type = "StudentsFolder")[-1].relative_path |
---|
| 42 | students_url = "%s/%s" % (context.portal_url(),students_rpath) |
---|
[654] | 43 | if reserved > 1: |
---|
| 44 | for st in reserved: |
---|
| 45 | if st: |
---|
| 46 | res = pa(hall=context.getId(),student=st) |
---|
| 47 | if res: |
---|
[695] | 48 | res_list.append({'student': st, |
---|
| 49 | 'student_url': '%s/%s' % (students_url,st), |
---|
| 50 | 'bed': context.formatBed(res[0].bed) }) |
---|
[654] | 51 | info['reserved'] = res_list |
---|
[627] | 52 | |
---|
[622] | 53 | return info |
---|