[3690] | 1 | ## Script (Python) "getNextInfo" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=student_brain |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: getNextInfo.py 2678 2007-11-16 13:41:44Z henrik $ |
---|
| 11 | """ |
---|
| 12 | return the students next info |
---|
| 13 | """ |
---|
| 14 | try: |
---|
| 15 | from Products.zdb import set_trace |
---|
| 16 | except: |
---|
| 17 | def set_trace(): |
---|
| 18 | pass |
---|
| 19 | |
---|
| 20 | info = {} |
---|
| 21 | |
---|
| 22 | reasons = '' |
---|
| 23 | |
---|
| 24 | session_id = student_brain.session |
---|
| 25 | level_id = student_brain.level |
---|
| 26 | review_state = student_brain.review_state |
---|
| 27 | verdict = student_brain.verdict |
---|
| 28 | |
---|
| 29 | has_verdict = verdict and verdict != 'N/A' |
---|
| 30 | has_session = session_id and session_id != 'N/A' |
---|
| 31 | has_level = level_id and level_id != 'N/A' |
---|
| 32 | |
---|
| 33 | info['next_transition'] = None |
---|
| 34 | info['next_session_id'] = next_session_id = session_id |
---|
| 35 | info['next_level_id'] = next_level_id = level_id |
---|
| 36 | info['next_verdict'] = verdict |
---|
| 37 | info['next_previous_verdict'] = '' |
---|
| 38 | verdicts_voc = context.portal_vocabularies.verdicts |
---|
| 39 | if review_state == 'cleared_and_validated': |
---|
| 40 | info['next_transition'] = "pay_school_fee" |
---|
| 41 | info['next_verdict'] = '' |
---|
| 42 | elif review_state == 'returning' and has_verdict and has_level and has_session: |
---|
| 43 | info['next_session_id'] = next_session_id = "%02d" % (int(session_id)+1) |
---|
| 44 | if int(session_id) > 4: |
---|
| 45 | info['next_transition'] = "pay_school_fee" |
---|
| 46 | info['next_verdict'] = '' |
---|
| 47 | info['next_previous_verdict'] = verdict |
---|
| 48 | if verdict in ('A','B','G','C',): #customized |
---|
| 49 | info['next_level_id'] = "%s" % (int(level_id) + 100) |
---|
[5374] | 50 | elif verdict == 'O': |
---|
| 51 | info['next_level_id'] = "%s" % (int(level_id) + 10) |
---|
[3690] | 52 | else: |
---|
| 53 | info['next_level_id'] = level_id |
---|
| 54 | else: |
---|
| 55 | info['next_level_id'] = "%s" % (int(level_id) + 100) |
---|
| 56 | elif review_state == 'returning' and not (has_session and has_level and has_verdict): |
---|
| 57 | reasons = "Your data record is incomplete. School fee payment has been disabled, please contact your faculty!" |
---|
| 58 | |
---|
| 59 | info['reasons'] = reasons |
---|
| 60 | info['next_session_str'] = context.getSessionsVoc(next_session_id) |
---|
| 61 | |
---|
| 62 | return info |
---|