debug:统计日期缺失最后一天

This commit is contained in:
墨大叔 2024-09-30 13:41:43 +08:00
parent 47284ed2a5
commit 84ea7c334e

View File

@ -704,7 +704,7 @@ public class TransactionBillServiceImpl implements TransactionBillService, After
if (dto.getStartDate() != null && dto.getEndDate() != null && Objects.equals(dto.getGroupBy(), TransactionBillGroupBy.create_date.name())) {
List<BillCountVo> newList = new ArrayList<>();
LocalDate i = dto.getStartDate();
while (i.isBefore(dto.getEndDate())) {
while (!i.isAfter(dto.getEndDate())) {
Date finalI = DateUtils.toDate(i);
BillCountVo count = list.stream().filter(item -> DateUtils.getYYYY_MM_DD(item.getCreateDate()).equals(DateUtils.getYYYY_MM_DD(finalI))).findFirst().orElse(null);
if (count == null) {