From ee3dffff3112b15811e8965f2c7d35730b8d1d03 Mon Sep 17 00:00:00 2001 From: vpj-cd Date: Fri, 26 Sep 2008 15:02:21 +0000 Subject: [PATCH] small bug --- base/src/org/compiere/process/M_Production_Run.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/src/org/compiere/process/M_Production_Run.java b/base/src/org/compiere/process/M_Production_Run.java index 5730627028..5dbbeae9f6 100644 --- a/base/src/org/compiere/process/M_Production_Run.java +++ b/base/src/org/compiere/process/M_Production_Run.java @@ -102,7 +102,7 @@ public class M_Production_Run extends SvrProcess { int line = 100; int no = DB.executeUpdateEx("DELETE M_ProductionLine WHERE M_ProductionPlan_ID = ?", new Object[]{pp.get_ID()},get_TrxName()); - if (no == -1) raiseError("InsertingRoot:ERROR", "DELETE M_ProductionLine WHERE M_ProductionPlan_ID = "+ pp.get_ID()); + if (no == -1) raiseError("ERROR", "DELETE M_ProductionLine WHERE M_ProductionPlan_ID = "+ pp.get_ID()); MProduct product = MProduct.get(getCtx(), pp.getM_Product_ID());