source: WAeUP_SRP/trunk/skins/waeup_student/getStudyCourseInfo.py @ 1530

Last change on this file since 1530 was 1504, checked in by Henrik Bettermann, 18 years ago

upper case of verdict fixed

  • Property svn:keywords set to Id
File size: 2.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 1504 2007-02-26 21:20:40Z henrik $
11"""
12return Info about the Students StudyCourse
13"""
14try:
15    from Products.zdb import set_trace
16except:
17    def set_trace():
18        pass
19
20request = context.REQUEST
21
22wftool = context.portal_workflow
23path_info = request.get('PATH_INFO').split('/')
24
25info = {}
26info['is_so'] = context.isSectionOfficer()
27info['action'] = "%s" % context.campus.absolute_url()
28info['choosen_ids'] = request.get('ids',[])
29course  = info['doc'] = context.getContent()
30student_id = context.getStudentId()
31res = context.students_catalog(id = student_id)
32if not res:
33    return None
34sbrain = res[0]
35info['student'] = sbrain
36cert_id = sbrain.course
37res = context.portal_catalog(portal_type = "Certificate", id = cert_id)
38ci = {}
39if res:
40    info['cert_id'] = cert_id
41    brain = res[0]
42    ci['study_course'] = brain.getId
43    ci['title'] = brain.Title
44    pl = brain.getPath().split('/')
45    ci['faculty'] = pl[-4]
46    ci['department'] = pl[-3]
47    info['course_doc'] = ci
48else:
49    info['course'] = None
50items = []
51current_level = sbrain.level
52levels = context.objectIds()
53review_state = wftool.getInfoFor(context,'review_state',None)
54if review_state != 'content_addable':
55    wftool.doActionFor(context,'close_for_edit')
56student_review_state = context.getStudentReviewState()
57may_register = (student_review_state in ('school_fee_paid',)) and\
58               current_level not in levels
59levels.sort()
60info['create_level'] = None
61if may_register:
62    info['create_level'] = current_level
63for l in levels:
64    row = {}
65    row['id'] = l
66    row['title'] = "Level %s" % l
67    row['url'] = "%s/%s" % (context.absolute_url(),l)
68    items.append(row)
69
70info['items'] = items
71
72try:
73    info['verdict'] = context.portal_vocabularies.verdicts.get(info['doc'].current_verdict).upper()
74except:
75    info['verdict'] = course.current_verdict
76
77return info
78
Note: See TracBrowser for help on using the repository browser.