Browse Source

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

pre-production
pref_mail@163.com 1 week ago
parent
commit
1afa88becb
  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

@ -458,7 +458,7 @@ public class LogpmDataSearchServiceImpl implements ILogpmDataSearchService {
TrunklineCarsLoadLineEntity trunklineCarsLoadLineEntity = listByLoadId.stream().filter(t -> t.getNodeName().equals(trunklineCarsLoadScanEntity.getWarehouseName())).findFirst().orElse(null); TrunklineCarsLoadLineEntity trunklineCarsLoadLineEntity = listByLoadId.stream().filter(t -> t.getNodeName().equals(trunklineCarsLoadScanEntity.getWarehouseName())).findFirst().orElse(null);
if(trunklineCarsLoadLineEntity == null){ if(trunklineCarsLoadLineEntity == null || trunklineCarsLoadLineEntity.getStartDate() ==null){
return null; return null;
} }

Loading…
Cancel
Save