source: WAeUP_SRP/trunk/skins/waeup_student/getStudentInfo.py @ 688

Last change on this file since 688 was 674, checked in by joachim, 18 years ago

student-view for manager works again

File size: 2.9 KB
RevLine 
[535]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 current Student
13"""
14request = context.REQUEST
[563]15form = request.form
16fget = form.get
[535]17wf = context.portal_workflow
18mtool = context.portal_membership
19member = mtool.getAuthenticatedMember()
20path_info = request.get('PATH_INFO').split('/')
[563]21roles = member.getRoles()
[535]22info = {}
[603]23info['is_manager'] = context.isManager
[659]24info['is_student'] = context.isStudent()
[535]25member_id = str(member)
[645]26if student is None:
[648]27    if context.isManager():
[646]28        if context.portal_type == 'Student':
29            student_id = context.getId()
30        else:
31            student_id = context.aq_parent.getId()
32    else:
33        student_id = member_id
[645]34else:
35    student_id = student.getId()
[648]36res = context.portal_catalog(id = student_id,portal_type='Student')
37if not res or len(res) > 1:
[639]38    return None
[648]39brain = res[-1]
[639]40student = brain.getObject()
[656]41student_path = brain.getPath()
[535]42info['review_state'] = wf.getInfoFor(student,'review_state','keiner')
43info['student'] = student
[584]44info['id'] = student.getId()
[662]45info['url'] = student.absolute_url()
[538]46info['student_doc'] = student.getContent()
[535]47info['app'] = student.application
48info['app_doc'] = student.application.getContent()
49info['per'] = student.personal
50info['per_doc'] = student.personal.getContent()
[635]51info['sex'] = 'male'
52if info['per_doc'].sex:
53    info['sex'] = 'female'
[639]54res = context.portal_catalog(container_path=student_path,
55                             portal_type='StudentAccommodation')
56if res:
57    acco = res[0].getObject()
58    info['acco'] = acco
59    info['acco_doc'] = acco.getContent()
60else:
61    info['acco'] = None
[659]62
63items = []
[672]64s_edit_links = {'StudentApplication': 'student_edit',
65              'StudentAccommodation': '',
66              'StudentPersonal': '',
67              }
[674]68s_view_links = {'StudentApplication': 'application_view',
69              'StudentAccommodation': 'accommodation_view',
70              'StudentPersonal': 'personal_view',
71              }
[659]72sos = context.portal_catalog(container_path=student_path)
[656]73for so in sos:
74    row = {}
75    soo = so.getObject()
76    sod = soo.getContent()
77    row['id'] = soo.getId()
78    row['title'] = sod.Title()
79    row['url'] = soo.absolute_url()
[659]80    row['type'] = so.portal_type
[656]81    row['is_editable'] = mtool.checkPermission('Modify portal content', soo)
[674]82    sv_link = s_view_links.get(so.portal_type,None)
83    row['s_view_link'] = None
84    if sv_link:
85        row['s_view_link'] = "%s/%s" % (student.absolute_url(),sv_link)
86    se_link = s_edit_links.get(so.portal_type,None)
87    row['s_edit_link'] = None
88    if se_link:
89        row['s_edit_link'] = "%s/%s" % (student.absolute_url(),se_link)
[659]90    row['review_state'] = so.review_state
[672]91    row['display'] = so.review_state in ('opened','closed')
[656]92    items.append(row)
93info['items'] = items
[535]94return info
Note: See TracBrowser for help on using the repository browser.