[6857] | 1 | ## Script (Python) "getStudyCourseInfo" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=student=None |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: getStudyCourseInfo.py 6862 2011-10-05 06:39:58Z henrik $ |
---|
| 11 | """ |
---|
| 12 | return Info about the Students StudyCourse |
---|
| 13 | """ |
---|
| 14 | import DateTime |
---|
| 15 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
| 16 | |
---|
| 17 | mtool = context.portal_membership |
---|
| 18 | if mtool.isAnonymousUser(): |
---|
| 19 | return None |
---|
| 20 | |
---|
| 21 | try: |
---|
| 22 | from Products.zdb import set_trace |
---|
| 23 | except: |
---|
| 24 | def set_trace(): |
---|
| 25 | pass |
---|
| 26 | import logging |
---|
| 27 | logger = logging.getLogger('Skins.getStudyCourseInfo') |
---|
| 28 | |
---|
| 29 | request = context.REQUEST |
---|
| 30 | |
---|
| 31 | wftool = context.portal_workflow |
---|
| 32 | # path_info = request.get('PATH_INFO').split('/') |
---|
| 33 | |
---|
| 34 | # info = {} |
---|
| 35 | info = context.waeup_tool.getAccessInfo(context) |
---|
| 36 | student_id = info['student_id'] |
---|
| 37 | if student_id is None: |
---|
| 38 | return None |
---|
| 39 | |
---|
| 40 | #info['is_so'] = context.isSectionOfficer() |
---|
| 41 | info['is_so'] = info['is_sectionofficer'] |
---|
| 42 | info['action'] = "%s" % context.absolute_url() |
---|
| 43 | info['choosen_ids'] = request.get('ids',[]) |
---|
| 44 | try: |
---|
| 45 | course = info['doc'] = context.getContent() |
---|
| 46 | except: |
---|
| 47 | return None |
---|
| 48 | #student_id = context.getStudentId() |
---|
| 49 | student_record = context.students_catalog.getRecordByKey(student_id) |
---|
| 50 | if not student_record: |
---|
| 51 | return None |
---|
| 52 | info['student'] = student_record |
---|
| 53 | cert_id = student_record.course |
---|
| 54 | ci = {} |
---|
| 55 | ci['study_course'] = student_record.course |
---|
| 56 | ci['faculty'] = student_record.faculty |
---|
| 57 | ci['department'] = student_record.department |
---|
| 58 | info['course_doc'] = ci |
---|
| 59 | |
---|
| 60 | items = [] |
---|
| 61 | |
---|
| 62 | if hasattr(course,'current_verdict'): |
---|
| 63 | try: |
---|
| 64 | info['verdict'] = context.portal_vocabularies.verdicts.get(course.current_verdict).upper() |
---|
| 65 | except: |
---|
| 66 | info['verdict'] = course.current_verdict |
---|
| 67 | else: |
---|
| 68 | info['verdict'] = '' |
---|
| 69 | |
---|
| 70 | if hasattr(course,'previous_verdict'): |
---|
| 71 | try: |
---|
| 72 | previous_verdict = course.previous_verdict |
---|
| 73 | info['previous_verdict'] = context.portal_vocabularies.verdicts.get(course.previous_verdict).upper() |
---|
| 74 | except: |
---|
| 75 | info['previous_verdict'] = course.previous_verdict |
---|
| 76 | else: |
---|
| 77 | info['previous_verdict'] = '' |
---|
| 78 | previous_verdict = '' |
---|
| 79 | |
---|
| 80 | |
---|
| 81 | current_level = student_record.level |
---|
| 82 | levels = context.objectIds() |
---|
| 83 | review_state = wftool.getInfoFor(context,'review_state',None) |
---|
| 84 | student_review_state = student_record.review_state |
---|
| 85 | |
---|
| 86 | has_paid = student_review_state == 'school_fee_paid' |
---|
| 87 | |
---|
| 88 | may_register = has_paid and\ |
---|
| 89 | current_level not in levels and\ |
---|
| 90 | (previous_verdict in ('A','B','C','F','J','L','M','N','O','X','Z') or\ |
---|
| 91 | current_level in ('000','100') or\ |
---|
| 92 | (student_record.entry_mode.startswith('de') and current_level == '200') or\ |
---|
| 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 |
---|
| 95 | |
---|
[6862] | 96 | info['may_register_101'] = (int(current_level) > 199) and '100' not in levels and '101' not in levels |
---|
[6858] | 97 | |
---|
[6857] | 98 | missing_data = has_paid and\ |
---|
| 99 | current_level not in levels and\ |
---|
| 100 | not (previous_verdict or student_record.level) and\ |
---|
| 101 | not (current_level == '100' or\ |
---|
| 102 | (student_record.entry_mode.startswith('de') and current_level == '200') or\ |
---|
| 103 | (student_record.entry_mode.startswith('ph') and current_level == '300') or\ |
---|
| 104 | (student_record.entry_mode.startswith('pd') and current_level == '500')) #fceokene only |
---|
| 105 | |
---|
| 106 | info['missing_data'] = missing_data |
---|
| 107 | levels.sort() |
---|
| 108 | info['create_level'] = None |
---|
| 109 | student_levels_voc = context.portal_vocabularies.student_levels |
---|
| 110 | if may_register: |
---|
| 111 | info['create_level'] = current_level |
---|
| 112 | info['create_level_str'] = student_levels_voc.get(current_level) |
---|
| 113 | for l in levels: |
---|
| 114 | row = {} |
---|
| 115 | row['id'] = l |
---|
| 116 | #row['title'] = "Level %s" % l |
---|
| 117 | row['title'] = student_levels_voc.get(l) |
---|
| 118 | row['url'] = "%s/%s" % (context.absolute_url(),l) |
---|
| 119 | items.append(row) |
---|
| 120 | |
---|
| 121 | info['items'] = items |
---|
| 122 | |
---|
| 123 | |
---|
| 124 | |
---|
| 125 | return info |
---|
| 126 | |
---|