|
|
@ -124,9 +124,9 @@ class Customer extends ApiCommon
|
|
|
|
return resultArray(['data' => $authData]);
|
|
|
|
return resultArray(['data' => $authData]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 判断是否有客户捞取审批
|
|
|
|
// 判断是否有客户捞取审批
|
|
|
|
$customerCheck = db('crm_customer_check')->where(['customer_id' => $param['id']])->where(['check_status'=>0])->find();
|
|
|
|
$customerCheck = db('crm_customer_check')->where(['customer_id' => $param['id']])->where(['check_status' => 0])->find();
|
|
|
|
if(!$customerCheck){
|
|
|
|
if (!empty($customerCheck)) {
|
|
|
|
$data['flow_id']=$customerCheck['flow_id'];
|
|
|
|
$data['flow_id'] = $customerCheck['flow_id'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return resultArray(['data' => $data]);
|
|
|
|
return resultArray(['data' => $data]);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -888,7 +888,7 @@ class Customer extends ApiCommon
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public function top()
|
|
|
|
public function top()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
$customerModel=model('Customer');
|
|
|
|
$customerModel = model('Customer');
|
|
|
|
$param = $this->param;
|
|
|
|
$param = $this->param;
|
|
|
|
$userInfo = $this->userInfo;
|
|
|
|
$userInfo = $this->userInfo;
|
|
|
|
$param['create_role_id'] = $userInfo['id'];
|
|
|
|
$param['create_role_id'] = $userInfo['id'];
|
|
|
|