Ignore:
Timestamp:
13 May 2007, 17:38:27 (18 years ago)
Author:
Henrik Bettermann
Message:

email and phone was not copied into application and personal after first login

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_student/getRetStudentStatistics.py

    r1763 r1781  
    2222entry_sessions = ('94','95','96','97','98','99','00','01','02','03','04','05')
    2323
    24 new_states =      ('returning',
     24ret_states =      ('returning',
    2525                   'school_fee_paid',
    2626                   'courses_registered',
     
    3939res = context.students_catalog(entry_session = entry_sessions)
    4040dict['total'] = len(res)
    41 for state in new_states:
     41for state in ret_states:
    4242    res = context.students_catalog(entry_session = entry_sessions, review_state = state)
    4343    dict[state] = len(res)
     
    5555    res = context.students_catalog(entry_session = entry_sessions, faculty = f.getId)
    5656    dict['total'] = len(res)
    57     for state in new_states:
     57    for state in ret_states:
    5858        res = context.students_catalog(entry_session = entry_sessions, faculty = f.getId, review_state = state)
    5959        dict[state] = len(res)
Note: See TracChangeset for help on using the changeset viewer.