修改OTA搜索
This commit is contained in:
+6
-2
@@ -258,8 +258,12 @@ public class OtaManageApplyEOServiceImpl extends ServiceImpl<OtaManageApplyEOMap
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (StringUtils.isNotEmpty(otaManageApplyEO.getAppliedVehicleProject()) && !vehicleSet.contains(otaManageApplyEO.getAppliedVehicleProject())) {
|
||||
continue;
|
||||
|
||||
if (StringUtils.isNotEmpty(otaManageApplyEO.getAppliedVehicleProject())) {
|
||||
List<String> vehicleCollect = vehicleSet.stream().filter(e -> e.contains(otaManageApplyEO.getAppliedVehicleProject())).collect(Collectors.toList());
|
||||
if(CollectionUtils.isEmpty(vehicleCollect)){
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (StringUtils.isNotEmpty(otaManageApplyEO.getMarket()) && !marketSet.contains(otaManageApplyEO.getMarket())) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user