Commit 591920d6 authored by zhuwei's avatar zhuwei

进场记录列表-搜索BUG修复

parent d18634ea
......@@ -57,7 +57,7 @@ class MarchIn extends Basic
//3.门店名称
if (!empty($params['store_id'])) {
$where['e.store_id'] = $params['store_id'];
$where['b.store_id'] = $params['store_id'];
}
//4.客户姓名
......
......@@ -186,13 +186,13 @@ class Supervise extends Basic
//4.提交人手机号
if (!empty($params['phone'])) {
$where['b.phone'] = ['LIKE','%'.$params['phone'].'%'];
$where['b.phone'] = ['LIKE','%'.$params['phone'].'%'];
}
//5.跟进内容
if (!empty($params['remark'])) {
$where['a.remark'] = ['LIKE','%'.$params['remark'].'%'];
$where['a.remark'] = ['LIKE','%'.$params['remark'].'%'];
}
//搜索条件 end
......
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