Browse Source

fix

release_toaliyun_real
winter 1 year ago
parent
commit
72bf78d606
1 changed files with 7 additions and 4 deletions
  1. +7
    -4
      mallinkService/src/main/java/com/iformall/service/helper/WxRentContractAgileHelper.java

+ 7
- 4
mallinkService/src/main/java/com/iformall/service/helper/WxRentContractAgileHelper.java View File

@@ -61,10 +61,13 @@ public class WxRentContractAgileHelper {
EnumRentContractAgilTimeUnit timeUnit,int time,int payPeriod){
List<BillTimeVo> list = new ArrayList<>();
int count = 0;
List<Date> yearsBeginList = new ArrayList<Date>();
yearsBeginList.addAll(yearList);
if (yearsBeginList.size() > 0) {
yearsBeginList.remove(0);
List<Date> yearsBeginList = null;
if (null != yearList) {
yearsBeginList = new ArrayList<Date>();
yearsBeginList.addAll(yearList);
if (yearsBeginList.size() > 0) {
yearsBeginList.remove(0);
}
}
BillTimeVo receiveDate = null;
while (true) {


Loading…
Cancel
Save