//FR: [ 2214883 ] Remove SQL code and Replace for Query

Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2214883
This commit is contained in:
vpj-cd 2010-02-25 21:32:06 +00:00
parent 398eaf6f10
commit 1603524916
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ public class MProductBOM extends X_M_Product_BOM
public static MProductBOM[] getBOMLines (Properties ctx, int M_Product_ID, String trxName) public static MProductBOM[] getBOMLines (Properties ctx, int M_Product_ID, String trxName)
{ {
//FR: [ 2214883 ] Remove SQL code and Replace for Query - red1 //FR: [ 2214883 ] Remove SQL code and Replace for Query - red1
String whereClause = "M_Product_ID=?"; final String whereClause = "M_Product_ID=?";
List <MProductBOM> list = new Query(ctx, MProductBOM.Table_Name, whereClause, trxName) List <MProductBOM> list = new Query(ctx, I_M_Product_BOM.Table_Name, whereClause, trxName)
.setParameters(new Object[]{M_Product_ID}) .setParameters(new Object[]{M_Product_ID})
.setOrderBy("Line") .setOrderBy("Line")
.list(); .list();