Browse Source

fix

release_toaliyun_real
winter 1 year ago
parent
commit
5744a45bf9
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxAgileContractServiceImpl.java

+ 3
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxAgileContractServiceImpl.java View File

@@ -547,7 +547,9 @@ public class WxAgileContractServiceImpl implements WxAgileContractService {
EnumRentContractAgilTimeUnit timeUnit = EnumRentContractAgilTimeUnit.getEnum(unDeposit.getTimeUnit()); EnumRentContractAgilTimeUnit timeUnit = EnumRentContractAgilTimeUnit.getEnum(unDeposit.getTimeUnit());
WxRentContract contract = wxRentContractMapper.selectById(unDeposit.getRentContractId()); WxRentContract contract = wxRentContractMapper.selectById(unDeposit.getRentContractId());
EnumRentDayPriceCalcute dayPriceCalcute = EnumRentDayPriceCalcute.getEnum(contract.getDayPriceCalcute()); EnumRentDayPriceCalcute dayPriceCalcute = EnumRentDayPriceCalcute.getEnum(contract.getDayPriceCalcute());
List<Date> yearsBeginList = WxRentContractAgileHelper.getYearsBeginList(contract.getRentalStartDate(), contract.getRentalEndDate());
//合同每年的开始日期不设置,设置了会截断
//List<Date> yearsBeginList = WxRentContractAgileHelper.getYearsBeginList(contract.getRentalStartDate(), contract.getRentalEndDate());
List<Date> yearsBeginList = null;
List<Long> shopIdList = contract.shopIdsByRentInfo(); List<Long> shopIdList = contract.shopIdsByRentInfo();
Map<Long, BigDecimal> shopAreaMap = contract.getRentShopArea(); Map<Long, BigDecimal> shopAreaMap = contract.getRentShopArea();


Loading…
Cancel
Save