diff --git a/ad-platform-manage/ad-platform-management/src/main/java/com/baiye/modules/report/service/impl/QueryReportServiceImpl.java b/ad-platform-manage/ad-platform-management/src/main/java/com/baiye/modules/report/service/impl/QueryReportServiceImpl.java index 58062e83..2d43e94e 100644 --- a/ad-platform-manage/ad-platform-management/src/main/java/com/baiye/modules/report/service/impl/QueryReportServiceImpl.java +++ b/ad-platform-manage/ad-platform-management/src/main/java/com/baiye/modules/report/service/impl/QueryReportServiceImpl.java @@ -590,7 +590,6 @@ public class QueryReportServiceImpl implements QueryReportService { return CommonResponse.createBySuccess(list); } - @Override public CommonResponse getCallRecordDetails(Long clueId) { @@ -599,7 +598,8 @@ public class QueryReportServiceImpl implements QueryReportService { int turnOnNum = 0; int validNum = 0; //查询线索的所有通话记录 (7天内,7天外的录音会被迁移,无法下载) - String beginOfDay = DateUtil.beginOfDay(DateUtil.offsetDay(DateUtil.date(), -7)).toString(); + //todo 改为两周 + String beginOfDay = DateUtil.beginOfDay(DateUtil.offsetDay(DateUtil.date(), -14)).toString(); String endOfDay = DateUtil.date().toString(); List allByClueId = allCallInfoRepository.queryAllByTime(beginOfDay, endOfDay, clueId); List listDto = new ArrayList<>();