no message

This commit is contained in:
2024-10-20 21:06:15 +03:00
parent b40328f931
commit 99643aa755
21 changed files with 36 additions and 63 deletions

View File

@@ -41,11 +41,14 @@ public class ProjectArraysForm extends DataSetControlForm<ProjectArray> {
}
@Override
public boolean isObjectVisible(ProjectArray object) {
if (object.isTemplFlag > 0) return true;
return object.shortName.startsWith(object.filterName) &&
object.location.toString().startsWith(object.filterLocation) &&
object.locName.startsWith(object.filterLocationName) &&
object.has_decl_place(object.filterFile) &&
object.has_region(object.filterRegion);
if (super.isObjectVisible(object)) {
if (object.isTemplFlag > 0) return true;
return object.shortName.startsWith(object.filterName) &&
object.location.toString().startsWith(object.filterLocation) &&
object.locName.startsWith(object.filterLocationName) &&
object.has_decl_place(object.filterFile) &&
object.has_region(object.filterRegion);
}
return false;
}
}