IDEMPIERE-3813 [MOrder] - Method getShipments() / integrate patch suggested by Gustavo Francisco (gustavo.fr4ncisco)

This commit is contained in:
Carlos Ruiz 2018-11-11 18:58:05 -02:00
parent 1b88546a84
commit 53a19b0bf1
1 changed files with 1 additions and 1 deletions

View File

@ -808,7 +808,7 @@ public class MOrder extends X_C_Order implements DocAction
+" WHERE iol.M_InOut_ID=M_InOut.M_InOut_ID"
+" AND iol.C_OrderLine_ID=ol.C_OrderLine_ID"
+" AND ol.C_Order_ID=?)";
List<MInvoice> list = new Query(getCtx(), I_M_InOut.Table_Name, whereClause, get_TrxName())
List<MInOut> list = new Query(getCtx(), MInOut.Table_Name, whereClause, get_TrxName())
.setParameters(get_ID())
.setOrderBy("M_InOut_ID DESC")
.list();