Example #1
0
 /**
  * 流程分配
  */
 public function dispatch($accepted_user, $accepted_role)
 {
     // 校验是否可以执行分配动作
     Util\Condition::checkDispatchCondition($this->flow, $accepted_user, $accepted_role);
     // 跳转到指定步骤
     Util\Step::dispatch($this->flow, $accepted_user, $accepted_role);
 }