Changeset 2679 for WAeUP_SRP/base/skins/waeup_epayment
- Timestamp:
- 16 Nov 2007, 13:57:40 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_epayment/interswitch_cb.py
r2678 r2679 82 82 next_transition = next_info['next_transition'] 83 83 next_verdict = next_info['next_verdict'] 84 previous_verdict = next_info['previous_verdict']84 next_previous_verdict = next_info['next_previous_verdict'] 85 85 86 86 if resp == '00': … … 94 94 pass 95 95 verdict = s_brain.verdict 96 if previous_verdict == 'N/A':97 previous_verdict = ''96 if next_previous_verdict == 'N/A': 97 next_previous_verdict = '' 98 98 study_course.getContent().edit(mapping= {'current_level': next_level_id, 99 99 'current_session': next_session_id, 100 100 'current_verdict': next_verdict, 101 'previous_verdict': previous_verdict,101 'previous_verdict': next_previous_verdict, 102 102 }) 103 103 if next_transition:
Note: See TracChangeset for help on using the changeset viewer.