source: WAeUP_SRP/base/skins/waeup_student/getStudyLevelInfo.py @ 2757

Last change on this file since 2757 was 2757, checked in by Henrik Bettermann, 17 years ago

revised study_level_view and methods

  • Property svn:keywords set to Id
File size: 3.9 KB
Line 
1## Script (Python) "getStudyLevelInfo"
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: getStudyLevelInfo.py 2757 2007-11-25 18:21:03Z henrik $
11"""
12return Info about the Studylevel
13"""
14
15wf = context.portal_workflow
16mtool = context.portal_membership
17if mtool.isAnonymousUser():
18    return None
19member = mtool.getAuthenticatedMember()
20member_id = str(member)
21
22try:
23    from Products.zdb import set_trace
24except:
25    def set_trace():
26        pass
27
28
29# from Products.AdvancedQuery import Eq, Between, Le,In
30# try:
31#     aq_portal = context.portal_catalog.evalAdvancedQuery
32# except:
33#     aq_portal = context.portal_catalog_real.evalAdvancedQuery
34course_results = context.course_results
35request = context.REQUEST
36response = request.RESPONSE
37import logging
38logger = logging.getLogger('Skins.getStudyLevelInfo')
39
40student_id = context.getStudentId()
41level_id = context.getId()
42
43info = {}
44info['is_so'] = is_so = context.isSectionOfficer()
45info['is_student'] = is_student = context.isStudent()
46info['is_ca'] = is_ca = context.isCourseAdviser()
47info['student'] = student = context.students_catalog(id=student_id)[0]
48info['review_state'] = review_state = student.review_state
49info['view_only'] =  review_state != "school_fee_paid"
50
51
52school_fee_paid =  review_state == 'school_fee_paid'
53
54is_current_level = level_id == student.level
55
56info['show_check_boxes'] =  (is_ca and school_fee_paid and is_current_level) or\
57                            (is_student and school_fee_paid and is_current_level) or\
58                            (is_so and is_current_level)
59
60info['is_current_level'] = is_current_level
61
62info['choosen_ids'] = request.get('ids',[])
63info['status_info'] = ""
64if is_student:
65    if review_state == 'courses_registered':
66        info['status_info'] = "Request for course validation pending"
67    elif review_state == 'courses_validated':
68        info['status_info'] = "Courses validated"
69elif is_ca:
70    if review_state == 'courses_registered':
71        info['status_info'] = "Please validate these courses"
72    elif review_state == 'courses_validated':
73        info['status_info'] = "Courses validated"
74level_doc = info['doc'] = context.getContent()
75cert_id = student.course
76info['cert_id'] = cert_id
77if context.objectIds():
78    course_results.moveResultsHere(context,student_id)
79    logger.info("%s initiated moveResultsHere for %s in level %s" % (member_id,student_id,level_id))
80total_credits,gpa,carry_overs,normal1,normal2,normal3 = course_results.getCourses(student_id,level_id)
81info['total_credits'] = total_credits
82max_credits = 50
83if context.getId() == student.end_level:
84    max_credits = 51
85info['max_credits'] = max_credits
86info['credits_exceeded'] = total_credits > max_credits
87current_session = student.session
88
89info['gpa'] = gpa
90if gpa and total_credits:
91    info['gpa'] = "%4.2f" % (float(gpa)/int(total_credits))
92   
93info['submission_allowed']= school_fee_paid and level_id == student.level
94info['validation_allowed']= review_state == 'courses_registered' and is_current_level
95info['rejection_allowed']= review_state in ('courses_registered', 'courses_validated',) and is_current_level
96
97info['verdict'] = context.portal_vocabularies.verdicts.get(level_doc.verdict)
98info['session'] = context.portal_vocabularies.sessions.get(level_doc.session)
99
100# carry_overs.sort(cmp_semester_id)
101info['carry_overs'] = carry_overs
102# normal.sort(cmp_semester_id)
103info['normal1'] = normal1
104info['normal2'] = normal2
105info['normal3'] = normal3
106
107info['data_missing'] = not info['normal1'] and not info['normal2'] and not info['normal3']
108info['spillover'] = student.level > student.end_level
109
110students_object = context.portal_url.getPortalObject().campus.students
111student = getattr(students_object, student_id)
112info['app'] = student.application
113info['app_doc'] = student.application.getContent()
114
115return info
Note: See TracBrowser for help on using the repository browser.