source: WAeUP_SRP/trunk/skins/waeup_student/getStudentFolderInfo.py @ 5607

Last change on this file since 5607 was 5161, checked in by Henrik Bettermann, 14 years ago

remove some unused lines

  • Property svn:keywords set to Id
File size: 4.3 KB
Line 
1## Script (Python) "getStudentFolderInfo"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=with_items=None
8##title=
9##
10# $Id: getStudentFolderInfo.py 5161 2010-04-20 14:44:54Z henrik $
11"""
12return Info about the current Student
13try:
14    from Products.zdb import set_trace
15except:
16    def set_trace():
17        pass
18"""
19import DateTime
20request = context.REQUEST
21form = request.form
22fget = form.get
23wf = context.portal_workflow
24mtool = context.portal_membership
25member = mtool.getAuthenticatedMember()
26path_info = request.get('PATH_INFO').split('/')
27
28import logging
29logger = logging.getLogger('Skins.getStudentFolderInfo')
30from Products.AdvancedQuery import Eq, Between, Le,In
31
32
33member_id = str(member)
34
35info = context.waeup_tool.getAccessInfo(context)
36student_id = info['student_id']
37if student_id is None:
38    return None
39
40student_path_root = "%s/campus/students/%s" % (context.portal_url.getPortalPath(),student_id)
41student_path = "%s/campus/students/%s" % (context.portal_url(),student_id)
42students_folder = context.portal_url.getPortalObject().campus.students
43
44student_record = context.students_catalog.getRecordByKey(student_id)
45if student_record is None:
46    return None
47
48#from Products.zdb import set_trace;set_trace()
49for field in context.students_catalog.schema():
50    info[field] = getattr(student_record,field)
51
52#info['review_state'] = context.getStudentReviewState()
53
54info['session'] = False
55if student_record.matric_no and 'uniben' in context.portal_url.getPortalPath():
56    res = context.results_import(matric_no = student_record.matric_no)
57    if res:
58       info['session'] = True
59
60info['base_info'] = context.getFormattedStudentEntry(student_record)
61
62info['id'] = student_id
63items = []
64s_edit_links = {'StudentApplication': 'application_edit_form',
65              'StudentAccommodation': 'reserve_accommodation',
66              'StudentClearance': 'clearance_edit_form',
67              'StudentPersonal': 'personal_edit_form',
68              }
69s_view_links = {'StudentApplication': 'application_view',
70              'StudentAccommodation': 'accommodation_view',
71              'StudentClearance': 'clearance_view',
72              'StudentPersonal': 'personal_view',
73              'StudentStudyCourse': 'study_course_view',
74              'PaymentsFolder': 'payments_view',
75              }
76s_view_titles = context.getStudentObjectTitles()
77
78student_obj = getattr(students_folder,student_id)
79subobjects = student_obj.objectValues()
80
81for subobject in subobjects:
82    row = {}
83    row['id'] = subobject.getId()
84    if subobject.portal_type == 'StudentAccommodation':
85        row['title'] = s_view_titles.get(subobject.portal_type,'') +' for Session %s' %\
86                       context.portal_vocabularies.sessions.get(subobject.getContent().session)
87        #row['title'] = s_view_titles.get(subobject.portal_type,'') +' %s' %subobject.getContent().session
88    else:
89        row['title'] = s_view_titles.get(subobject.portal_type,'')
90    url = row['url'] = subobject.absolute_url()
91    row['type'] = subobject.portal_type
92    review_state = row['review_state'] = wf.getInfoFor(subobject,'review_state',None)
93    row['is_editable'] = (info['is_student'] and review_state == "opened") or info['is_sectionofficer']
94    sv_link = s_view_links.get(subobject.portal_type,None) or "waeup_document_view"
95    row['s_view_link'] = "%s/%s" % (url,sv_link)
96    se_link = s_edit_links.get(subobject.portal_type,None)
97    row['s_edit_link'] = None
98    if se_link:
99        row['s_edit_link'] = "%s/%s" % (url,se_link)
100    row['display'] = review_state in ('opened','closed','bed_reserved','maintenance_fee_paid',)\
101                    and subobject.portal_type not in  ('StudentPume','StudentAccommodation','PaymentsFolder',) or\
102                    subobject.portal_type == 'StudentStudyCourse'
103    items.append(row)
104
105items.sort(cmp=lambda x,y: cmp( x['title'],y['title']))
106info['items'] = items
107info['member'] = member
108
109try:
110    current_level = int(info['level'])
111except:
112    current_level = 0
113info['transition_return_allowed'] = info['review_state'] in ('school_fee_paid','courses_validated','graduated') and info['is_sectionofficer'] # and current_level > 100
114info['transition_pay_school_fee_allowed'] = info['review_state'] == 'returning' and info['is_sectionofficer']
115info['transition_admit_allowed'] = info['review_state'] == 'returning' and info['is_sectionofficer']
116
117return info
118
Note: See TracBrowser for help on using the repository browser.