From 3491ac27454f4e179f3d605236714f54004826ee Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Mon, 28 Jan 2008 23:57:41 +0000 Subject: [PATCH] Fix [ 1881480 ] Navigation problem between tabs --- base/src/org/compiere/model/GridTab.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/base/src/org/compiere/model/GridTab.java b/base/src/org/compiere/model/GridTab.java index d4e832c3b9..77bc924b1c 100644 --- a/base/src/org/compiere/model/GridTab.java +++ b/base/src/org/compiere/model/GridTab.java @@ -572,7 +572,10 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable m_parentNeedSave = true; if (where.length() != 0) where.append(" AND "); - where.append(lc).append(" is null "); + // where.append(lc).append(" is null "); + // as opened by this fix [ 1881480 ] Navigation problem between tabs + // it's safer to avoid retrieving details at all if there is no parent value + where.append (" 2=3"); } else {