Examples of MCostDetail


Examples of org.compiere.model.MCostDetail

   */
  public BigDecimal getProductCosts (MAcctSchema as, int AD_Org_ID, boolean zeroCostsOK, String whereClause)
  {
    if (whereClause != null)
    {
      MCostDetail cd = MCostDetail.get (Env.getCtx(), whereClause,
          get_ID(), getM_AttributeSetInstance_ID(), as.getC_AcctSchema_ID(), p_po.get_TrxName());
      if (cd != null)
        return cd.getAmt();
    }
    return getProductCosts(as, AD_Org_ID, zeroCostsOK);
  }   //  getProductCosts
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.