/****************************************************************************** * 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.sql.Timestamp; import java.util.Properties; import org.compiere.util.Env; /** Generated Model for C_TaxDeclarationAcct * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="C_TaxDeclarationAcct") public class X_C_TaxDeclarationAcct extends PO implements I_C_TaxDeclarationAcct, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_C_TaxDeclarationAcct (Properties ctx, int C_TaxDeclarationAcct_ID, String trxName) { super (ctx, C_TaxDeclarationAcct_ID, trxName); /** if (C_TaxDeclarationAcct_ID == 0) { setC_AcctSchema_ID (0); setC_TaxDeclarationAcct_ID (0); setC_TaxDeclaration_ID (0); setFact_Acct_ID (0); } */ } /** Standard Constructor */ public X_C_TaxDeclarationAcct (Properties ctx, int C_TaxDeclarationAcct_ID, String trxName, String ... virtualColumns) { super (ctx, C_TaxDeclarationAcct_ID, trxName, virtualColumns); /** if (C_TaxDeclarationAcct_ID == 0) { setC_AcctSchema_ID (0); setC_TaxDeclarationAcct_ID (0); setC_TaxDeclaration_ID (0); setFact_Acct_ID (0); } */ } /** Standard Constructor */ public X_C_TaxDeclarationAcct (Properties ctx, String C_TaxDeclarationAcct_UU, String trxName) { super (ctx, C_TaxDeclarationAcct_UU, trxName); /** if (C_TaxDeclarationAcct_UU == null) { setC_AcctSchema_ID (0); setC_TaxDeclarationAcct_ID (0); setC_TaxDeclaration_ID (0); setFact_Acct_ID (0); } */ } /** Standard Constructor */ public X_C_TaxDeclarationAcct (Properties ctx, String C_TaxDeclarationAcct_UU, String trxName, String ... virtualColumns) { super (ctx, C_TaxDeclarationAcct_UU, trxName, virtualColumns); /** if (C_TaxDeclarationAcct_UU == null) { setC_AcctSchema_ID (0); setC_TaxDeclarationAcct_ID (0); setC_TaxDeclaration_ID (0); setFact_Acct_ID (0); } */ } /** Load Constructor */ public X_C_TaxDeclarationAcct (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_TaxDeclarationAcct[") .append(get_ID()).append("]"); return sb.toString(); } public org.compiere.model.I_C_ElementValue getAccount() throws RuntimeException { return (org.compiere.model.I_C_ElementValue)MTable.get(getCtx(), org.compiere.model.I_C_ElementValue.Table_ID) .getPO(getAccount_ID(), get_TrxName()); } /** Set Account. @param Account_ID Account used */ public void setAccount_ID (int Account_ID) { throw new IllegalArgumentException ("Account_ID is virtual column"); } /** Get Account. @return Account used */ public int getAccount_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Account_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Accounted Credit. @param AmtAcctCr Accounted Credit Amount */ public void setAmtAcctCr (BigDecimal AmtAcctCr) { throw new IllegalArgumentException ("AmtAcctCr is virtual column"); } /** Get Accounted Credit. @return Accounted Credit Amount */ public BigDecimal getAmtAcctCr() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_AmtAcctCr); if (bd == null) return Env.ZERO; return bd; } /** Set Accounted Debit. @param AmtAcctDr Accounted Debit Amount */ public void setAmtAcctDr (BigDecimal AmtAcctDr) { throw new IllegalArgumentException ("AmtAcctDr is virtual column"); } /** Get Accounted Debit. @return Accounted Debit Amount */ public BigDecimal getAmtAcctDr() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_AmtAcctDr); if (bd == null) return Env.ZERO; return bd; } /** Set Source Credit. @param AmtSourceCr Source Credit Amount */ public void setAmtSourceCr (BigDecimal AmtSourceCr) { throw new IllegalArgumentException ("AmtSourceCr is virtual column"); } /** Get Source Credit. @return Source Credit Amount */ public BigDecimal getAmtSourceCr() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_AmtSourceCr); if (bd == null) return Env.ZERO; return bd; } /** Set Source Debit. @param AmtSourceDr Source Debit Amount */ public void setAmtSourceDr (BigDecimal AmtSourceDr) { throw new IllegalArgumentException ("AmtSourceDr is virtual column"); } /** Get Source Debit. @return Source Debit Amount */ public BigDecimal getAmtSourceDr() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_AmtSourceDr); if (bd == null) return Env.ZERO; return bd; } public org.compiere.model.I_C_AcctSchema getC_AcctSchema() throws RuntimeException { return (org.compiere.model.I_C_AcctSchema)MTable.get(getCtx(), org.compiere.model.I_C_AcctSchema.Table_ID) .getPO(getC_AcctSchema_ID(), get_TrxName()); } /** Set Accounting Schema. @param C_AcctSchema_ID Rules for accounting */ public void setC_AcctSchema_ID (int C_AcctSchema_ID) { if (C_AcctSchema_ID < 1) set_ValueNoCheck (COLUMNNAME_C_AcctSchema_ID, null); else set_ValueNoCheck (COLUMNNAME_C_AcctSchema_ID, Integer.valueOf(C_AcctSchema_ID)); } /** Get Accounting Schema. @return Rules for accounting */ public int getC_AcctSchema_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_AcctSchema_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_BPartner getC_BPartner() throws RuntimeException { return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_ID) .getPO(getC_BPartner_ID(), get_TrxName()); } /** Set Business Partner. @param C_BPartner_ID Identifies a Business Partner */ public void setC_BPartner_ID (int C_BPartner_ID) { throw new IllegalArgumentException ("C_BPartner_ID is virtual column"); } /** Get Business Partner. @return Identifies a Business Partner */ public int getC_BPartner_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_BPartner_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Currency getC_Currency() throws RuntimeException { return (org.compiere.model.I_C_Currency)MTable.get(getCtx(), org.compiere.model.I_C_Currency.Table_ID) .getPO(getC_Currency_ID(), get_TrxName()); } /** Set Currency. @param C_Currency_ID The Currency for this record */ public void setC_Currency_ID (int C_Currency_ID) { throw new IllegalArgumentException ("C_Currency_ID is virtual column"); } /** Get Currency. @return The Currency for this record */ public int getC_Currency_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Currency_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Tax Declaration Accounting. @param C_TaxDeclarationAcct_ID Tax Accounting Reconciliation */ public void setC_TaxDeclarationAcct_ID (int C_TaxDeclarationAcct_ID) { if (C_TaxDeclarationAcct_ID < 1) set_ValueNoCheck (COLUMNNAME_C_TaxDeclarationAcct_ID, null); else set_ValueNoCheck (COLUMNNAME_C_TaxDeclarationAcct_ID, Integer.valueOf(C_TaxDeclarationAcct_ID)); } /** Get Tax Declaration Accounting. @return Tax Accounting Reconciliation */ public int getC_TaxDeclarationAcct_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_TaxDeclarationAcct_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_TaxDeclarationAcct_UU. @param C_TaxDeclarationAcct_UU C_TaxDeclarationAcct_UU */ public void setC_TaxDeclarationAcct_UU (String C_TaxDeclarationAcct_UU) { set_Value (COLUMNNAME_C_TaxDeclarationAcct_UU, C_TaxDeclarationAcct_UU); } /** Get C_TaxDeclarationAcct_UU. @return C_TaxDeclarationAcct_UU */ public String getC_TaxDeclarationAcct_UU() { return (String)get_Value(COLUMNNAME_C_TaxDeclarationAcct_UU); } public org.compiere.model.I_C_TaxDeclaration getC_TaxDeclaration() throws RuntimeException { return (org.compiere.model.I_C_TaxDeclaration)MTable.get(getCtx(), org.compiere.model.I_C_TaxDeclaration.Table_ID) .getPO(getC_TaxDeclaration_ID(), get_TrxName()); } /** Set Tax Declaration. @param C_TaxDeclaration_ID Define the declaration to the tax authorities */ public void setC_TaxDeclaration_ID (int C_TaxDeclaration_ID) { if (C_TaxDeclaration_ID < 1) set_ValueNoCheck (COLUMNNAME_C_TaxDeclaration_ID, null); else set_ValueNoCheck (COLUMNNAME_C_TaxDeclaration_ID, Integer.valueOf(C_TaxDeclaration_ID)); } /** Get Tax Declaration. @return Define the declaration to the tax authorities */ public int getC_TaxDeclaration_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_TaxDeclaration_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Tax getC_Tax() throws RuntimeException { return (org.compiere.model.I_C_Tax)MTable.get(getCtx(), org.compiere.model.I_C_Tax.Table_ID) .getPO(getC_Tax_ID(), get_TrxName()); } /** Set Tax. @param C_Tax_ID Tax identifier */ public void setC_Tax_ID (int C_Tax_ID) { throw new IllegalArgumentException ("C_Tax_ID is virtual column"); } /** Get Tax. @return Tax identifier */ public int getC_Tax_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Tax_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Account Date. @param DateAcct Accounting Date */ public void setDateAcct (Timestamp DateAcct) { throw new IllegalArgumentException ("DateAcct is virtual column"); } /** Get Account Date. @return Accounting Date */ public Timestamp getDateAcct() { return (Timestamp)get_Value(COLUMNNAME_DateAcct); } /** 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); } public org.compiere.model.I_Fact_Acct getFact_Acct() throws RuntimeException { return (org.compiere.model.I_Fact_Acct)MTable.get(getCtx(), org.compiere.model.I_Fact_Acct.Table_ID) .getPO(getFact_Acct_ID(), get_TrxName()); } /** Set Accounting Fact. @param Fact_Acct_ID Accounting Fact */ public void setFact_Acct_ID (int Fact_Acct_ID) { if (Fact_Acct_ID < 1) set_ValueNoCheck (COLUMNNAME_Fact_Acct_ID, null); else set_ValueNoCheck (COLUMNNAME_Fact_Acct_ID, Integer.valueOf(Fact_Acct_ID)); } /** Get Accounting Fact. @return Accounting Fact */ public int getFact_Acct_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Fact_Acct_ID); if (ii == null) return 0; return ii.intValue(); } /** 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(); } }