[2448] | 1 | ## Script (Python) "getStudyLevelInfo"
|
---|
| 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: getStudyLevelInfo.py 2757 2007-11-25 18:21:03Z henrik $
|
---|
| 11 | """
|
---|
| 12 | return Info about the Studylevel
|
---|
| 13 | """
|
---|
| 14 |
|
---|
| 15 | wf = context.portal_workflow
|
---|
| 16 | mtool = context.portal_membership
|
---|
| 17 | if mtool.isAnonymousUser():
|
---|
| 18 | return None
|
---|
[2466] | 19 | member = mtool.getAuthenticatedMember()
|
---|
| 20 | member_id = str(member)
|
---|
[2448] | 21 |
|
---|
| 22 | try:
|
---|
| 23 | from Products.zdb import set_trace
|
---|
| 24 | except:
|
---|
| 25 | def set_trace():
|
---|
| 26 | pass
|
---|
| 27 |
|
---|
| 28 |
|
---|
| 29 | # from Products.AdvancedQuery import Eq, Between, Le,In
|
---|
| 30 | # try:
|
---|
| 31 | # aq_portal = context.portal_catalog.evalAdvancedQuery
|
---|
| 32 | # except:
|
---|
| 33 | # aq_portal = context.portal_catalog_real.evalAdvancedQuery
|
---|
| 34 | course_results = context.course_results
|
---|
| 35 | request = context.REQUEST
|
---|
| 36 | response = request.RESPONSE
|
---|
| 37 | import logging
|
---|
| 38 | logger = logging.getLogger('Skins.getStudyLevelInfo')
|
---|
| 39 |
|
---|
| 40 | student_id = context.getStudentId()
|
---|
| 41 | level_id = context.getId()
|
---|
| 42 |
|
---|
| 43 | info = {}
|
---|
| 44 | info['is_so'] = is_so = context.isSectionOfficer()
|
---|
| 45 | info['is_student'] = is_student = context.isStudent()
|
---|
| 46 | info['is_ca'] = is_ca = context.isCourseAdviser()
|
---|
| 47 | info['student'] = student = context.students_catalog(id=student_id)[0]
|
---|
[2664] | 48 | info['review_state'] = review_state = student.review_state
|
---|
[2448] | 49 | info['view_only'] = review_state != "school_fee_paid"
|
---|
[2664] | 50 |
|
---|
| 51 |
|
---|
[2757] | 52 | school_fee_paid = review_state == 'school_fee_paid'
|
---|
[2664] | 53 |
|
---|
[2757] | 54 | is_current_level = level_id == student.level
|
---|
[2664] | 55 |
|
---|
[2757] | 56 | info['show_check_boxes'] = (is_ca and school_fee_paid and is_current_level) or\
|
---|
| 57 | (is_student and school_fee_paid and is_current_level) or\
|
---|
| 58 | (is_so and is_current_level)
|
---|
[2664] | 59 |
|
---|
[2757] | 60 | info['is_current_level'] = is_current_level
|
---|
| 61 |
|
---|
[2448] | 62 | info['choosen_ids'] = request.get('ids',[])
|
---|
| 63 | info['status_info'] = ""
|
---|
| 64 | if is_student:
|
---|
| 65 | if review_state == 'courses_registered':
|
---|
[2757] | 66 | info['status_info'] = "Request for course validation pending"
|
---|
[2448] | 67 | elif review_state == 'courses_validated':
|
---|
| 68 | info['status_info'] = "Courses validated"
|
---|
| 69 | elif is_ca:
|
---|
| 70 | if review_state == 'courses_registered':
|
---|
[2757] | 71 | info['status_info'] = "Please validate these courses"
|
---|
[2448] | 72 | elif review_state == 'courses_validated':
|
---|
| 73 | info['status_info'] = "Courses validated"
|
---|
[2757] | 74 | level_doc = info['doc'] = context.getContent()
|
---|
[2448] | 75 | cert_id = student.course
|
---|
| 76 | info['cert_id'] = cert_id
|
---|
| 77 | if context.objectIds():
|
---|
| 78 | course_results.moveResultsHere(context,student_id)
|
---|
[2466] | 79 | logger.info("%s initiated moveResultsHere for %s in level %s" % (member_id,student_id,level_id))
|
---|
[2757] | 80 | total_credits,gpa,carry_overs,normal1,normal2,normal3 = course_results.getCourses(student_id,level_id)
|
---|
| 81 | info['total_credits'] = total_credits
|
---|
[2469] | 82 | max_credits = 50
|
---|
| 83 | if context.getId() == student.end_level:
|
---|
| 84 | max_credits = 51
|
---|
| 85 | info['max_credits'] = max_credits
|
---|
[2757] | 86 | info['credits_exceeded'] = total_credits > max_credits
|
---|
[2448] | 87 | current_session = student.session
|
---|
[2664] | 88 |
|
---|
[2757] | 89 | info['gpa'] = gpa
|
---|
| 90 | if gpa and total_credits:
|
---|
| 91 | info['gpa'] = "%4.2f" % (float(gpa)/int(total_credits))
|
---|
| 92 |
|
---|
| 93 | info['submission_allowed']= school_fee_paid and level_id == student.level
|
---|
| 94 | info['validation_allowed']= review_state == 'courses_registered' and is_current_level
|
---|
| 95 | info['rejection_allowed']= review_state in ('courses_registered', 'courses_validated',) and is_current_level
|
---|
[2664] | 96 |
|
---|
[2757] | 97 | info['verdict'] = context.portal_vocabularies.verdicts.get(level_doc.verdict)
|
---|
| 98 | info['session'] = context.portal_vocabularies.sessions.get(level_doc.session)
|
---|
[2664] | 99 |
|
---|
[2448] | 100 | # carry_overs.sort(cmp_semester_id)
|
---|
| 101 | info['carry_overs'] = carry_overs
|
---|
| 102 | # normal.sort(cmp_semester_id)
|
---|
[2606] | 103 | info['normal1'] = normal1
|
---|
| 104 | info['normal2'] = normal2
|
---|
| 105 | info['normal3'] = normal3
|
---|
[2448] | 106 |
|
---|
[2664] | 107 | info['data_missing'] = not info['normal1'] and not info['normal2'] and not info['normal3']
|
---|
[2649] | 108 | info['spillover'] = student.level > student.end_level
|
---|
| 109 |
|
---|
[2448] | 110 | students_object = context.portal_url.getPortalObject().campus.students
|
---|
| 111 | student = getattr(students_object, student_id)
|
---|
| 112 | info['app'] = student.application
|
---|
| 113 | info['app_doc'] = student.application.getContent()
|
---|
| 114 |
|
---|
[2486] | 115 | return info |
---|