/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.model; import java.sql.ResultSet; import java.util.List; import java.util.Properties; import org.compiere.util.CLogger; import org.compiere.util.DB; import org.compiere.util.Env; import org.compiere.util.Msg; import org.compiere.util.Util; /** * BOM Product/Component Model * * Never leave beta and drop * @deprecated * @author Jorg Janke * @version $Id: MBOMProduct.java,v 1.3 2006/07/30 00:51:02 jjanke Exp $ */ @Deprecated(forRemoval = true, since = "11") public class MBOMProduct extends X_M_BOMProduct { /** * generated serial id */ private static final long serialVersionUID = 3431041011059529621L; /** * Get Products of BOM * @param bom bom * @return array of BOM Products */ public static MBOMProduct[] getOfBOM (MBOM bom) { //FR: [ 2214883 ] Remove SQL code and Replace for Query - red1 String whereClause = "M_BOM_ID=?"; List list = new Query(bom.getCtx(), I_M_BOMProduct.Table_Name, whereClause, bom.get_TrxName()) .setParameters(bom.getM_BOM_ID()) .setOrderBy("SeqNo") .list(); MBOMProduct[] retValue = new MBOMProduct[list.size ()]; list.toArray (retValue); return retValue; } // getOfProduct /** Logger */ @SuppressWarnings("unused") private static CLogger s_log = CLogger.getCLogger (MBOMProduct.class); /** * UUID based Constructor * @param ctx Context * @param M_BOMProduct_UU UUID key * @param trxName Transaction */ public MBOMProduct(Properties ctx, String M_BOMProduct_UU, String trxName) { super(ctx, M_BOMProduct_UU, trxName); if (Util.isEmpty(M_BOMProduct_UU)) setInitialDefaults(); } /** * Standard Constructor * @param ctx context * @param M_BOMProduct_ID id * @param trxName trx */ public MBOMProduct (Properties ctx, int M_BOMProduct_ID, String trxName) { super (ctx, M_BOMProduct_ID, trxName); if (M_BOMProduct_ID == 0) setInitialDefaults(); } // MBOMProduct /** * Set the initial defaults for a new record */ private void setInitialDefaults() { setBOMProductType (BOMPRODUCTTYPE_StandardProduct); // S setBOMQty (Env.ONE); setIsPhantom (false); setLeadTimeOffset (0); } /** * Parent Constructor * @param bom product */ public MBOMProduct (MBOM bom) { this (bom.getCtx(), 0, bom.get_TrxName()); m_bom = bom; } // MBOMProduct /** * Load Constructor * @param ctx context * @param rs result set * @param trxName trx */ public MBOMProduct (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } // MBOMProduct /** BOM Parent */ private MBOM m_bom = null; /** * Get Parent * @return parent */ private MBOM getBOM() { if (m_bom == null && getM_BOM_ID() != 0) m_bom = MBOM.getCopy(getCtx(), getM_BOM_ID(), get_TrxName()); return m_bom; } // getBOM /** * Before Save * @param newRecord new * @return true/false */ protected boolean beforeSave (boolean newRecord) { // Product if (getBOMProductType().equals(BOMPRODUCTTYPE_OutsideProcessing)) { if (getM_ProductBOM_ID() != 0) setM_ProductBOM_ID(0); } else if (getM_ProductBOM_ID() == 0) { log.saveError("Error", Msg.parseTranslation(getCtx(), "@NotFound@ @M_ProductBOM_ID@")); return false; } // Operation if (getM_ProductOperation_ID() == 0) { if (getSeqNo() != 0) setSeqNo(0); } else if (getSeqNo() == 0) { log.saveError("Error", Msg.parseTranslation(getCtx(), "@NotFound@ @SeqNo@")); return false; } // Product Attribute Instance if (getM_AttributeSetInstance_ID() != 0) { getBOM(); if (m_bom != null && MBOM.BOMTYPE_Make_To_Order.equals(m_bom.getBOMType())) ; else { log.saveError("Error", Msg.parseTranslation(getCtx(), "Reset @M_AttributeSetInstance_ID@: Not Make-to-Order")); setM_AttributeSetInstance_ID(0); return false; } } // Alternate if ((getBOMProductType().equals(BOMPRODUCTTYPE_Alternative) || getBOMProductType().equals(BOMPRODUCTTYPE_AlternativeDefault)) && getM_BOMAlternative_ID() == 0) { log.saveError("Error", Msg.parseTranslation(getCtx(), "@NotFound@ @M_BOMAlternative_ID@")); return false; } // Operation if (getM_ProductOperation_ID() != 0) { if (getSeqNo() == 0) { log.saveError("Error", Msg.parseTranslation(getCtx(), "@NotFound@ @SeqNo@")); return false; } } else // no op { if (getSeqNo() != 0) setSeqNo(0); if (getLeadTimeOffset() != 0) setLeadTimeOffset(0); } // Set Line Number if (getLine() == 0) { String sql = "SELECT NVL(MAX(Line),0)+10 FROM M_BOMProduct WHERE M_BOM_ID=?"; int ii = DB.getSQLValue (get_TrxName(), sql, getM_BOM_ID()); setLine (ii); } return true; } // beforeSave } // MBOMProduct