Commit 7193fa6d authored by hujun's avatar hujun

int

parent 3f8938c2
...@@ -193,19 +193,19 @@ class Remark extends Basic ...@@ -193,19 +193,19 @@ class Remark extends Basic
$where['page_no'] = $this->params['pageNo']; $where['page_no'] = $this->params['pageNo'];
$where['page_size'] = $this->params['pageSize']; $where['page_size'] = $this->params['pageSize'];
if (!empty($this->params['user_id'])) { if (!empty($this->params['user_id'])) {
$where['user_id'] = $this->params['user_id']; $where['user_id'] = (int)$this->params['user_id'];
} }
if (!empty($this->params['agent_id'])) { if (!empty($this->params['agent_id'])) {
$where['agent_id'] = $this->params['agent_id']; $where['agent_id'] = (int)$this->params['agent_id'];
} }
if (!empty($this->params['content'])) { if (!empty($this->params['content'])) {
$where['content'] = $this->params['content']; $where['content'] = $this->params['content'];
} }
if (!empty($this->params['remark_store_id'])) { if (!empty($this->params['remark_store_id'])) {
$where['store_id'] = $this->params['remark_store_id']; $where['store_id'] = (int)$this->params['remark_store_id'];
} }
if (!empty($this->params['remark_district_id'])) { if (!empty($this->params['remark_district_id'])) {
$where['district_id'] = $this->params['remark_district_id']; $where['district_id'] = (int)$this->params['remark_district_id'];
} }
$result_data = $follow_up_service->getPhoneFollowList($this->params['start_date'], $this->params['end_date'], $where, $this->userId); $result_data = $follow_up_service->getPhoneFollowList($this->params['start_date'], $this->params['end_date'], $where, $this->userId);
......
...@@ -399,11 +399,11 @@ ...@@ -399,11 +399,11 @@
<div class="clear"> <div class="clear">
</div> </div>
<select class="form-control btn4 ld-Marheight input" name="" id="district_id"> <!--<select class="form-control btn4 ld-Marheight input" name="" id="district_id">
<option value="">跟进人所在部门</option> <option value="">跟进人所在部门</option>
</select> </select>
<select class="form-control btn4 ld-Marheight input" name="" id="guest_stores" value=""> <select class="form-control btn4 ld-Marheight input" name="" id="guest_stores" value="">
</select> </select>-->
<!--<span class="fore-span ld-Marheight"> <!--<span class="fore-span ld-Marheight">
客户去重: 客户去重:
</span> </span>
......
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