Если все фильтры отключены, они не учитываются.

This commit is contained in:
2023-12-26 19:41:11 +03:00
parent ce31d5dae2
commit 7030e13238
4 changed files with 20 additions and 11 deletions

View File

@@ -274,7 +274,6 @@ public class DataSet<K, D extends DBObject> extends DataSetAnchestor {
filter.Refresh();
}
public boolean applyFilters(D object) {
//todo добавить ситуацию когда все фильтры отменены
for (DataSetFilter<D> filter : filters) {
if (!filter.Validate(object))
return false;