Commit 19c90a28 by HTML5-侯张振

修改 经纪人报表,列表里没有渠道,但是导出的excel表格有渠道

parent e678db22
......@@ -586,13 +586,12 @@ class Kpiadmin extends CI_Controller
$temp['user_mobile'] = $item['user_mobile'];
$temp['building_title'] = iconv('utf-8', 'gbk', $item['building_title']);
$temp['customers'] = $item['customers'];
$temp['channel'] = iconv('utf-8', 'gbk', $item['channel_name']);
array_push($data, $temp);
}
}
//导出
$titles = '经纪人,联系电话,推荐项目名称,客户数,渠道';
$titles = '经纪人,联系电话,推荐项目名称,客户数';
$titles = iconv('utf-8', 'gbk', $titles);
$file = iconv('utf-8', 'gbk', '经纪人数据列表.xls');
$this->export->export_excel($file, $titles, $data);
......
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