Browse Source

优化

master
dimengzhe 2 years ago
parent
commit
c2614aa555
  1. 4
      anrui-buscenter/anrui-buscenter-biz/src/main/java/com/yxt/anrui/buscenter/biz/busdeliveredapply/BusDeliveredApplyService.java

4
anrui-buscenter/anrui-buscenter-biz/src/main/java/com/yxt/anrui/buscenter/biz/busdeliveredapply/BusDeliveredApplyService.java

@ -2463,9 +2463,9 @@ public class BusDeliveredApplyService extends MybatisBaseService<BusDeliveredApp
busSidList.removeAll(applyBusSidList);
//根据合同编号以及车辆sid查询busVinSid
List<String> busVinSidList = baseMapper.selectByContractNoToVinSid(dto.getContractId(), vinSid);
busSidList.removeAll(busVinSidList);
busVinSidList.removeAll(Collections.singleton(null));
if (busVinSidList.isEmpty()) {
busSidList.removeAll(busVinSidList);
if (busSidList.isEmpty()) {
isTrue = true;
}
//是否是最后一批出库车辆

Loading…
Cancel
Save