/****************************************************************************** * 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.math.BigDecimal; import java.sql.ResultSet; import java.util.Properties; import org.compiere.util.Env; import org.compiere.util.KeyNamePair; /** Generated Model for C_ProjectLine * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="C_ProjectLine") public class X_C_ProjectLine extends PO implements I_C_ProjectLine, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_C_ProjectLine (Properties ctx, int C_ProjectLine_ID, String trxName) { super (ctx, C_ProjectLine_ID, trxName); /** if (C_ProjectLine_ID == 0) { setC_ProjectLine_ID (0); setC_Project_ID (0); setInvoicedAmt (Env.ZERO); setInvoicedQty (Env.ZERO); // 0 setIsPrinted (true); // Y setLine (0); // @SQL=SELECT NVL(MAX(Line),0)+10 AS DefaultValue FROM C_ProjectLine WHERE C_Project_ID=@C_Project_ID@ setPlannedAmt (Env.ZERO); setPlannedMarginAmt (Env.ZERO); setPlannedPrice (Env.ZERO); setPlannedQty (Env.ZERO); // 1 setProcessed (false); // N } */ } /** Standard Constructor */ public X_C_ProjectLine (Properties ctx, int C_ProjectLine_ID, String trxName, String ... virtualColumns) { super (ctx, C_ProjectLine_ID, trxName, virtualColumns); /** if (C_ProjectLine_ID == 0) { setC_ProjectLine_ID (0); setC_Project_ID (0); setInvoicedAmt (Env.ZERO); setInvoicedQty (Env.ZERO); // 0 setIsPrinted (true); // Y setLine (0); // @SQL=SELECT NVL(MAX(Line),0)+10 AS DefaultValue FROM C_ProjectLine WHERE C_Project_ID=@C_Project_ID@ setPlannedAmt (Env.ZERO); setPlannedMarginAmt (Env.ZERO); setPlannedPrice (Env.ZERO); setPlannedQty (Env.ZERO); // 1 setProcessed (false); // N } */ } /** Standard Constructor */ public X_C_ProjectLine (Properties ctx, String C_ProjectLine_UU, String trxName) { super (ctx, C_ProjectLine_UU, trxName); /** if (C_ProjectLine_UU == null) { setC_ProjectLine_ID (0); setC_Project_ID (0); setInvoicedAmt (Env.ZERO); setInvoicedQty (Env.ZERO); // 0 setIsPrinted (true); // Y setLine (0); // @SQL=SELECT NVL(MAX(Line),0)+10 AS DefaultValue FROM C_ProjectLine WHERE C_Project_ID=@C_Project_ID@ setPlannedAmt (Env.ZERO); setPlannedMarginAmt (Env.ZERO); setPlannedPrice (Env.ZERO); setPlannedQty (Env.ZERO); // 1 setProcessed (false); // N } */ } /** Standard Constructor */ public X_C_ProjectLine (Properties ctx, String C_ProjectLine_UU, String trxName, String ... virtualColumns) { super (ctx, C_ProjectLine_UU, trxName, virtualColumns); /** if (C_ProjectLine_UU == null) { setC_ProjectLine_ID (0); setC_Project_ID (0); setInvoicedAmt (Env.ZERO); setInvoicedQty (Env.ZERO); // 0 setIsPrinted (true); // Y setLine (0); // @SQL=SELECT NVL(MAX(Line),0)+10 AS DefaultValue FROM C_ProjectLine WHERE C_Project_ID=@C_Project_ID@ setPlannedAmt (Env.ZERO); setPlannedMarginAmt (Env.ZERO); setPlannedPrice (Env.ZERO); setPlannedQty (Env.ZERO); // 1 setProcessed (false); // N } */ } /** Load Constructor */ public X_C_ProjectLine (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 3 - Client - 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_ProjectLine[") .append(get_ID()).append("]"); return sb.toString(); } public org.compiere.model.I_C_Order getC_OrderPO() throws RuntimeException { return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_ID) .getPO(getC_OrderPO_ID(), get_TrxName()); } /** Set Purchase Order. @param C_OrderPO_ID Purchase Order */ public void setC_OrderPO_ID (int C_OrderPO_ID) { if (C_OrderPO_ID < 1) set_ValueNoCheck (COLUMNNAME_C_OrderPO_ID, null); else set_ValueNoCheck (COLUMNNAME_C_OrderPO_ID, Integer.valueOf(C_OrderPO_ID)); } /** Get Purchase Order. @return Purchase Order */ public int getC_OrderPO_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_OrderPO_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_ID) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @param C_Order_ID Order */ public void setC_Order_ID (int C_Order_ID) { if (C_Order_ID < 1) set_ValueNoCheck (COLUMNNAME_C_Order_ID, null); else set_ValueNoCheck (COLUMNNAME_C_Order_ID, Integer.valueOf(C_Order_ID)); } /** Get Order. @return Order */ public int getC_Order_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Order_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_ProjectIssue getC_ProjectIssue() throws RuntimeException { return (org.compiere.model.I_C_ProjectIssue)MTable.get(getCtx(), org.compiere.model.I_C_ProjectIssue.Table_ID) .getPO(getC_ProjectIssue_ID(), get_TrxName()); } /** Set Project Issue. @param C_ProjectIssue_ID Project Issues (Material, Labor) */ public void setC_ProjectIssue_ID (int C_ProjectIssue_ID) { if (C_ProjectIssue_ID < 1) set_ValueNoCheck (COLUMNNAME_C_ProjectIssue_ID, null); else set_ValueNoCheck (COLUMNNAME_C_ProjectIssue_ID, Integer.valueOf(C_ProjectIssue_ID)); } /** Get Project Issue. @return Project Issues (Material, Labor) */ public int getC_ProjectIssue_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_ProjectIssue_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Project Line. @param C_ProjectLine_ID Task or step in a project */ public void setC_ProjectLine_ID (int C_ProjectLine_ID) { if (C_ProjectLine_ID < 1) set_ValueNoCheck (COLUMNNAME_C_ProjectLine_ID, null); else set_ValueNoCheck (COLUMNNAME_C_ProjectLine_ID, Integer.valueOf(C_ProjectLine_ID)); } /** Get Project Line. @return Task or step in a project */ public int getC_ProjectLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_ProjectLine_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_ProjectLine_UU. @param C_ProjectLine_UU C_ProjectLine_UU */ public void setC_ProjectLine_UU (String C_ProjectLine_UU) { set_Value (COLUMNNAME_C_ProjectLine_UU, C_ProjectLine_UU); } /** Get C_ProjectLine_UU. @return C_ProjectLine_UU */ public String getC_ProjectLine_UU() { return (String)get_Value(COLUMNNAME_C_ProjectLine_UU); } public org.compiere.model.I_C_ProjectPhase getC_ProjectPhase() throws RuntimeException { return (org.compiere.model.I_C_ProjectPhase)MTable.get(getCtx(), org.compiere.model.I_C_ProjectPhase.Table_ID) .getPO(getC_ProjectPhase_ID(), get_TrxName()); } /** Set Project Phase. @param C_ProjectPhase_ID Phase of a Project */ public void setC_ProjectPhase_ID (int C_ProjectPhase_ID) { if (C_ProjectPhase_ID < 1) set_Value (COLUMNNAME_C_ProjectPhase_ID, null); else set_Value (COLUMNNAME_C_ProjectPhase_ID, Integer.valueOf(C_ProjectPhase_ID)); } /** Get Project Phase. @return Phase of a Project */ public int getC_ProjectPhase_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_ProjectPhase_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_ProjectTask getC_ProjectTask() throws RuntimeException { return (org.compiere.model.I_C_ProjectTask)MTable.get(getCtx(), org.compiere.model.I_C_ProjectTask.Table_ID) .getPO(getC_ProjectTask_ID(), get_TrxName()); } /** Set Project Task. @param C_ProjectTask_ID Actual Project Task in a Phase */ public void setC_ProjectTask_ID (int C_ProjectTask_ID) { if (C_ProjectTask_ID < 1) set_Value (COLUMNNAME_C_ProjectTask_ID, null); else set_Value (COLUMNNAME_C_ProjectTask_ID, Integer.valueOf(C_ProjectTask_ID)); } /** Get Project Task. @return Actual Project Task in a Phase */ public int getC_ProjectTask_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_ProjectTask_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Project getC_Project() throws RuntimeException { return (org.compiere.model.I_C_Project)MTable.get(getCtx(), org.compiere.model.I_C_Project.Table_ID) .getPO(getC_Project_ID(), get_TrxName()); } /** Set Project. @param C_Project_ID Financial Project */ public void setC_Project_ID (int C_Project_ID) { if (C_Project_ID < 1) set_ValueNoCheck (COLUMNNAME_C_Project_ID, null); else set_ValueNoCheck (COLUMNNAME_C_Project_ID, Integer.valueOf(C_Project_ID)); } /** Get Project. @return Financial Project */ public int getC_Project_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Project_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Committed Amount. @param CommittedAmt The (legal) commitment amount */ public void setCommittedAmt (BigDecimal CommittedAmt) { set_Value (COLUMNNAME_CommittedAmt, CommittedAmt); } /** Get Committed Amount. @return The (legal) commitment amount */ public BigDecimal getCommittedAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CommittedAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Committed Quantity. @param CommittedQty The (legal) commitment Quantity */ public void setCommittedQty (BigDecimal CommittedQty) { set_Value (COLUMNNAME_CommittedQty, CommittedQty); } /** Get Committed Quantity. @return The (legal) commitment Quantity */ public BigDecimal getCommittedQty() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CommittedQty); if (bd == null) return Env.ZERO; return bd; } /** 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 Pricing. @param DoPricing Pricing */ public void setDoPricing (String DoPricing) { set_Value (COLUMNNAME_DoPricing, DoPricing); } /** Get Pricing. @return Pricing */ public String getDoPricing() { return (String)get_Value(COLUMNNAME_DoPricing); } /** Set Invoiced Amount. @param InvoicedAmt The amount invoiced */ public void setInvoicedAmt (BigDecimal InvoicedAmt) { set_Value (COLUMNNAME_InvoicedAmt, InvoicedAmt); } /** Get Invoiced Amount. @return The amount invoiced */ public BigDecimal getInvoicedAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_InvoicedAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Quantity Invoiced. @param InvoicedQty The quantity invoiced */ public void setInvoicedQty (BigDecimal InvoicedQty) { set_Value (COLUMNNAME_InvoicedQty, InvoicedQty); } /** Get Quantity Invoiced. @return The quantity invoiced */ public BigDecimal getInvoicedQty() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_InvoicedQty); if (bd == null) return Env.ZERO; return bd; } /** Set Printed. @param IsPrinted Indicates if this document / line is printed */ public void setIsPrinted (boolean IsPrinted) { set_Value (COLUMNNAME_IsPrinted, Boolean.valueOf(IsPrinted)); } /** Get Printed. @return Indicates if this document / line is printed */ public boolean isPrinted() { Object oo = get_Value(COLUMNNAME_IsPrinted); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** 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(); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), String.valueOf(getLine())); } public org.compiere.model.I_M_Product_Category getM_Product_Category() throws RuntimeException { return (org.compiere.model.I_M_Product_Category)MTable.get(getCtx(), org.compiere.model.I_M_Product_Category.Table_ID) .getPO(getM_Product_Category_ID(), get_TrxName()); } /** Set Product Category. @param M_Product_Category_ID Category of a Product */ public void setM_Product_Category_ID (int M_Product_Category_ID) { if (M_Product_Category_ID < 1) set_Value (COLUMNNAME_M_Product_Category_ID, null); else set_Value (COLUMNNAME_M_Product_Category_ID, Integer.valueOf(M_Product_Category_ID)); } /** Get Product Category. @return Category of a Product */ public int getM_Product_Category_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_Category_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(); } public org.compiere.model.I_M_Production getM_Production() throws RuntimeException { return (org.compiere.model.I_M_Production)MTable.get(getCtx(), org.compiere.model.I_M_Production.Table_ID) .getPO(getM_Production_ID(), get_TrxName()); } /** Set Production. @param M_Production_ID Plan for producing a product */ public void setM_Production_ID (int M_Production_ID) { if (M_Production_ID < 1) set_ValueNoCheck (COLUMNNAME_M_Production_ID, null); else set_ValueNoCheck (COLUMNNAME_M_Production_ID, Integer.valueOf(M_Production_ID)); } /** Get Production. @return Plan for producing a product */ public int getM_Production_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Production_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Planned Amount. @param PlannedAmt Planned amount for this project */ public void setPlannedAmt (BigDecimal PlannedAmt) { set_Value (COLUMNNAME_PlannedAmt, PlannedAmt); } /** Get Planned Amount. @return Planned amount for this project */ public BigDecimal getPlannedAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_PlannedAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Planned Margin. @param PlannedMarginAmt Project's planned margin amount */ public void setPlannedMarginAmt (BigDecimal PlannedMarginAmt) { set_Value (COLUMNNAME_PlannedMarginAmt, PlannedMarginAmt); } /** Get Planned Margin. @return Project's planned margin amount */ public BigDecimal getPlannedMarginAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_PlannedMarginAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Planned Price. @param PlannedPrice Planned price for this project line */ public void setPlannedPrice (BigDecimal PlannedPrice) { set_Value (COLUMNNAME_PlannedPrice, PlannedPrice); } /** Get Planned Price. @return Planned price for this project line */ public BigDecimal getPlannedPrice() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_PlannedPrice); if (bd == null) return Env.ZERO; return bd; } /** Set Planned Quantity. @param PlannedQty Planned quantity for this project */ public void setPlannedQty (BigDecimal PlannedQty) { set_Value (COLUMNNAME_PlannedQty, PlannedQty); } /** Get Planned Quantity. @return Planned quantity for this project */ public BigDecimal getPlannedQty() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_PlannedQty); if (bd == null) return Env.ZERO; return bd; } /** Set Processed. @param Processed The document has been processed */ public void setProcessed (boolean Processed) { set_Value (COLUMNNAME_Processed, Boolean.valueOf(Processed)); } /** Get Processed. @return The document has been processed */ public boolean isProcessed() { Object oo = get_Value(COLUMNNAME_Processed); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } }