|
|
@@ -365,6 +365,22 @@ public class InvReceivableServiceImpl implements InvReceivableService {
|
|
|
invSourceQueryVo.setRevenueTimeStartTime(split1[0]);
|
|
|
invSourceQueryVo.setRevenueTimeEndTime(split1[1]);
|
|
|
}
|
|
|
+ if (invSourceQueryVo.getJqPolicyId() != null && !"".equals(invSourceQueryVo.getJqPolicyId())) {
|
|
|
+ String[] split1 = invSourceQueryVo.getJqPolicyId().split(",");
|
|
|
+ invSourceQueryVo.setJqPolicyIds(Arrays.asList(split1));
|
|
|
+ }
|
|
|
+ if (invSourceQueryVo.getSyPolicyId() != null && !"".equals(invSourceQueryVo.getSyPolicyId())) {
|
|
|
+ String[] split1 = invSourceQueryVo.getSyPolicyId().split(",");
|
|
|
+ invSourceQueryVo.setSyPolicyIds(Arrays.asList(split1));
|
|
|
+ }
|
|
|
+ if (invSourceQueryVo.getNonCarPolicyId() != null && !"".equals(invSourceQueryVo.getNonCarPolicyId())) {
|
|
|
+ String[] split1 = invSourceQueryVo.getNonCarPolicyId().split(",");
|
|
|
+ invSourceQueryVo.setNonCarPolicyIds(Arrays.asList(split1));
|
|
|
+ }
|
|
|
+ if (invSourceQueryVo.getLicenseno() != null && !"".equals(invSourceQueryVo.getLicenseno())) {
|
|
|
+ String[] split1 = invSourceQueryVo.getLicenseno().split(",");
|
|
|
+ invSourceQueryVo.setLicensenos(Arrays.asList(split1));
|
|
|
+ }
|
|
|
Page<InvSource> pageData = invSourceMapper.getRecivablePage(page, invSourceQueryVo);
|
|
|
List<InvSource> records = pageData.getRecords();
|
|
|
records.forEach(x -> {
|
|
|
@@ -724,6 +740,12 @@ public class InvReceivableServiceImpl implements InvReceivableService {
|
|
|
return i > 0 ? true : false;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<String> getReceivableListByLicenseno(List<String> namesList) {
|
|
|
+ List<String> strings = invSettlementSourceMapper.getReceivableListByLicenseno(namesList);
|
|
|
+ return strings;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|