|
@@ -632,11 +632,14 @@ public class TCallRecordServiceImpl implements ITCallRecordService
|
|
|
//获取当前的月份
|
|
|
String nowMonth = DateUtils.parseDateToStr(DateUtils.YYYY_MM, nowDate);
|
|
|
//本月业务类型 top7 处理
|
|
|
+ //2025年02月20日17:11:17 这里的查询意图不再走通话记录,走创哥的表
|
|
|
List<Top7Res> top7ResList = this.tCallRecordMapper.getTop7ResListByMonthAndSize(nowMonth, DEFAULT_DAYS_QUERY_COUNT+1);
|
|
|
//处理展示数据
|
|
|
if(!CollectionUtils.isEmpty(top7ResList)) {
|
|
|
//获取本月的所有的数据
|
|
|
- int nowMonthSize = this.tCallRecordMapper.getCallInEqualsMonth(nowMonth);
|
|
|
+ //2025年02月20日17:11:17 这里的所有的数据不再走通话记录,走创哥的表
|
|
|
+// int nowMonthSize = this.tCallRecordMapper.getCallInEqualsMonth(nowMonth);
|
|
|
+ int nowMonthSize = this.tCallRecordMapper.getCallInEqualsMonthNew(nowMonth);
|
|
|
for (int i = 0; i < top7ResList.size(); i++) {
|
|
|
Top7Res top7Res = top7ResList.get(i);
|
|
|
top7Res.setIndex(i+1);
|