1 | # $Id: display_session_results.py 1166 2006-12-31 18:11:47Z henrik $ |
---|
2 | """ |
---|
3 | process the Application Form |
---|
4 | return html renderer + psm |
---|
5 | """ |
---|
6 | import DateTime |
---|
7 | current = DateTime.DateTime() |
---|
8 | try: |
---|
9 | from Products.zdb import set_trace |
---|
10 | except: |
---|
11 | def set_trace(): |
---|
12 | pass |
---|
13 | pr = context.portal_registration |
---|
14 | request = context.REQUEST |
---|
15 | returning = context.returning_import |
---|
16 | results = context.results_import |
---|
17 | scatalog = context.students_catalog |
---|
18 | |
---|
19 | mtool = context.portal_membership |
---|
20 | member = mtool.getAuthenticatedMember() |
---|
21 | member_id = str(member) |
---|
22 | |
---|
23 | if mtool.isAnonymousUser(): |
---|
24 | return None |
---|
25 | info = {} |
---|
26 | requested_id = context.getStudentId() |
---|
27 | if requested_id and not context.isStaff() and member_id != requested_id: |
---|
28 | import logging |
---|
29 | logger = logging.getLogger('Student.SessionResults.Info') |
---|
30 | logger.info('"%s", "tried to access", "%s"' % (member_id,requested_id)) |
---|
31 | return None |
---|
32 | elif context.isStaff(): |
---|
33 | student_id = requested_id |
---|
34 | else: |
---|
35 | student_id = member_id |
---|
36 | |
---|
37 | students_object = context.portal_url.getPortalObject().campus.students |
---|
38 | ##student = getattr(students_object, student_id) |
---|
39 | ##clear = getattr(student,'clearance',None) |
---|
40 | ##if clear: |
---|
41 | ## value = clear.getContent().matric_no |
---|
42 | ##else: |
---|
43 | ## return None |
---|
44 | |
---|
45 | res = scatalog(id = student_id) |
---|
46 | matric_no = res[0].matric_no |
---|
47 | student_from_cat = res[0] |
---|
48 | |
---|
49 | res = returning(matric_no = matric_no) |
---|
50 | if res: |
---|
51 | student_from_returning = res[0] |
---|
52 | else: |
---|
53 | return None |
---|
54 | |
---|
55 | res = results(matric_no = matric_no) |
---|
56 | results = res |
---|
57 | |
---|
58 | |
---|
59 | sem1 = [] |
---|
60 | sem2 = [] |
---|
61 | with_courses_cat = hasattr(context,'courses_catalog') |
---|
62 | fields = context.results_import.schema() |
---|
63 | gpa = 0 |
---|
64 | course_count = 0 |
---|
65 | session = None |
---|
66 | |
---|
67 | for r in results: |
---|
68 | if session is None: |
---|
69 | session = r.Session |
---|
70 | result = {} |
---|
71 | for field in fields: |
---|
72 | result[field] = getattr(r,field) |
---|
73 | if with_courses_cat: |
---|
74 | res = context.courses_catalog(code = r.CosCode) |
---|
75 | if with_courses_cat and res: |
---|
76 | result['title'] = res[0].title |
---|
77 | result['credits'] = res[0].credits |
---|
78 | try: |
---|
79 | weight = int(result['WEIGHT']) |
---|
80 | credits = int(res[0].credits) |
---|
81 | gpa_course = int(res[0].credits) * weight |
---|
82 | gpa += gpa_course |
---|
83 | course_count += credits |
---|
84 | result['gpa'] = 'ok' |
---|
85 | except: |
---|
86 | result['gpa'] = 'N/A' |
---|
87 | else: |
---|
88 | result['title'] = "" |
---|
89 | result['credits'] = "N/A" |
---|
90 | result['gpa'] = 'N/A' |
---|
91 | result['WEIGHT'] = 'N/A' |
---|
92 | result['GRADE'] = 'N/A' |
---|
93 | if r.Semester == '2': |
---|
94 | sem2.append(result) |
---|
95 | else: |
---|
96 | sem1.append(result) |
---|
97 | if course_count: |
---|
98 | gpa = float(gpa) / course_count |
---|
99 | gpa = "%4.2f" % gpa |
---|
100 | |
---|
101 | |
---|
102 | verdict_voc = context.portal_vocabularies.verdicts |
---|
103 | if verdict_voc.has_key(student_from_cat.verdict): |
---|
104 | info['verdict'] = verdict_voc.get(student_from_cat.verdict).upper() |
---|
105 | else: |
---|
106 | info['verdict'] = 'N/A' |
---|
107 | |
---|
108 | if student_from_cat.level: |
---|
109 | if student_from_cat.sex: |
---|
110 | info['sex'] = 'F' |
---|
111 | else: |
---|
112 | info['sex'] = 'M' |
---|
113 | info['level'] = int(student_from_cat.level)-100 |
---|
114 | else: |
---|
115 | info['sex'] = 'N/A' |
---|
116 | info['level'] = 'N/A' |
---|
117 | |
---|
118 | info['session'] = session |
---|
119 | info['gpa'] = gpa |
---|
120 | info['results'] = (sem1, sem2) |
---|
121 | info['student_from_returning'] = student_from_returning |
---|
122 | info['student'] = student_from_cat |
---|
123 | info['s_id'] = student_id |
---|
124 | return info |
---|
125 | |
---|