winter 1 год назад
Родитель
Сommit
72bf78d606
1 измененных файлов: 7 добавлений и 4 удалений
  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 Просмотреть файл

@@ -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) {


Загрузка…
Отмена
Сохранить