From bfa676a54de51701436e94ec2963e8b524077e46 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 20 May 2020 20:36:39 +0200 Subject: [PATCH] Product-only: - always set EntryUpdated in the managed (and merged) instance, as the copyFooData() methods do no longer copy timestamps MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../product/BasePizzaProductEnterpriseBean.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java b/src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java index 59f79d2..cc0440d 100644 --- a/src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java +++ b/src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java @@ -142,9 +142,6 @@ public abstract class BasePizzaProductEnterpriseBean extends BasePizzaEnterprise throw new IllegalStateException(MessageFormat.format("detachedProduct.productId={0} is not valid.", detachedProduct.getProductId())); //NOI18N } - // Set updated timestamp - detachedProduct.setProductEntryUpdated(new Date()); - // Get product from it and find it final Product foundProduct = this.createManaged(detachedProduct); @@ -157,6 +154,12 @@ public abstract class BasePizzaProductEnterpriseBean extends BasePizzaEnterprise // Merge product instance final Product managedProduct = this.getEntityManager().merge(foundProduct); + // Should be there + assert (managedProduct instanceof Product) : "managedProduct is null"; //NOI18N + + // Set updated timestamp + managedProduct.setProductEntryUpdated(new Date()); + // Trace message this.getLoggerBeanLocal().logTrace(MessageFormat.format("mergeProductData: managedProduct={0} - EXIT!", managedProduct)); //NOI18N -- 2.39.5