Commit ae01b850 authored by hujun's avatar hujun

跟进优化

parent b1e530d8
......@@ -136,8 +136,7 @@ class Remark extends Basic
$is_outpace_call_num = 1;
}
$phone = $m_agent->getAgentsById($this->params['agent_id'], 'phone');
$phone = $m_agent->getAgentsById($this->userId, 'phone');
if ($is_outpace_call_num == 1 ) {
$is_privacy = $redis->get('s_is_privacy');//判断是否当前经纪人跟当前客户是否有电话绑定 从redis查询
if (empty($phone)) {
......@@ -155,7 +154,7 @@ class Remark extends Basic
$list[$k]['user_phone'] = substr_replace($list[$k]['user_phone'], '****', 3, 4);
$list[$k]['admin'] = $m_agent->getAgentsById($v['agent_id'], 'name');
$data[$k]['label_name'] = array_key_exists($v['labels_id']) ? $label_data[$v['labels_id']] : '';
$data[$k]['label_name'] = array_key_exists($v['labels_id'], $label_data) ? $label_data[$v['labels_id']] : '';
}
$data['data']['list'] = $list;
$data['data']['total'] = 40000;
......
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