source: WAeUP_SRP/base/skins/waeup_student/getStudyCourseInfo.py @ 2652

Last change on this file since 2652 was 2640, checked in by joachim, 17 years ago

fix for #207

  • Property svn:keywords set to Id
File size: 3.0 KB
Line 
1## Script (Python) "getStudyCourseInfo"
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: getStudyCourseInfo.py 2640 2007-11-13 14:06:31Z joachim $
11"""
12return Info about the Students StudyCourse
13"""
14
15mtool = context.portal_membership
16if mtool.isAnonymousUser():
17    return None
18
19try:
20    from Products.zdb import set_trace
21except:
22    def set_trace():
23        pass
24
25request = context.REQUEST
26
27wftool = context.portal_workflow
28path_info = request.get('PATH_INFO').split('/')
29
30info = {}
31info['is_so'] = context.isSectionOfficer()
32info['action'] = "%s" % context.absolute_url()
33info['choosen_ids'] = request.get('ids',[])
34course  = info['doc'] = context.getContent()
35student_id = context.getStudentId()
36res = context.students_catalog(id = student_id)
37if not res:
38    return None
39sbrain = res[0]
40info['student'] = sbrain
41cert_id = sbrain.course
42res = context.portal_catalog(portal_type = "Certificate", id = cert_id)
43ci = {}
44if res:
45    info['cert_id'] = cert_id
46    brain = res[0]
47    ci['study_course'] = brain.getId
48    ci['title'] = brain.Title
49    pl = brain.getPath().split('/')
50    ci['faculty'] = pl[-4]
51    ci['department'] = pl[-3]
52    info['course_doc'] = ci
53else:
54    info['cert_id'] = 'N/A'
55    ci['study_course'] = 'N/A'
56    ci['title'] = 'N/A'
57    ci['faculty'] = 'N/A'
58    ci['department'] = 'N/A'
59    info['course_doc'] = ci
60
61items = []
62
63if hasattr(course,'current_verdict'):
64    try:
65        info['verdict'] = context.portal_vocabularies.verdicts.get(course.current_verdict).upper()
66    except:
67        info['verdict'] = course.current_verdict
68else:
69    info['verdict'] = ''
70
71if hasattr(course,'previous_verdict'):
72    try:
73        previous_verdict = course.previous_verdict
74        info['previous_verdict'] = context.portal_vocabularies.verdicts.get(course.previous_verdict).upper()
75    except:
76        info['previous_verdict'] = course.previous_verdict
77else:
78    info['previous_verdict'] = ''
79    previous_verdict = ''
80
81
82current_level = sbrain.level
83set_trace
84levels = context.objectIds()
85review_state = wftool.getInfoFor(context,'review_state',None)
86student_review_state = context.getStudentReviewState()
87if review_state != 'content_addable' and student_review_state == 'school_fee_paid': #and context.isStudent():
88    wftool.doActionFor(context,'close_for_edit')
89may_register = (student_review_state in ('school_fee_paid',)) and\
90                current_level not in levels and\
91                (previous_verdict in ('A','B','C','F','J','L','M') or\
92                sbrain.level == '100' or\
93               (sbrain.mode.startswith('de') and sbrain.level == '200'))
94levels.sort()
95info['create_level'] = None
96student_levels_voc = context.portal_vocabularies.student_levels
97if may_register:
98    info['create_level'] = current_level
99    info['create_level_str'] = student_levels_voc.get(current_level)
100for l in levels:
101    row = {}
102    row['id'] = l
103    #row['title'] = "Level %s" % l
104    row['title'] = student_levels_voc.get(l)
105    row['url'] = "%s/%s" % (context.absolute_url(),l)
106    items.append(row)
107
108info['items'] = items
109
110
111
112return info
113
Note: See TracBrowser for help on using the repository browser.