Last change
on this file since 1823 was
1700,
checked in by joachim, 18 years ago
|
students_catalog reindexing implemented.
|
-
Property svn:keywords set to
Id
|
File size:
577 bytes
|
Rev | Line | |
---|
[1161] | 1 | ## Script (Python) "getStudentReviewState" |
---|
[1067] | 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
[1700] | 7 | ##parameters=student_id=None |
---|
[1067] | 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: getStudentReviewState.py 1700 2007-04-23 21:16:34Z joachim $ |
---|
| 11 | """ |
---|
[1490] | 12 | return the review_state of the Student |
---|
[1067] | 13 | """ |
---|
[1415] | 14 | try: |
---|
| 15 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
[1490] | 16 | aq_portal = context.portal_catalog.evalAdvancedQuery |
---|
[1415] | 17 | except: |
---|
[1490] | 18 | aq_portal = None |
---|
[1700] | 19 | if student_id is None: |
---|
| 20 | student_id = context.getStudentId() |
---|
[1415] | 21 | query = Eq('id',student_id) |
---|
[1490] | 22 | res = aq_portal(query) |
---|
| 23 | if not res: |
---|
[1067] | 24 | return None |
---|
[1490] | 25 | return res[0].review_state |
---|
Note: See
TracBrowser for help on using the repository browser.