This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
stats:proc:removeresult_task [2011/09/28 20:47] Patrick Michel stats:proc:removeresult renamed to stats:proc:removeresult_task |
stats:proc:removeresult_task [2013/07/10 12:34] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Remove Result ====== | + | ====== Remove Result (Task) ====== |
| <code xcend> | <code xcend> | ||
| - | removeResult(ident id, ident studentId, ident taskId) { | + | removeResult(ident uid, ident id, ident studentId, ident taskId) { |
| - | assume exists //exams/exam[id]/results/participant[studentId]/result[taskId]; # implies the exam, account, student role and task exist by integrity | + | assume exists /account[uid]/examiner[id]; |
| + | |||
| + | assume exists /exam[id]/participant[studentId]/result[taskId]; | ||
| + | # implies the exam, account, student role and task exist by integrity | ||
| | | ||
| - | remove //exams/exam[id]/results/participant[studentId]/result[taskId]; | + | remove /exam[id]/participant[studentId]/result[taskId]; |
| } | } | ||
| </code> | </code> | ||