Browse Source

fix:增加排序的时间判断4

pre-production
pref_mail@163.com 1 week ago
parent
commit
39e5e7c675
  1. 2
      blade-service/logpm-data-sharing/src/main/java/com/logpm/datasharing/service/impl/LogpmDataSearchServiceImpl.java

2
blade-service/logpm-data-sharing/src/main/java/com/logpm/datasharing/service/impl/LogpmDataSearchServiceImpl.java

@ -432,7 +432,7 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
TrunklineCarsLoadScanEntity trunklineCarsLoadScanEntity = collect.get(0);
TrunklineCarsLoadLineEntity trunklineCarsLoadLineEntity = listByLoadId.stream().filter(t -> t.getNodeName().equals(trunklineCarsLoadScanEntity.getUnloadNodeName())).findFirst().orElse(null);
if(trunklineCarsLoadLineEntity == null){
if(trunklineCarsLoadLineEntity == null || trunklineCarsLoadLineEntity.getArriveDate()== null){
return null;
}

Loading…
Cancel
Save