allow actions also in previous work items of a run
This commit is contained in:
parent
cacca105ac
commit
94463df4d5
1 changed files with 2 additions and 2 deletions
|
@ -225,8 +225,8 @@ class WorkItem(Stateful, Track):
|
||||||
return list(getParent(self).query(runId=self.runId))
|
return list(getParent(self).query(runId=self.runId))
|
||||||
|
|
||||||
def doAction(self, action, userName, **kw):
|
def doAction(self, action, userName, **kw):
|
||||||
if self != self.currentWorkItems[-1]:
|
#if self != self.currentWorkItems[-1]:
|
||||||
raise ValueError("Actions are only allowed on the last item of a run.")
|
# raise ValueError("Actions are only allowed on the last item of a run.")
|
||||||
if action not in [t.name for t in self.getAvailableTransitions()]:
|
if action not in [t.name for t in self.getAvailableTransitions()]:
|
||||||
raise ValueError("Action '%s' not allowed in state '%s'" %
|
raise ValueError("Action '%s' not allowed in state '%s'" %
|
||||||
(action, self.state))
|
(action, self.state))
|
||||||
|
|
Loading…
Add table
Reference in a new issue