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

Last change on this file since 650 was 648, checked in by joachim, 19 years ago

fixed bug in getStudentInfo isManager() instead of isManager
fixed s_id bug

File size: 1.7 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
[535]24member_id = str(member)
[645]25if student is None:
[648]26    if context.isManager():
[646]27        if context.portal_type == 'Student':
28            student_id = context.getId()
29        else:
30            student_id = context.aq_parent.getId()
31    else:
32        student_id = member_id
[645]33else:
34    student_id = student.getId()
[648]35res = context.portal_catalog(id = student_id,portal_type='Student')
36if not res or len(res) > 1:
[639]37    return None
[648]38brain = res[-1]
[639]39student = brain.getObject()
40student_path = brain.getPath()   
[535]41info['review_state'] = wf.getInfoFor(student,'review_state','keiner')
42info['student'] = student
[584]43info['id'] = student.getId()
[538]44info['student_doc'] = student.getContent()
[535]45info['app'] = student.application
46info['app_doc'] = student.application.getContent()
47info['per'] = student.personal
48info['per_doc'] = student.personal.getContent()
[635]49info['sex'] = 'male'
50if info['per_doc'].sex:
51    info['sex'] = 'female'
[639]52res = context.portal_catalog(container_path=student_path,
53                             portal_type='StudentAccommodation')
54if res:
55    acco = res[0].getObject()
56    info['acco'] = acco
57    info['acco_doc'] = acco.getContent()
58else:
59    info['acco'] = None
[535]60return info
Note: See TracBrowser for help on using the repository browser.