Changeset 1781 for WAeUP_SRP/trunk/skins/waeup_student
- Timestamp:
- 13 May 2007, 17:38:27 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/skins/waeup_student/getRetStudentStatistics.py
r1763 r1781 22 22 entry_sessions = ('94','95','96','97','98','99','00','01','02','03','04','05') 23 23 24 new_states = ('returning',24 ret_states = ('returning', 25 25 'school_fee_paid', 26 26 'courses_registered', … … 39 39 res = context.students_catalog(entry_session = entry_sessions) 40 40 dict['total'] = len(res) 41 for state in new_states:41 for state in ret_states: 42 42 res = context.students_catalog(entry_session = entry_sessions, review_state = state) 43 43 dict[state] = len(res) … … 55 55 res = context.students_catalog(entry_session = entry_sessions, faculty = f.getId) 56 56 dict['total'] = len(res) 57 for state in new_states:57 for state in ret_states: 58 58 res = context.students_catalog(entry_session = entry_sessions, faculty = f.getId, review_state = state) 59 59 dict[state] = len(res)
Note: See TracChangeset for help on using the changeset viewer.