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

Last change on this file since 4392 was 3868, checked in by Henrik Bettermann, 16 years ago
  • provide button return button for graduated students
  • reenable special_handling field for Okene
  • Property svn:keywords set to Id
File size: 4.4 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 3868 2009-01-21 18:20:33Z 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
31try:
32    aq_portal = context.portal_catalog.evalAdvancedQuery
33except:
34    aq_portal = context.portal_catalog_real.evalAdvancedQuery
35
36
37member_id = str(member)
38
39info = context.waeup_tool.getAccessInfo(context)
40student_id = info['student_id']
41if student_id is None:
42    return None
43
44student_path_root = "%s/campus/students/%s" % (context.portal_url.getPortalPath(),student_id)
45student_path = "%s/campus/students/%s" % (context.portal_url(),student_id)
46students_folder = context.portal_url.getPortalObject().campus.students
47
48student_record = context.students_catalog.getRecordByKey(student_id)
49if student_record is None:
50    return None
51
52#from Products.zdb import set_trace;set_trace()
53for field in context.students_catalog.schema():
54    info[field] = getattr(student_record,field)
55
56#info['review_state'] = context.getStudentReviewState()
57
58info['session'] = False
59if student_record.matric_no and 'uniben' in context.portal_url.getPortalPath():
60    res = context.results_import(matric_no = student_record.matric_no)
61    if res:
62       info['session'] = True
63
64info['base_info'] = context.getFormattedStudentEntry(student_record)
65
66info['id'] = student_id
67items = []
68s_edit_links = {'StudentApplication': 'application_edit_form',
69              'StudentAccommodation': 'reserve_accommodation',
70              'StudentClearance': 'clearance_edit_form',
71              'StudentPersonal': 'personal_edit_form',
72              }
73s_view_links = {'StudentApplication': 'application_view',
74              'StudentAccommodation': 'accommodation_view',
75              'StudentClearance': 'clearance_view',
76              'StudentPersonal': 'personal_view',
77              'StudentStudyCourse': 'study_course_view',
78              'PaymentsFolder': 'payments_view',
79              }
80s_view_titles = context.getStudentObjectTitles()
81
82student_obj = getattr(students_folder,student_id)
83subobjects = student_obj.objectValues()
84
85for subobject in subobjects:
86    row = {}
87    row['id'] = subobject.getId()
88    if subobject.portal_type == 'StudentAccommodation':
89        row['title'] = s_view_titles.get(subobject.portal_type,'') +' for Session %s' %\
90                       context.portal_vocabularies.sessions.get(subobject.getContent().session)
91        #row['title'] = s_view_titles.get(subobject.portal_type,'') +' %s' %subobject.getContent().session
92    else:
93        row['title'] = s_view_titles.get(subobject.portal_type,'')
94    url = row['url'] = subobject.absolute_url()
95    row['type'] = subobject.portal_type
96    review_state = row['review_state'] = wf.getInfoFor(subobject,'review_state',None)
97    row['is_editable'] = (info['is_student'] and review_state == "opened") or info['is_sectionofficer']
98    sv_link = s_view_links.get(subobject.portal_type,None) or "waeup_document_view"
99    row['s_view_link'] = "%s/%s" % (url,sv_link)
100    se_link = s_edit_links.get(subobject.portal_type,None)
101    row['s_edit_link'] = None
102    if se_link:
103        row['s_edit_link'] = "%s/%s" % (url,se_link)
104    row['display'] = review_state in ('opened','closed','bed_reserved','maintenance_fee_paid',)\
105                    and subobject.portal_type not in  ('StudentPume','StudentAccommodation','PaymentsFolder',) or\
106                    subobject.portal_type == 'StudentStudyCourse'
107    items.append(row)
108
109items.sort(cmp=lambda x,y: cmp( x['title'],y['title']))
110info['items'] = items
111info['member'] = member
112
113try:
114    current_level = int(info['level'])
115except:
116    current_level = 0
117info['transition_return_allowed'] = info['review_state'] in ('school_fee_paid','courses_validated','graduated') and info['is_sectionofficer'] # and current_level > 100
118info['transition_pay_school_fee_allowed'] = info['review_state'] == 'returning' and info['is_sectionofficer']
119info['transition_admit_allowed'] = info['review_state'] == 'returning' and info['is_sectionofficer']
120
121return info
122
Note: See TracBrowser for help on using the repository browser.