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

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

make register courses work

  • Property svn:keywords set to Id
File size: 1.9 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 1494 2007-02-26 09:16:06Z joachim $
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()
57#may_register = 0 #1 or student_review_state in ('shool_fee_payed',)
58may_register = (1 or student_review_state in ('shool_fee_payed',)) and\
59               current_level not in levels
60levels.sort()
61info['create_level'] = None
62if may_register:
63    info['create_level'] = current_level
64for l in levels:
65    row = {}
66    row['id'] = l
67    row['title'] = "Level %s" % l
68    row['url'] = "%s/%s" % (context.absolute_url(),l)
69    items.append(row)
70
71info['items'] = items
72return info
Note: See TracBrowser for help on using the repository browser.