Package org.compiere.model

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

Related Classes of org.compiere.model.MCostDetail

Copyright © 2018 www.massapicom. 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.