/****************************************************************************** * Product: iDempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2012 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 * *****************************************************************************/ /** Generated Model - DO NOT CHANGE */ package org.compiere.model; import java.sql.ResultSet; import java.sql.Timestamp; import java.util.Properties; import org.compiere.util.KeyNamePair; /** Generated Model for C_RfQLine * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="C_RfQLine") public class X_C_RfQLine extends PO implements I_C_RfQLine, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_C_RfQLine (Properties ctx, int C_RfQLine_ID, String trxName) { super (ctx, C_RfQLine_ID, trxName); /** if (C_RfQLine_ID == 0) { setC_RfQLine_ID (0); setC_RfQ_ID (0); setLine (0); // @SQL=SELECT COALESCE(MAX(Line),0)+10 AS DefaultValue FROM C_RfQLine WHERE C_RfQ_ID=@C_RfQ_ID@ setM_AttributeSetInstance_ID (0); } */ } /** Standard Constructor */ public X_C_RfQLine (Properties ctx, int C_RfQLine_ID, String trxName, String ... virtualColumns) { super (ctx, C_RfQLine_ID, trxName, virtualColumns); /** if (C_RfQLine_ID == 0) { setC_RfQLine_ID (0); setC_RfQ_ID (0); setLine (0); // @SQL=SELECT COALESCE(MAX(Line),0)+10 AS DefaultValue FROM C_RfQLine WHERE C_RfQ_ID=@C_RfQ_ID@ setM_AttributeSetInstance_ID (0); } */ } /** Standard Constructor */ public X_C_RfQLine (Properties ctx, String C_RfQLine_UU, String trxName) { super (ctx, C_RfQLine_UU, trxName); /** if (C_RfQLine_UU == null) { setC_RfQLine_ID (0); setC_RfQ_ID (0); setLine (0); // @SQL=SELECT COALESCE(MAX(Line),0)+10 AS DefaultValue FROM C_RfQLine WHERE C_RfQ_ID=@C_RfQ_ID@ setM_AttributeSetInstance_ID (0); } */ } /** Standard Constructor */ public X_C_RfQLine (Properties ctx, String C_RfQLine_UU, String trxName, String ... virtualColumns) { super (ctx, C_RfQLine_UU, trxName, virtualColumns); /** if (C_RfQLine_UU == null) { setC_RfQLine_ID (0); setC_RfQ_ID (0); setLine (0); // @SQL=SELECT COALESCE(MAX(Line),0)+10 AS DefaultValue FROM C_RfQLine WHERE C_RfQ_ID=@C_RfQ_ID@ setM_AttributeSetInstance_ID (0); } */ } /** Load Constructor */ public X_C_RfQLine (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 1 - Org */ protected int get_AccessLevel() { return accessLevel.intValue(); } /** Load Meta Data */ protected POInfo initPO (Properties ctx) { POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); return poi; } public String toString() { StringBuilder sb = new StringBuilder ("X_C_RfQLine[") .append(get_ID()).append("]"); return sb.toString(); } /** Set RfQ Line. @param C_RfQLine_ID Request for Quotation Line */ public void setC_RfQLine_ID (int C_RfQLine_ID) { if (C_RfQLine_ID < 1) set_ValueNoCheck (COLUMNNAME_C_RfQLine_ID, null); else set_ValueNoCheck (COLUMNNAME_C_RfQLine_ID, Integer.valueOf(C_RfQLine_ID)); } /** Get RfQ Line. @return Request for Quotation Line */ public int getC_RfQLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_RfQLine_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_RfQLine_UU. @param C_RfQLine_UU C_RfQLine_UU */ public void setC_RfQLine_UU (String C_RfQLine_UU) { set_Value (COLUMNNAME_C_RfQLine_UU, C_RfQLine_UU); } /** Get C_RfQLine_UU. @return C_RfQLine_UU */ public String getC_RfQLine_UU() { return (String)get_Value(COLUMNNAME_C_RfQLine_UU); } public org.compiere.model.I_C_RfQ getC_RfQ() throws RuntimeException { return (org.compiere.model.I_C_RfQ)MTable.get(getCtx(), org.compiere.model.I_C_RfQ.Table_ID) .getPO(getC_RfQ_ID(), get_TrxName()); } /** Set RfQ. @param C_RfQ_ID Request for Quotation */ public void setC_RfQ_ID (int C_RfQ_ID) { if (C_RfQ_ID < 1) set_ValueNoCheck (COLUMNNAME_C_RfQ_ID, null); else set_ValueNoCheck (COLUMNNAME_C_RfQ_ID, Integer.valueOf(C_RfQ_ID)); } /** Get RfQ. @return Request for Quotation */ public int getC_RfQ_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_RfQ_ID); if (ii == null) return 0; return ii.intValue(); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), String.valueOf(getC_RfQ_ID())); } /** Set Work Complete. @param DateWorkComplete Date when work is (planned to be) complete */ public void setDateWorkComplete (Timestamp DateWorkComplete) { set_Value (COLUMNNAME_DateWorkComplete, DateWorkComplete); } /** Get Work Complete. @return Date when work is (planned to be) complete */ public Timestamp getDateWorkComplete() { return (Timestamp)get_Value(COLUMNNAME_DateWorkComplete); } /** Set Work Start. @param DateWorkStart Date when work is (planned to be) started */ public void setDateWorkStart (Timestamp DateWorkStart) { set_Value (COLUMNNAME_DateWorkStart, DateWorkStart); } /** Get Work Start. @return Date when work is (planned to be) started */ public Timestamp getDateWorkStart() { return (Timestamp)get_Value(COLUMNNAME_DateWorkStart); } /** Set Delivery Days. @param DeliveryDays Number of Days (planned) until Delivery */ public void setDeliveryDays (int DeliveryDays) { set_Value (COLUMNNAME_DeliveryDays, Integer.valueOf(DeliveryDays)); } /** Get Delivery Days. @return Number of Days (planned) until Delivery */ public int getDeliveryDays() { Integer ii = (Integer)get_Value(COLUMNNAME_DeliveryDays); if (ii == null) return 0; return ii.intValue(); } /** Set Description. @param Description Optional short description of the record */ public void setDescription (String Description) { set_Value (COLUMNNAME_Description, Description); } /** Get Description. @return Optional short description of the record */ public String getDescription() { return (String)get_Value(COLUMNNAME_Description); } /** Set Comment/Help. @param Help Comment or Hint */ public void setHelp (String Help) { set_Value (COLUMNNAME_Help, Help); } /** Get Comment/Help. @return Comment or Hint */ public String getHelp() { return (String)get_Value(COLUMNNAME_Help); } /** Set Line No. @param Line Unique line for this document */ public void setLine (int Line) { set_Value (COLUMNNAME_Line, Integer.valueOf(Line)); } /** Get Line No. @return Unique line for this document */ public int getLine() { Integer ii = (Integer)get_Value(COLUMNNAME_Line); if (ii == null) return 0; return ii.intValue(); } public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException { return (I_M_AttributeSetInstance)MTable.get(getCtx(), I_M_AttributeSetInstance.Table_ID) .getPO(getM_AttributeSetInstance_ID(), get_TrxName()); } /** Set Attribute Set Instance. @param M_AttributeSetInstance_ID Product Attribute Set Instance */ public void setM_AttributeSetInstance_ID (int M_AttributeSetInstance_ID) { if (M_AttributeSetInstance_ID < 0) set_Value (COLUMNNAME_M_AttributeSetInstance_ID, null); else set_Value (COLUMNNAME_M_AttributeSetInstance_ID, Integer.valueOf(M_AttributeSetInstance_ID)); } /** Get Attribute Set Instance. @return Product Attribute Set Instance */ public int getM_AttributeSetInstance_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_AttributeSetInstance_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_ID) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @param M_Product_ID Product, Service, Item */ public void setM_Product_ID (int M_Product_ID) { if (M_Product_ID < 1) set_Value (COLUMNNAME_M_Product_ID, null); else set_Value (COLUMNNAME_M_Product_ID, Integer.valueOf(M_Product_ID)); } /** Get Product. @return Product, Service, Item */ public int getM_Product_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_ID); if (ii == null) return 0; return ii.intValue(); } }