|
@@ -30,7 +30,13 @@ public class BEH0034 extends QCCatalogue {
|
|
|
return;
|
|
|
}
|
|
|
List<String> wtOperationNames = CatalogueUtil.noInQuotes(
|
|
|
- operations.stream().map(i -> i.getName()).filter(i -> StringUtil.isNotBlank(i)).distinct().collect(Collectors.toList()),
|
|
|
+ operations.stream()
|
|
|
+ .filter(i ->
|
|
|
+ i != null && StringUtil.isNotBlank(i.getName()) && i.getNegative() == null
|
|
|
+ )
|
|
|
+ .map(i -> i.getName())
|
|
|
+ .distinct()
|
|
|
+ .collect(Collectors.toList()),
|
|
|
pastLabel.getText()
|
|
|
);
|
|
|
if (ListUtil.isNotEmpty(wtOperationNames)) {
|