Ejemplo n.º 1
0
  public static int[] getAllOrderlineIDs(Properties ctx, int orderId, String trxName) {
    String whereClause =
        ""
            + " C_ORDER_ID ="
            + orderId
            + " AND AD_CLIENT_ID ="
            + Env.getAD_Client_ID(ctx)
            + " AND ISACTIVE = 'Y'";

    return MOrderLine.getAllIDs(MOrderLine.Table_Name, whereClause, trxName);
  }