|
@@ -213,7 +213,7 @@ public class StatisticalServiceImpl implements IStatisticalService {
|
213
|
213
|
public ResponseBean selectUserResource(Integer orgId, LocalDate startDate, LocalDate endDate) {
|
214
|
214
|
ResponseBean responseBean = new ResponseBean();
|
215
|
215
|
// 用户来源 柱状
|
216
|
|
- List<Map<String, Object>> mapList = taPersonMapper.selectUserSourceColumnar(orgId, CommConstant.PERSON_REALTY_CONSULTANT, startDate, endDate);
|
|
216
|
+// List<Map<String, Object>> mapList = taPersonMapper.selectUserSourceColumnar(orgId, CommConstant.PERSON_REALTY_CONSULTANT, startDate, endDate);
|
217
|
217
|
|
218
|
218
|
// 用户来源饼状
|
219
|
219
|
// 来源置业顾问, 来源客户,其他
|
|
@@ -230,7 +230,7 @@ public class StatisticalServiceImpl implements IStatisticalService {
|
230
|
230
|
List<Map<String, Object>> selectUserSourceData = taPersonMapper.selectUserSourceData(orgId, CommConstant.PERSON_ESTATE_AGENT, startDate, endDate);
|
231
|
231
|
|
232
|
232
|
Map<String, Object> result = new HashMap<>();
|
233
|
|
- result.put("columnar", mapList);
|
|
233
|
+ result.put("columnar", new ArrayList<Map<String,Object>>());
|
234
|
234
|
result.put("pie", map);
|
235
|
235
|
result.put("data", selectUserSourceData);
|
236
|
236
|
|