Rev | Line | |
---|
[3603] | 1 | ## Script (Python) "getTranscriptInfo"
|
---|
| 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 2760 2007-11-26 07:39:15Z henrik $
|
---|
| 11 | """
|
---|
| 12 | return Info about the Studylevel
|
---|
| 13 | try:
|
---|
| 14 | from Products.zdb import set_trace
|
---|
| 15 | except:
|
---|
| 16 | def set_trace():
|
---|
| 17 | pass
|
---|
| 18 | """
|
---|
| 19 |
|
---|
| 20 | info = context.waeup_tool.getAccessInfo(context)
|
---|
| 21 | student_id = info['student_id']
|
---|
| 22 | if student_id is None:
|
---|
| 23 | return None
|
---|
| 24 |
|
---|
| 25 | mtool = context.portal_membership
|
---|
| 26 | member = mtool.getAuthenticatedMember()
|
---|
| 27 | member_id = str(member)
|
---|
| 28 |
|
---|
| 29 | course_results = context.course_results
|
---|
| 30 | request = context.REQUEST
|
---|
| 31 | response = request.RESPONSE
|
---|
| 32 | import logging
|
---|
| 33 | logger = logging.getLogger('Skins.getTranscriptInfo')
|
---|
| 34 |
|
---|
| 35 |
|
---|
| 36 | info['is_so'] = is_so = info['is_sectionofficer']
|
---|
| 37 | info['student'] = student = context.students_catalog.getRecordByKey(student_id)
|
---|
| 38 | info['review_state'] = review_state = student.review_state
|
---|
| 39 | school_fee_paid = review_state == 'school_fee_paid'
|
---|
| 40 |
|
---|
| 41 | cert_id = student.course
|
---|
| 42 | info['cert_id'] = cert_id
|
---|
| 43 | courses = course_results.getAllCourses(student_id)
|
---|
| 44 | current_session = student.session
|
---|
| 45 |
|
---|
| 46 | info['courses'] = courses
|
---|
| 47 |
|
---|
| 48 |
|
---|
| 49 | return info |
---|
Note: See
TracBrowser for help on using the repository browser.