Commit 33b86d78 authored by hujun's avatar hujun

客户id搜索

parent 72f1aa16
...@@ -178,7 +178,6 @@ class Finance extends Basic ...@@ -178,7 +178,6 @@ class Finance extends Basic
case 10 : case 10 :
//成交报告列表-全部 //成交报告列表-全部
$where['a.status'] = ['IN','10,11,13']; $where['a.status'] = ['IN','10,11,13'];
$is_show = 0;
$excel_title .= '-全部'; $excel_title .= '-全部';
break; break;
default : default :
...@@ -253,6 +252,10 @@ class Finance extends Basic ...@@ -253,6 +252,10 @@ class Finance extends Basic
$is_show = 1; $is_show = 1;
} }
if (!empty($this->params['user_id'])) {
$where['b.user_id'] = $this->params['user_id'];
}
if (empty($this->params['excel'])) { if (empty($this->params['excel'])) {
$list_data = $this->m_bargain->getBargainList($pageNo, $pageSize, $order, $fields, $where); $list_data = $this->m_bargain->getBargainList($pageNo, $pageSize, $order, $fields, $where);
......
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