|
@@ -97,13 +97,10 @@ class UserCar extends Base
|
|
|
$request_param['user_id'] = $this->user_id;
|
|
|
$request_param['apply_user'] = $this->user_id;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
$flow = CarFlow::getApproveUser();// 用车审批流程设置
|
|
|
$flow_user = array_column($flow,'user_id');
|
|
|
$flow_key = array_search($request_param['user_id'],$flow_user);// 请用车是否在审批流程人员中
|
|
|
|
|
|
-
|
|
|
$copy = CarFlow::getCopyTo();
|
|
|
$copy_user = array_column($copy,'user_id');
|
|
|
$copy_key = array_search($request_param['user_id'],$copy_user);// 用车人是否在抄送人员中
|
|
@@ -149,6 +146,10 @@ class UserCar extends Base
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|