From 5744a45bf9652388f5de8d90997d7abc07afc25b Mon Sep 17 00:00:00 2001 From: winter <664946893@qq.com> Date: Tue, 19 Nov 2024 12:19:22 +0800 Subject: [PATCH] fix --- .../com/iformall/service/impl/WxAgileContractServiceImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxAgileContractServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxAgileContractServiceImpl.java index 78896656b..3e5760688 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxAgileContractServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxAgileContractServiceImpl.java @@ -547,7 +547,9 @@ public class WxAgileContractServiceImpl implements WxAgileContractService { EnumRentContractAgilTimeUnit timeUnit = EnumRentContractAgilTimeUnit.getEnum(unDeposit.getTimeUnit()); WxRentContract contract = wxRentContractMapper.selectById(unDeposit.getRentContractId()); EnumRentDayPriceCalcute dayPriceCalcute = EnumRentDayPriceCalcute.getEnum(contract.getDayPriceCalcute()); - List yearsBeginList = WxRentContractAgileHelper.getYearsBeginList(contract.getRentalStartDate(), contract.getRentalEndDate()); + //合同每年的开始日期不设置,设置了会截断 + //List yearsBeginList = WxRentContractAgileHelper.getYearsBeginList(contract.getRentalStartDate(), contract.getRentalEndDate()); + List yearsBeginList = null; List shopIdList = contract.shopIdsByRentInfo(); Map shopAreaMap = contract.getRentShopArea();