Changeset 5518
- Timestamp:
- 16 Sep 2010, 06:42:19 (14 years ago)
- Location:
- WAeUP_SRP/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/trunk/WAeUPTool.py
r5511 r5518 1123 1123 elif da['entry_mode'].startswith('pre'): 1124 1124 dsc['current_level'] = '000' 1125 elif da['entry_mode'].startswith('pde'): 1126 dsc['current_level'] = '500' 1125 1127 else: 1126 1128 dsc['current_level'] = '100' -
WAeUP_SRP/trunk/skins/waeup_student/getStudyCourseInfo.py
r5449 r5518 91 91 current_level in ('000','100') or\ 92 92 (student_record.entry_mode.startswith('de') and current_level == '200') or\ 93 (student_record.entry_mode.startswith('ph') and current_level == '300')) 93 (student_record.entry_mode.startswith('ph') and current_level == '300') or\ 94 (student_record.entry_mode.startswith('pd') and current_level == '500')) #fceokene only 94 95 95 96 missing_data = has_paid and\ … … 97 98 not (previous_verdict or student_record.level) and\ 98 99 not (current_level == '100' or\ 99 (student_record.entry_mode.startswith('de') and current_level == '200')or\ 100 (student_record.entry_mode.startswith('ph') and current_level == '300')) 100 (student_record.entry_mode.startswith('de') and current_level == '200') or\ 101 (student_record.entry_mode.startswith('ph') and current_level == '300') or\ 102 (student_record.entry_mode.startswith('pd') and current_level == '500')) #fceokene only 101 103 102 104 info['missing_data'] = missing_data
Note: See TracChangeset for help on using the changeset viewer.