Examples of MAcctSchema


Examples of org.compiere.model.MAcctSchema

  //  action_loadBOM

  /*CHANGES START HERE DOMINIC TARR 20081110*/
  private MCost getCostForBomLine(X_PP_Product_BOMLine bomline)
  {
    MAcctSchema as = new MAcctSchema (
        Env.getCtx(),
        Integer.parseInt(Env.getCtx().getProperty("#AD_Client_ID")),
        "MAcctSchema"
      );
  MProduct prod = new MProduct(Env.getCtx(),bomline.getM_Product_ID(),"MProduct");
View Full Code Here

Examples of org.compiere.model.MAcctSchema

    return costPriceLL;    
  }

  private Collection<MCost> getCosts(MProduct product, int M_CostElement_ID)
  {
    MAcctSchema as = MAcctSchema.get(getCtx(), p_C_AcctSchema_ID);
    CostDimension d = new CostDimension(product, as, p_M_CostType_ID, p_AD_Org_ID, 0, M_CostElement_ID);
    return d.toQuery(MCost.class, get_TrxName()).list();
  }
View Full Code Here

Examples of org.compiere.model.MAcctSchema

      + ",M_PriceList_Version_ID=" + p_M_PriceList_Version_ID
      + ",M_CostElement_ID=" + p_M_CostElement_ID);
   
    MWarehouse wh = MWarehouse.get(getCtx(), p_M_Warehouse_ID);
    MClient c = MClient.get(getCtx(), wh.getAD_Client_ID());
    MAcctSchema as = c.getAcctSchema();

    //  Delete (just to be sure)
    StringBuffer sql = new StringBuffer ("DELETE T_InventoryValue WHERE AD_PInstance_ID=");
    sql.append(getAD_PInstance_ID());
    int no = DB.executeUpdateEx(sql.toString(), get_TrxName());

    //  Insert Standard Costs **CHANGE STARTS HERE - RM 5/11/08, INCLUDE FUTURE PRICE FROM M_COST -NEEDS EXTRA COL ON T_INVENTORYVALUE
    sql = new StringBuffer ("INSERT INTO T_InventoryValue "
      + "(AD_PInstance_ID, M_Warehouse_ID, M_Product_ID, M_AttributeSetInstance_ID,"
      + " AD_Client_ID, AD_Org_ID, CostStandard,futurecostprice) "
      + "SELECT ").append(getAD_PInstance_ID())
      .append(", w.M_Warehouse_ID, c.M_Product_ID, c.M_AttributeSetInstance_ID,"
      + " w.AD_Client_ID, w.AD_Org_ID, c.CurrentCostPrice, c.futurecostprice "
      + "FROM M_Warehouse w"
      + " INNER JOIN AD_ClientInfo ci ON (w.AD_Client_ID=ci.AD_Client_ID)"
      + " INNER JOIN C_AcctSchema acs ON (ci.C_AcctSchema1_ID=acs.C_AcctSchema_ID)"
      + " INNER JOIN M_Cost c ON (acs.C_AcctSchema_ID=c.C_AcctSchema_ID AND acs.M_CostType_ID=c.M_CostType_ID AND c.AD_Org_ID IN (0, w.AD_Org_ID))"
      + " INNER JOIN M_CostElement ce ON (c.M_CostElement_ID=ce.M_CostElement_ID AND ce.CostingMethod='S' AND ce.CostElementType='M') "
      + "WHERE w.M_Warehouse_ID=").append(p_M_Warehouse_ID);
    //*CHANGE ENDS HERE
   
    int noInsertStd = DB.executeUpdateEx(sql.toString(), get_TrxName());
    log.fine("Inserted Std=" + noInsertStd);
    if (noInsertStd == 0)
      return "No Standard Costs found";

    //  Insert addl Costs **CHANGE STARTS HERE - RM 5/11/08, INCLUDE FUTURE PRICE FROM M_COST -NEEDS EXTRA COL ON T_INVENTORYVALUE
    int noInsertCost = 0;
    if (p_M_CostElement_ID != 0)
    {
      sql = new StringBuffer ("INSERT INTO T_InventoryValue "
        + "(AD_PInstance_ID, M_Warehouse_ID, M_Product_ID, M_AttributeSetInstance_ID,"
        + " AD_Client_ID, AD_Org_ID, CostStandard, Cost, M_CostElement_ID, futurecostprice) "
        + "SELECT ").append(getAD_PInstance_ID())
        .append(", w.M_Warehouse_ID, c.M_Product_ID, c.M_AttributeSetInstance_ID,"
        + " w.AD_Client_ID, w.AD_Org_ID, 0, c.CurrentCostPrice, c.M_CostElement_ID, c.futurecostprice "
        + "FROM M_Warehouse w"
        + " INNER JOIN AD_ClientInfo ci ON (w.AD_Client_ID=ci.AD_Client_ID)"
        + " INNER JOIN C_AcctSchema acs ON (ci.C_AcctSchema1_ID=acs.C_AcctSchema_ID)"
        + " INNER JOIN M_Cost c ON (acs.C_AcctSchema_ID=c.C_AcctSchema_ID AND acs.M_CostType_ID=c.M_CostType_ID AND c.AD_Org_ID IN (0, w.AD_Org_ID)) "
        + "WHERE w.M_Warehouse_ID=").append(p_M_Warehouse_ID)
        .append(" AND c.M_CostElement_ID=").append(p_M_CostElement_ID)
        .append(" AND NOT EXISTS (SELECT * FROM T_InventoryValue iv "
          + "WHERE iv.AD_PInstance_ID=").append(getAD_PInstance_ID())
          .append(" AND iv.M_Warehouse_ID=w.M_Warehouse_ID"
          + " AND iv.M_Product_ID=c.M_Product_ID"
          + " AND iv.M_AttributeSetInstance_ID=c.M_AttributeSetInstance_ID)");
      noInsertCost = DB.executeUpdateEx(sql.toString(), get_TrxName());
      log.fine("Inserted Cost=" + noInsertCost);
//      *CHANGE ENDS HERE 
     
      //  Update Std Cost Records
      sql = new StringBuffer ("UPDATE T_InventoryValue iv "
        + "SET (Cost, M_CostElement_ID)="
          + "(SELECT c.CurrentCostPrice, c.M_CostElement_ID "
          + "FROM M_Warehouse w"
          + " INNER JOIN AD_ClientInfo ci ON (w.AD_Client_ID=ci.AD_Client_ID)"
          + " INNER JOIN C_AcctSchema acs ON (ci.C_AcctSchema1_ID=acs.C_AcctSchema_ID)"
          + " INNER JOIN M_Cost c ON (acs.C_AcctSchema_ID=c.C_AcctSchema_ID"
            + " AND acs.M_CostType_ID=c.M_CostType_ID AND c.AD_Org_ID IN (0, w.AD_Org_ID)) "
          + "WHERE c.M_CostElement_ID=" + p_M_CostElement_ID
          + " AND iv.M_Warehouse_ID=w.M_Warehouse_ID"
          + " AND iv.M_Product_ID=c.M_Product_ID"
          + " AND iv.M_AttributeSetInstance_ID=c.M_AttributeSetInstance_ID) "
        + "WHERE EXISTS (SELECT * FROM T_InventoryValue ivv "
          + "WHERE ivv.AD_PInstance_ID=" + getAD_PInstance_ID()
          + " AND ivv.M_CostElement_ID IS NULL)");
      int noUpdatedCost = DB.executeUpdateEx(sql.toString(), get_TrxName());
      log.fine("Updated Cost=" + noUpdatedCost);
    }   
    if ((noInsertStd+noInsertCost) == 0)
      return "No Costs found";
   
    //  Update Constants
    //  YYYY-MM-DD HH24:MI:SS.mmmm  JDBC Timestamp format
    String myDate = p_DateValue.toString();
    sql = new StringBuffer ("UPDATE T_InventoryValue SET ")
      .append("DateValue=TO_DATE('").append(myDate.substring(0,10))
      .append(" 23:59:59','YYYY-MM-DD HH24:MI:SS'),")
      .append("M_PriceList_Version_ID=").append(p_M_PriceList_Version_ID).append(",")
      .append("C_Currency_ID=").append(p_C_Currency_ID)
      .append(" WHERE AD_PInstance_ID=" + getAD_PInstance_ID());
    no = DB.executeUpdateEx(sql.toString(), get_TrxName());
    log.fine("Constants=" + no);

    //  Get current QtyOnHand with ASI
    sql = new StringBuffer ("UPDATE T_InventoryValue iv SET QtyOnHand = "
        + "(SELECT SUM(QtyOnHand) FROM M_Storage s"
        + " INNER JOIN M_Locator l ON (l.M_Locator_ID=s.M_Locator_ID) "
        + "WHERE iv.M_Product_ID=s.M_Product_ID"
        + " AND iv.M_Warehouse_ID=l.M_Warehouse_ID"
        + " AND iv.M_AttributeSetInstance_ID=s.M_AttributeSetInstance_ID) "
      + "WHERE AD_PInstance_ID=").append(getAD_PInstance_ID())
      .append(" AND iv.M_AttributeSetInstance_ID<>0");
    no = DB.executeUpdateEx(sql.toString(), get_TrxName());
    log.fine("QtHand with ASI=" + no);
    //  Get current QtyOnHand without ASI
    sql = new StringBuffer ("UPDATE T_InventoryValue iv SET QtyOnHand = "
        + "(SELECT SUM(QtyOnHand) FROM M_Storage s"
        + " INNER JOIN M_Locator l ON (l.M_Locator_ID=s.M_Locator_ID) "
        + "WHERE iv.M_Product_ID=s.M_Product_ID"
        + " AND iv.M_Warehouse_ID=l.M_Warehouse_ID) "
      + "WHERE iv.AD_PInstance_ID=").append(getAD_PInstance_ID())
      .append(" AND iv.M_AttributeSetInstance_ID=0");
    no = DB.executeUpdateEx(sql.toString(), get_TrxName());
    log.fine("QtHand w/o ASI=" + no);
   
    //  Adjust for Valuation Date
    sql = new StringBuffer("UPDATE T_InventoryValue iv "
      + "SET QtyOnHand="
        + "(SELECT iv.QtyOnHand - NVL(SUM(t.MovementQty), 0) "
        + "FROM M_Transaction t"
        + " INNER JOIN M_Locator l ON (t.M_Locator_ID=l.M_Locator_ID) "
        + "WHERE t.M_Product_ID=iv.M_Product_ID"
        + " AND t.M_AttributeSetInstance_ID=iv.M_AttributeSetInstance_ID"
        + " AND t.MovementDate > iv.DateValue"
        + " AND l.M_Warehouse_ID=iv.M_Warehouse_ID) "
      + "WHERE iv.M_AttributeSetInstance_ID<>0"
      + " AND iv.AD_PInstance_ID=").append(getAD_PInstance_ID());
    no = DB.executeUpdateEx(sql.toString(), get_TrxName());
    log.fine("Update with ASI=" + no);
    //
    sql = new StringBuffer("UPDATE T_InventoryValue iv "
      + "SET QtyOnHand="
        + "(SELECT iv.QtyOnHand - NVL(SUM(t.MovementQty), 0) "
        + "FROM M_Transaction t"
        + " INNER JOIN M_Locator l ON (t.M_Locator_ID=l.M_Locator_ID) "
        + "WHERE t.M_Product_ID=iv.M_Product_ID"
        + " AND t.MovementDate > iv.DateValue"
        + " AND l.M_Warehouse_ID=iv.M_Warehouse_ID) "
      + "WHERE iv.M_AttributeSetInstance_ID=0 "
      + "AND iv.AD_PInstance_ID=").append(getAD_PInstance_ID());

    no = DB.executeUpdateEx(sql.toString(), get_TrxName());
    log.fine("Update w/o ASI=" + no);
   
    //  Delete Records w/o OnHand Qty
    sql = new StringBuffer("DELETE T_InventoryValue "
      + "WHERE (QtyOnHand=0 OR QtyOnHand IS NULL) AND AD_PInstance_ID=").append(getAD_PInstance_ID());
    int noQty = DB.executeUpdateEx (sql.toString(), get_TrxName());
    log.fine("NoQty Deleted=" + noQty);

    //  Update Prices
    sql = new StringBuffer("UPDATE T_InventoryValue iv "
      + "SET PricePO = "
        + "(SELECT MAX(currencyConvert (po.PriceList,po.C_Currency_ID,iv.C_Currency_ID,iv.DateValue,null, po.AD_Client_ID,po.AD_Org_ID))"
        + " FROM M_Product_PO po WHERE po.M_Product_ID=iv.M_Product_ID"
        + " AND po.IsCurrentVendor='Y'), "
      + "PriceList = "
        + "(SELECT currencyConvert(pp.PriceList,pl.C_Currency_ID,iv.C_Currency_ID,iv.DateValue,null, pl.AD_Client_ID,pl.AD_Org_ID)"
        + " FROM M_PriceList pl, M_PriceList_Version plv, M_ProductPrice pp"
        + " WHERE pp.M_Product_ID=iv.M_Product_ID AND pp.M_PriceList_Version_ID=iv.M_PriceList_Version_ID"
        + " AND pp.M_PriceList_Version_ID=plv.M_PriceList_Version_ID"
        + " AND plv.M_PriceList_ID=pl.M_PriceList_ID), "
      + "PriceStd = "
        + "(SELECT currencyConvert(pp.PriceStd,pl.C_Currency_ID,iv.C_Currency_ID,iv.DateValue,null, pl.AD_Client_ID,pl.AD_Org_ID)"
        + " FROM M_PriceList pl, M_PriceList_Version plv, M_ProductPrice pp"
        + " WHERE pp.M_Product_ID=iv.M_Product_ID AND pp.M_PriceList_Version_ID=iv.M_PriceList_Version_ID"
        + " AND pp.M_PriceList_Version_ID=plv.M_PriceList_Version_ID"
        + " AND plv.M_PriceList_ID=pl.M_PriceList_ID), "
      + "PriceLimit = "
        + "(SELECT currencyConvert(pp.PriceLimit,pl.C_Currency_ID,iv.C_Currency_ID,iv.DateValue,null, pl.AD_Client_ID,pl.AD_Org_ID)"
        + " FROM M_PriceList pl, M_PriceList_Version plv, M_ProductPrice pp"
        + " WHERE pp.M_Product_ID=iv.M_Product_ID AND pp.M_PriceList_Version_ID=iv.M_PriceList_Version_ID"
        + " AND pp.M_PriceList_Version_ID=plv.M_PriceList_Version_ID"
        + " AND plv.M_PriceList_ID=pl.M_PriceList_ID)"
        + " WHERE iv.AD_PInstance_ID=").append(getAD_PInstance_ID());

    no = DB.executeUpdateEx (sql.toString(), get_TrxName());
    String msg = "";
    if (no == 0)
      msg = "No Prices";

    //  Convert if different Currency
    if (as.getC_Currency_ID() != p_C_Currency_ID)
    {
      sql = new StringBuffer ("UPDATE T_InventoryValue iv "
        + "SET CostStandard= "
          + "(SELECT currencyConvert(iv.CostStandard,acs.C_Currency_ID,iv.C_Currency_ID,iv.DateValue,null, iv.AD_Client_ID,iv.AD_Org_ID) "
          + "FROM C_AcctSchema acs WHERE acs.C_AcctSchema_ID=" + as.getC_AcctSchema_ID() + "),"
        + "  Cost= "
          + "(SELECT currencyConvert(iv.Cost,acs.C_Currency_ID,iv.C_Currency_ID,iv.DateValue,null, iv.AD_Client_ID,iv.AD_Org_ID) "
          + "FROM C_AcctSchema acs WHERE acs.C_AcctSchema_ID=" + as.getC_AcctSchema_ID() + ") "
        + "WHERE iv.AD_PInstance_ID=" + getAD_PInstance_ID());
      no = DB.executeUpdateEx (sql.toString(), get_TrxName());
      log.fine("Converted=" + no);
    }
   
View Full Code Here

Examples of org.compiere.model.MAcctSchema

        if(p_DateAcct_To != null)
          pstmt.setDate(2, new java.sql.Date(p_DateAcct_To.getTime()) );
       
        //pstmt.setInt(1, M_Product_ID);
        ResultSet rs = pstmt.executeQuery();
        MAcctSchema[] as = {new MAcctSchema (getCtx(),p_C_AcctSchema_ID,get_TrxName())};
       
        while (rs.next()){
          int id = rs.getInt("m_inventory_id");
          MInventory inv = new MInventory(getCtx(), id, get_TrxName());
          log.info("" + inv);
View Full Code Here

Examples of org.compiere.model.MAcctSchema

          retValue = xCost.getCurrentCostPrice();
      }
      if (retValue == null)
      {
        MProduct product = MProduct.get(getCtx(), cost.getM_Product_ID());
        MAcctSchema as = MAcctSchema.get(getCtx(), cost.getC_AcctSchema_ID());
        retValue = MCost.getLastInvoicePrice(product,
          cost.getM_AttributeSetInstance_ID(), cost.getAD_Org_ID(), as.getC_Currency_ID());       
      }
    }
   
    //  Last PO Price
    else if (to.equals(TO_LastPOPrice))
    {
      MCostElement ce = getCostElement(TO_LastPOPrice);
      if (ce != null)
      {
        MCost xCost = MCost.get(getCtx(), cost.getAD_Client_ID(), cost.getAD_Org_ID(), cost.getM_Product_ID(), cost.getM_CostType_ID(), cost.getC_AcctSchema_ID(), ce.getM_CostElement_ID(), cost.getM_AttributeSetInstance_ID());
        if (xCost != null)
          retValue = xCost.getCurrentCostPrice();
      }
      if (retValue == null)
      {
        MProduct product = MProduct.get(getCtx(), cost.getM_Product_ID());
        MAcctSchema as = MAcctSchema.get(getCtx(), cost.getC_AcctSchema_ID());
        retValue = MCost.getLastPOPrice(product,
          cost.getM_AttributeSetInstance_ID(), cost.getAD_Org_ID(), as.getC_Currency_ID());       
      }
    }
 
    //  FiFo
    else if (to.equals(TO_LiFo))
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.