From 39d9c68895edcbb43fcafc41b36cccb03a3976ea Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 21 Jan 2020 15:49:14 +0100 Subject: [PATCH] IDEMPIERE-4152 : Payment Allocation : notify user when date changes - peer review --- .../WEB-INF/src/org/adempiere/webui/apps/form/WAllocation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WAllocation.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WAllocation.java index 42a8a6afcd..c7ee486272 100755 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WAllocation.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/apps/form/WAllocation.java @@ -708,7 +708,7 @@ public class WAllocation extends Allocation // Set AllocationDate if (allocDate != null) { if (! allocDate.equals(dateField.getValue())) { - Clients.showNotification(Msg.getMsg(Env.getCtx(), "AllocationDateUpdated"), Clients.NOTIFICATION_TYPE_INFO, dateField.getComponent(), "start_before", -1, true); + Clients.showNotification(Msg.getMsg(Env.getCtx(), "AllocationDateUpdated"), Clients.NOTIFICATION_TYPE_INFO, dateField.getComponent(), "start_before", -1, false); dateField.setValue(allocDate); } }