Commit 415e3b9f authored by hujun's avatar hujun

修改查询条件-跟进列表

parent cba1eacb
...@@ -75,12 +75,13 @@ class Remark extends Basic ...@@ -75,12 +75,13 @@ class Remark extends Basic
//跟进人手机号 //跟进人手机号
if (!empty($this->params['remark_phone'])) { if (!empty($this->params['remark_phone'])) {
$where['b.phone'] = ['like', "%{$this->params['remark_name']}%"]; $where['b.phone'] = ['like', "%{$this->params['remark_phone']}%"];
} }
//跟进人门店 //跟进人门店
if (!empty($this->params['remark_store'])) { if (!empty($this->params['remark_store'])) {
$where['e.store_name'] = ['like', "%{$this->params['remark_name']}%"]; $where['f.district_name'] = ['NOT NULL'];
$where['e.store_name'] = ['like', "%{$this->params['remark_store']}%"];
} }
//跟进人部门 //跟进人部门
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment