flow_id 解决 #21

Merged
mengfucius merged 1 commits from zm into master 2 years ago

@ -125,7 +125,7 @@ class Customer extends ApiCommon
} }
// 判断是否有客户捞取审批 // 判断是否有客户捞取审批
$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]);

@ -108,7 +108,7 @@ class CustomerCheck extends Common
->where($partMap) ->where($partMap)
->where($dealtWhere) ->where($dealtWhere)
->limit($request['offset'], $request['length']) ->limit($request['offset'], $request['length'])
->field('customer_check.*,customer.name as name'.$customerField) ->field('customer_check.*,customer.name as name,'.$customerField)
->orderRaw($order) ->orderRaw($order)
->select(); ->select();

Loading…
Cancel
Save