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

Last change on this file since 745 was 742, checked in by joachim, 18 years ago

added pay-hostel-maintainance fee

File size: 3.1 KB
Line 
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
15form = request.form
16fget = form.get
17wf = context.portal_workflow
18mtool = context.portal_membership
19member = mtool.getAuthenticatedMember()
20path_info = request.get('PATH_INFO').split('/')
21roles = member.getRoles()
22
23info = {}
24info['is_manager'] = context.isManager()
25info['is_student'] = context.isStudent()
26member_id = str(member)
27if student is None:
28    if context.isManager() and 'students' in path_info:
29        student_id = path_info[path_info.index('students')+1]
30    else:
31        student_id = member_id
32else:
33    student_id = student.getId()
34res = context.portal_catalog(id = student_id,portal_type='Student')
35if not res:# or len(res) > 1:
36    return None
37brain = res[-1]
38student = brain.getObject()
39student_path = brain.getPath()
40info['review_state'] = wf.getInfoFor(student,'review_state',None)
41info['student'] = student
42info['id'] = student.getId()
43info['url'] = student.absolute_url()
44info['student_doc'] = student.getContent()
45info['app'] = student.application
46info['app_doc'] = student.application.getContent()
47info['per'] = student.personal
48info['per_doc'] = student.personal.getContent()
49info['sex'] = 'male'
50if info['per_doc'].sex:
51    info['sex'] = 'female'
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()
58    info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None)
59else:
60    info['acco'] = None
61
62items = []
63s_edit_links = {'StudentApplication': 'student_edit',
64              'StudentAccommodation': '',
65              'StudentPersonal': '',
66              }
67s_view_links = {'StudentApplication': None,
68              'StudentAccommodation': None,
69              'StudentPersonal': None,
70              'StudentStudyCourse': 'study_course_view',
71              }
72sos = context.portal_catalog(container_path=student_path)
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()
80    row['type'] = so.portal_type
81    row['is_editable'] = mtool.checkPermission('Modify portal content', soo)
82    sv_link = s_view_links.get(so.portal_type,None) or "waeup_document_view"
83    row['s_view_link'] = "%s/%s" % (soo.absolute_url(),sv_link)
84    se_link = s_edit_links.get(so.portal_type,None)
85    row['s_edit_link'] = None
86    if se_link:
87        row['s_edit_link'] = "%s/%s" % (student.absolute_url(),se_link)
88    row['review_state'] = so.review_state
89    row['display'] = so.review_state in ('opened','closed',) or so.portal_type == "StudentAccommodation"
90    items.append(row)
91info['items'] = items
92request.set('student_id',student_id)
93request.set('student_url',info['url'])
94return info
Note: See TracBrowser for help on using the repository browser.