[ROSSOGARGANO]

modifica ordini di lavorazione
This commit is contained in:
2024-09-02 17:06:30 +02:00
parent 859c50334a
commit 0d77488056
9 changed files with 76 additions and 17 deletions

View File

@@ -937,6 +937,7 @@ public abstract class EntityBase implements Serializable, Cloneable, EntityInter
final List<Field> childs = entityHolder.getEntityChildrenFields(getClass());
for (Field entityChildField : childs) {
entityChildField.setAccessible(true);
Object entityChildRef = entityChildField.get(clonedEntity);
if (entityChildRef instanceof List) {
for (EntityBase entityChild : (List<EntityBase>) entityChildRef) {