手动放入公海

pull/37/head
张萌 2 years ago
parent e9a082aa9a
commit 53adf43e91

@ -423,21 +423,23 @@ class Customer extends ApiCommon
# 消息数据 # 消息数据
$message = []; $message = [];
# 获取公海规则数据
$customerPoolData = db('crm_customer_pool')->where('pool_id=' . $poolId)->column(['customer_type']);
$customerTypeArray = explode(',', $customerPoolData[0]);
# 获取客户数据 # 获取客户数据
$customerData = []; $customerData = [];
$customerList = db('crm_customer')->field(['customer_id', 'owner_user_id', 'name', 'crm_lthugd'])->whereIn('customer_id', $customerIds)->select(); $customerList = db('crm_customer')->field(['customer_id', 'owner_user_id', 'name', 'crm_roziuw'])->whereIn('customer_id', $customerIds)->select();
foreach ($customerList as $key => $value) {
$customerData[$value['customer_id']] = $value;
}
# 获取公海规则数据
$customerPoolData = db('crm_customer_pool')->field(['customer_type'])->where('pool_id=' . $poolId)->find();
foreach ($customerList as $key => $value) {
# 判断客户类型是否符合公海池客户类型 # 判断客户类型是否符合公海池客户类型
if (!in_array($customerData['crm_lthugd'], $customerPoolData)) { if (!in_array($value['crm_roziuw'], $customerTypeArray)) {
$message[] = '客户类型与公海池类型不匹配!'; $message[] = '客户类型与公海池类型不匹配!';
return resultArray(['error' => $message]); return resultArray(['error' => $message]);
} }
$customerData[$value['customer_id']] = $value;
}
# 整理数据 # 整理数据
@ -1195,7 +1197,7 @@ class Customer extends ApiCommon
*/ */
public function Type() public function Type()
{ {
$data = db('admin_field')->where(['types' => 'crm_customer', 'field' => 'crm_lthugd'])->value('options'); $data = db('admin_field')->where(['types' => 'crm_customer', 'field' => 'crm_roziuw'])->value('options');
$data = explode(',', $data); $data = explode(',', $data);

Loading…
Cancel
Save