/****************************************************************************** * 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.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import java.util.Arrays; import java.util.Properties; import java.util.logging.Level; import org.compiere.util.DB; import org.compiere.util.Env; import org.compiere.util.TimeUtil; import org.compiere.util.Util; /** * RfQ Line * * @author Jorg Janke * @version $Id: MRfQLine.java,v 1.3 2006/07/30 00:51:05 jjanke Exp $ */ public class MRfQLine extends X_C_RfQLine { /** * generated serial id */ private static final long serialVersionUID = -387372215148731148L; /** * Get MRfQLine from DB * @param C_RfQLine_ID id * @return MRfQLine */ public static MRfQLine get (int C_RfQLine_ID) { return get(C_RfQLine_ID, (String)null); } /** * Get MRfQLine from DB * @param C_RfQLine_ID id * @param trxName transaction * @return MRfQLine */ public static MRfQLine get (int C_RfQLine_ID, String trxName) { return get(Env.getCtx(), C_RfQLine_ID, trxName); } /** * Get MRfQLine from DB * @param ctx context * @param C_RfQLine_ID id * @param trxName transaction * @return MRfQLine */ public static MRfQLine get (Properties ctx, int C_RfQLine_ID, String trxName) { MRfQLine retValue = new MRfQLine (ctx, C_RfQLine_ID, trxName); if (retValue.get_ID () == C_RfQLine_ID) { return retValue; } return null; } // get /** * UUID based Constructor * @param ctx Context * @param C_RfQLine_UU UUID key * @param trxName Transaction */ public MRfQLine(Properties ctx, String C_RfQLine_UU, String trxName) { super(ctx, C_RfQLine_UU, trxName); if (Util.isEmpty(C_RfQLine_UU)) setInitialDefaults(); } /** * Standard Constructor * @param ctx context * @param C_RfQLine_ID id * @param trxName transaction */ public MRfQLine (Properties ctx, int C_RfQLine_ID, String trxName) { super (ctx, C_RfQLine_ID, trxName); if (C_RfQLine_ID == 0) setInitialDefaults(); } // MRfQLine /** * Set the initial defaults for a new record */ private void setInitialDefaults() { setLine (0); } /** * Load Constructor * @param ctx context * @param rs result set * @param trxName transaction */ public MRfQLine (Properties ctx, ResultSet rs, String trxName) { super(ctx, rs, trxName); } // MRfQLine /** * Parent Constructor * @param rfq RfQ */ public MRfQLine (MRfQ rfq) { this (rfq.getCtx(), 0, rfq.get_TrxName()); setClientOrg(rfq); setC_RfQ_ID(rfq.getC_RfQ_ID()); } // MRfQLine /** * Copy constructor * @param copy */ public MRfQLine(MRfQLine copy) { this(Env.getCtx(), copy); } /** * Copy constructor * @param ctx * @param copy */ public MRfQLine(Properties ctx, MRfQLine copy) { this(ctx, copy, (String) null); } /** * Copy constructor * @param ctx * @param copy * @param trxName */ public MRfQLine(Properties ctx, MRfQLine copy, String trxName) { this(ctx, 0, trxName); copyPO(copy); this.m_qtys = copy.m_qtys != null ? Arrays.stream(copy.m_qtys).map(e -> {return new MRfQLineQty(ctx, e, trxName);}).toArray(MRfQLineQty[]::new) : null; } /** Line Quantities */ private MRfQLineQty[] m_qtys = null; /** * Get Quantities * @return array of quantities */ public MRfQLineQty[] getQtys () { return getQtys (false); } // getQtys /** * Get RFQ Line Quantities * @param requery true to re-query from DB * @return array of RFQ line quantities */ public MRfQLineQty[] getQtys (boolean requery) { if (m_qtys != null && !requery) return m_qtys; ArrayList list = new ArrayList(); String sql = "SELECT * FROM C_RfQLineQty " + "WHERE C_RfQLine_ID=? AND IsActive='Y' " + "ORDER BY Qty"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, get_TrxName()); pstmt.setInt (1, getC_RfQLine_ID()); rs = pstmt.executeQuery (); while (rs.next ()) list.add (new MRfQLineQty (getCtx(), rs, get_TrxName())); } catch (Exception e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } // Create Default (1) if (list.size() == 0) { MRfQLineQty qty = new MRfQLineQty(this); qty.saveEx(); list.add(qty); } m_qtys = new MRfQLineQty[list.size ()]; list.toArray (m_qtys); return m_qtys; } // getQtys /** * Get Product Details in HTML * @return Product Name and Description in HTML format */ public String getProductDetailHTML() { if (getM_Product_ID() == 0) return ""; StringBuilder sb = new StringBuilder(); MProduct product = MProduct.get (getCtx(), getM_Product_ID()); sb.append(product.getName()); if (product.getDescription() != null && product.getDescription().length() > 0) sb.append("
").append(product.getDescription()).append(""); return sb.toString(); } // getProductDetails /** * String Representation * @return info */ @Override public String toString () { StringBuilder sb = new StringBuilder ("MRfQLine["); sb.append(get_ID()).append(",").append(getLine()) .append ("]"); return sb.toString (); } // toString @Override protected boolean beforeSave (boolean newRecord) { // Calculate Complete Date (also used to verify) if (getDateWorkStart() != null && getDeliveryDays() != 0) setDateWorkComplete (TimeUtil.addDays(getDateWorkStart(), getDeliveryDays())); // Calculate Delivery Days else if (getDateWorkStart() != null && getDeliveryDays() == 0 && getDateWorkComplete() != null) setDeliveryDays (TimeUtil.getDaysBetween(getDateWorkStart(), getDateWorkComplete())); // Calculate Start Date else if (getDateWorkStart() == null && getDeliveryDays() != 0 && getDateWorkComplete() != null) setDateWorkStart (TimeUtil.addDays(getDateWorkComplete(), getDeliveryDays() * -1)); return true; } // beforeSave } // MRfQLine