Commit 08440bd9 authored by hujun's avatar hujun

agent_id

parent cb330af9
...@@ -2380,8 +2380,8 @@ class Finance extends Basic ...@@ -2380,8 +2380,8 @@ class Finance extends Basic
} }
//提交人姓名 //提交人姓名
if (!empty($this->params['agent_name'])) { if (!empty($this->params['agent_id'])) {
$where['a.agent_name'] = ['like', '%' . $this->params['agent_name'] . '%']; $where['a.agent_id'] = $this->params['agent_id'];
$is_show = 1; $is_show = 1;
} }
...@@ -3011,8 +3011,8 @@ class Finance extends Basic ...@@ -3011,8 +3011,8 @@ class Finance extends Basic
} }
//提交人姓名 //提交人姓名
if (!empty($this->params['name'])) { if (!empty($this->params['agent_id'])) {
$where['d.name'] = ['like', '%' . $this->params['name'] . '%']; $where['d.agent_id'] = $this->params['agent_id'];
$is_show = 1; $is_show = 1;
} }
......
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