Fix su recalc column in caso di entity nulla

This commit is contained in:
2024-10-24 09:33:07 +02:00
parent 5e1e41bc0d
commit 222ac6d070

View File

@@ -824,6 +824,9 @@ public abstract class EntityBase implements Serializable, Cloneable, EntityInter
sqlField = split[1];
} else entity = this;
if(entity == null)
return;
if (entity instanceof List) {
List<EntityInterface> list = (List<EntityInterface>) entity;