[622] | 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 | """ |
---|
| 12 | return Info about the Faculties |
---|
| 13 | """ |
---|
| 14 | request = context.REQUEST |
---|
| 15 | |
---|
| 16 | wf = context.portal_workflow |
---|
| 17 | mtool = context.portal_membership |
---|
| 18 | path_info = request.get('PATH_INFO').split('/') |
---|
| 19 | |
---|
| 20 | info = {} |
---|
| 21 | info['is_manager'] = context.isManager() |
---|
| 22 | info['is_student'] = context.isStudent() |
---|
| 23 | info['action'] = "%s" % context.campus.absolute_url() |
---|
| 24 | info['choosen_ids'] = request.get('ids',[]) |
---|
| 25 | items = [] |
---|
| 26 | halls = context.portal_catalog(portal_type='AccoHall') |
---|
| 27 | for 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) |
---|
| 36 | info['items'] = items |
---|
[626] | 37 | pa = context.portal_accommodation |
---|
| 38 | bed_types = pa.uniqueValuesFor('bed_type') |
---|
| 39 | bt_list = [] |
---|
[627] | 40 | bt_names = context.getBedTypeNames() |
---|
[626] | 41 | for bt in bed_types: |
---|
| 42 | res = pa(bed_type=bt) |
---|
[627] | 43 | bt_list.append({'name': bt_names[bt], 'count': len(res)}) |
---|
[626] | 44 | info['bed_types'] = bt_list |
---|
| 45 | reserved = pa.uniqueValuesFor('student') |
---|
| 46 | res_list = [] |
---|
| 47 | if reserved > 1: |
---|
| 48 | for st in reserved: |
---|
| 49 | if st: |
---|
| 50 | res = pa(student=st) |
---|
| 51 | bt_list.append({'student': st, 'bed': res[0].bed }) |
---|
| 52 | info['reserved'] = res_list |
---|
| 53 | |
---|
[622] | 54 | return info |
---|