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

@@ -104,7 +104,8 @@ public class SapforPackagesForm extends DataSetControlForm<SapforPackage> {
}
@Override
public boolean isObjectVisible(SapforPackage object) {
return (!SapforPackageDBTable.filterMyOnly || Global.mainModule.getAccount().email.equals(object.sender_address)) &&
return super.isObjectVisible(object)&&
(!SapforPackageDBTable.filterMyOnly || Global.mainModule.getAccount().email.equals(object.sender_address)) &&
(!SapforPackageDBTable.filterActive || object.state.isActive());
}
}