|
@@ -858,7 +858,7 @@ class TaskProc {
|
|
|
foreach ($task->curSteps as &$tsp) { # 初期里面只有一个任务
|
|
|
$tsp = new Ins_TaskStep($tsp);
|
|
|
if (strlen($tsp->mo()->next) > 0) { # 有后续任务
|
|
|
- $arr = explode(',', $tsp->mo()->next);
|
|
|
+ $arr += explode(',', $tsp->mo()->next); # 累加下一个任务步骤
|
|
|
}
|
|
|
}
|
|
|
foreach ($arr as $stpid) { # 轮询添加后续任务
|