Przeglądaj źródła

fix

release_toaliyun_real
winter 1 rok temu
rodzic
commit
72bf78d606
1 zmienionych plików z 7 dodań i 4 usunięć
  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 Wyświetl plik

@@ -61,10 +61,13 @@ public class WxRentContractAgileHelper {
EnumRentContractAgilTimeUnit timeUnit,int time,int payPeriod){ EnumRentContractAgilTimeUnit timeUnit,int time,int payPeriod){
List<BillTimeVo> list = new ArrayList<>(); List<BillTimeVo> list = new ArrayList<>();
int count = 0; 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; BillTimeVo receiveDate = null;
while (true) { while (true) {


Ładowanie…
Anuluj
Zapisz