source: WAeUP_SRP/fceokene/waeup_custom/getSimpleStudentStatistics.py @ 2988

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

customize

File size: 4.8 KB
RevLine 
[2362]1## Script (Python) "getRetStudentStatistics"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=
8##title=
9##
10# $Id: getStudentStatistics.py 1277 2007-01-11 21:11:37Z joachim $
11"""
12return Student Statistics
13"""
14
15import logging
16logger = logging.getLogger('Skins.getSimpleStudentStatistics')
17
18logger.info('%s invoked statistics' % context.portal_membership.getAuthenticatedMember())
19if not context.isStaff():
[2724]20    return
[2362]21
22
23catA =      (      'school_fee_paid',
24                   'courses_registered',
25                   'courses_validated',
26                   )
27
28catB =      (      'courses_registered',
29                   'courses_validated',
30                   )
31
[2724]32catC =      (      'student_created',
33                   'returning',
[2362]34                   'admitted',
35                   'clearance_pin_entered',
36                   'objection_raised',
37                   'clearance_requested',
38                   'cleared_and_validated',
39                   )
40
[2724]41current_session = context.getSessionId()[0]
[2362]42
43
[2955]44full_time =       ('ug_ft','',)
45part_time =       ('pce')
46diploma   =       ('prence')
[2362]47
[2724]48
[2362]49faculties = context.portal_catalog(portal_type="Faculty")
50
51l = []
52
53fac_res = {}
54
55dict = {}
56dict['id'] = 'All Schools'
57dict['title'] = 'All Schools'
58
59
60res_ft = context.students_catalog(mode = full_time)
61dict['total_ft'] = len(res_ft)
62
63res_pt = context.students_catalog(mode = part_time)
64dict['total_pt'] = len(res_pt)
65
66res_dp = context.students_catalog(mode = diploma)
67dict['total_dp'] = len(res_dp)
68
[2724]69res_Aft = context.students_catalog(review_state = catA, mode = full_time, session = current_session)
[2362]70dict['total_Aft'] = len(res_Aft)
71
[2724]72res_Apt = context.students_catalog(review_state = catA, mode = part_time, session = current_session)
[2362]73dict['total_Apt'] = len(res_Apt)
74
[2724]75res_Adp = context.students_catalog(review_state = catA, mode = diploma, session = current_session)
[2362]76dict['total_Adp'] = len(res_Adp)
77
[2724]78res_Bft = context.students_catalog(review_state = catB, mode = full_time, session = current_session)
[2362]79dict['total_Bft'] = len(res_Bft)
80
[2724]81res_Bpt = context.students_catalog(review_state = catB, mode = part_time, session = current_session)
[2362]82dict['total_Bpt'] = len(res_Bpt)
83
[2724]84res_Bdp = context.students_catalog(review_state = catB, mode = diploma, session = current_session)
[2362]85dict['total_Bdp'] = len(res_Bpt)
86
[2724]87res_Cft = context.students_catalog(review_state = catC, mode = full_time, session = current_session)
[2362]88dict['total_Cft'] = len(res_Cft)
89
[2724]90res_Cpt = context.students_catalog(review_state = catC, mode = part_time, session = current_session)
[2362]91dict['total_Cpt'] = len(res_Cpt)
92
[2724]93res_Cdp = context.students_catalog(review_state = catC, mode = diploma, session = current_session)
[2362]94dict['total_Cdp'] = len(res_Cdp)
95
96
97res_total = context.students_catalog()
98dict['total_in_catalog'] = len(res_total)
[2724]99dict['not_categorized'] = dict['total_in_catalog'] - dict['total_ft'] - dict['total_pt'] - dict['total_dp']
[2362]100
101l.append(dict)
102
103
104for f in faculties:
105    dict = {}
106    dict['id'] = f.getId
107    dict['title'] = f.Title
108
109    res_ft = context.students_catalog(faculty = f.getId, mode = full_time)
110    dict['total_ft'] = len(res_ft)
111
112    res_pt = context.students_catalog(faculty = f.getId, mode = part_time)
113    dict['total_pt'] = len(res_pt)
114
115    res_dp = context.students_catalog(faculty = f.getId, mode = diploma)
116    dict['total_dp'] = len(res_dp)
117
[2724]118    res_Aft = context.students_catalog(faculty = f.getId, review_state = catA, mode = full_time, session = current_session)
[2362]119    dict['total_Aft'] = len(res_Aft)
120
[2724]121    res_Apt = context.students_catalog(faculty = f.getId, review_state = catA, mode = part_time, session = current_session)
[2362]122    dict['total_Apt'] = len(res_Apt)
123
[2724]124    res_Adp = context.students_catalog(faculty = f.getId, review_state = catA, mode = diploma, session = current_session)
[2362]125    dict['total_Adp'] = len(res_Adp)
126
[2724]127    res_Bft = context.students_catalog(faculty = f.getId, review_state = catB, mode = full_time, session = current_session)
[2362]128    dict['total_Bft'] = len(res_Bft)
129
[2724]130    res_Bpt = context.students_catalog(faculty = f.getId, review_state = catB, mode = part_time, session = current_session)
[2362]131    dict['total_Bpt'] = len(res_Bpt)
132
[2724]133    res_Bdp = context.students_catalog(faculty = f.getId, review_state = catB, mode = diploma, session = current_session)
[2362]134    dict['total_Bdp'] = len(res_Bpt)
135
[2724]136    res_Cft = context.students_catalog(faculty = f.getId, review_state = catC, mode = full_time, session = current_session)
[2362]137    dict['total_Cft'] = len(res_Cft)
138
[2724]139    res_Cpt = context.students_catalog(faculty = f.getId, review_state = catC, mode = part_time, session = current_session)
[2362]140    dict['total_Cpt'] = len(res_Cpt)
141
[2724]142    res_Cdp = context.students_catalog(faculty = f.getId, review_state = catC, mode = diploma, session = current_session)
[2362]143    dict['total_Cdp'] = len(res_Cdp)
144
145
146    l.append(dict)
147
148return l
149
Note: See TracBrowser for help on using the repository browser.