/****************************************************************************** * 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_Withholding * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="C_Withholding") public class X_C_Withholding extends PO implements I_C_Withholding, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_C_Withholding (Properties ctx, int C_Withholding_ID, String trxName) { super (ctx, C_Withholding_ID, trxName); /** if (C_Withholding_ID == 0) { setBeneficiary (0); setC_PaymentTerm_ID (0); setC_Withholding_ID (0); setIsPaidTo3Party (false); setIsPercentWithholding (false); setIsTaxProrated (false); setIsTaxWithholding (false); setName (null); } */ } /** Standard Constructor */ public X_C_Withholding (Properties ctx, int C_Withholding_ID, String trxName, String ... virtualColumns) { super (ctx, C_Withholding_ID, trxName, virtualColumns); /** if (C_Withholding_ID == 0) { setBeneficiary (0); setC_PaymentTerm_ID (0); setC_Withholding_ID (0); setIsPaidTo3Party (false); setIsPercentWithholding (false); setIsTaxProrated (false); setIsTaxWithholding (false); setName (null); } */ } /** Standard Constructor */ public X_C_Withholding (Properties ctx, String C_Withholding_UU, String trxName) { super (ctx, C_Withholding_UU, trxName); /** if (C_Withholding_UU == null) { setBeneficiary (0); setC_PaymentTerm_ID (0); setC_Withholding_ID (0); setIsPaidTo3Party (false); setIsPercentWithholding (false); setIsTaxProrated (false); setIsTaxWithholding (false); setName (null); } */ } /** Standard Constructor */ public X_C_Withholding (Properties ctx, String C_Withholding_UU, String trxName, String ... virtualColumns) { super (ctx, C_Withholding_UU, trxName, virtualColumns); /** if (C_Withholding_UU == null) { setBeneficiary (0); setC_PaymentTerm_ID (0); setC_Withholding_ID (0); setIsPaidTo3Party (false); setIsPercentWithholding (false); setIsTaxProrated (false); setIsTaxWithholding (false); setName (null); } */ } /** Load Constructor */ public X_C_Withholding (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_Withholding[") .append(get_ID()).append(",Name=").append(getName()).append("]"); return sb.toString(); } public org.compiere.model.I_C_BPartner getBenefici() throws RuntimeException { return (org.compiere.model.I_C_BPartner)MTable.get(getCtx(), org.compiere.model.I_C_BPartner.Table_ID) .getPO(getBeneficiary(), get_TrxName()); } /** Set Beneficiary. @param Beneficiary Business Partner to whom payment is made */ public void setBeneficiary (int Beneficiary) { set_Value (COLUMNNAME_Beneficiary, Integer.valueOf(Beneficiary)); } /** Get Beneficiary. @return Business Partner to whom payment is made */ public int getBeneficiary() { Integer ii = (Integer)get_Value(COLUMNNAME_Beneficiary); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException { return (org.compiere.model.I_C_PaymentTerm)MTable.get(getCtx(), org.compiere.model.I_C_PaymentTerm.Table_ID) .getPO(getC_PaymentTerm_ID(), get_TrxName()); } /** Set Payment Term. @param C_PaymentTerm_ID The terms of Payment (timing, discount) */ public void setC_PaymentTerm_ID (int C_PaymentTerm_ID) { if (C_PaymentTerm_ID < 1) set_Value (COLUMNNAME_C_PaymentTerm_ID, null); else set_Value (COLUMNNAME_C_PaymentTerm_ID, Integer.valueOf(C_PaymentTerm_ID)); } /** Get Payment Term. @return The terms of Payment (timing, discount) */ public int getC_PaymentTerm_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_PaymentTerm_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Withholding. @param C_Withholding_ID Withholding type defined */ public void setC_Withholding_ID (int C_Withholding_ID) { if (C_Withholding_ID < 1) set_ValueNoCheck (COLUMNNAME_C_Withholding_ID, null); else set_ValueNoCheck (COLUMNNAME_C_Withholding_ID, Integer.valueOf(C_Withholding_ID)); } /** Get Withholding. @return Withholding type defined */ public int getC_Withholding_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Withholding_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_Withholding_UU. @param C_Withholding_UU C_Withholding_UU */ public void setC_Withholding_UU (String C_Withholding_UU) { set_Value (COLUMNNAME_C_Withholding_UU, C_Withholding_UU); } /** Get C_Withholding_UU. @return C_Withholding_UU */ public String getC_Withholding_UU() { return (String)get_Value(COLUMNNAME_C_Withholding_UU); } /** 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 Fix amount. @param FixAmt Fix amounted amount to be levied or paid */ public void setFixAmt (BigDecimal FixAmt) { set_Value (COLUMNNAME_FixAmt, FixAmt); } /** Get Fix amount. @return Fix amounted amount to be levied or paid */ public BigDecimal getFixAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_FixAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Paid to third party. @param IsPaidTo3Party Amount paid to someone other than the Business Partner */ public void setIsPaidTo3Party (boolean IsPaidTo3Party) { set_Value (COLUMNNAME_IsPaidTo3Party, Boolean.valueOf(IsPaidTo3Party)); } /** Get Paid to third party. @return Amount paid to someone other than the Business Partner */ public boolean isPaidTo3Party() { Object oo = get_Value(COLUMNNAME_IsPaidTo3Party); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Percent withholding. @param IsPercentWithholding Withholding amount is a percentage of the invoice amount */ public void setIsPercentWithholding (boolean IsPercentWithholding) { set_Value (COLUMNNAME_IsPercentWithholding, Boolean.valueOf(IsPercentWithholding)); } /** Get Percent withholding. @return Withholding amount is a percentage of the invoice amount */ public boolean isPercentWithholding() { Object oo = get_Value(COLUMNNAME_IsPercentWithholding); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Prorate tax. @param IsTaxProrated Tax is Prorated */ public void setIsTaxProrated (boolean IsTaxProrated) { set_Value (COLUMNNAME_IsTaxProrated, Boolean.valueOf(IsTaxProrated)); } /** Get Prorate tax. @return Tax is Prorated */ public boolean isTaxProrated() { Object oo = get_Value(COLUMNNAME_IsTaxProrated); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Tax withholding. @param IsTaxWithholding This is a tax related withholding */ public void setIsTaxWithholding (boolean IsTaxWithholding) { set_Value (COLUMNNAME_IsTaxWithholding, Boolean.valueOf(IsTaxWithholding)); } /** Get Tax withholding. @return This is a tax related withholding */ public boolean isTaxWithholding() { Object oo = get_Value(COLUMNNAME_IsTaxWithholding); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Max Amount. @param MaxAmt Maximum Amount in invoice currency */ public void setMaxAmt (BigDecimal MaxAmt) { set_Value (COLUMNNAME_MaxAmt, MaxAmt); } /** Get Max Amount. @return Maximum Amount in invoice currency */ public BigDecimal getMaxAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_MaxAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Min Amount. @param MinAmt Minimum Amount in invoice currency */ public void setMinAmt (BigDecimal MinAmt) { set_Value (COLUMNNAME_MinAmt, MinAmt); } /** Get Min Amount. @return Minimum Amount in invoice currency */ public BigDecimal getMinAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_MinAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Name. @param Name Alphanumeric identifier of the entity */ public void setName (String Name) { set_Value (COLUMNNAME_Name, Name); } /** Get Name. @return Alphanumeric identifier of the entity */ public String getName() { return (String)get_Value(COLUMNNAME_Name); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), getName()); } /** Set Percent. @param Percent Percentage */ public void setPercent (BigDecimal Percent) { set_Value (COLUMNNAME_Percent, Percent); } /** Get Percent. @return Percentage */ public BigDecimal getPercent() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Percent); if (bd == null) return Env.ZERO; return bd; } /** Set Threshold max. @param ThresholdMax Maximum gross amount for withholding calculation (0=no limit) */ public void setThresholdMax (BigDecimal ThresholdMax) { set_Value (COLUMNNAME_ThresholdMax, ThresholdMax); } /** Get Threshold max. @return Maximum gross amount for withholding calculation (0=no limit) */ public BigDecimal getThresholdMax() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_ThresholdMax); if (bd == null) return Env.ZERO; return bd; } /** Set Threshold min. @param Thresholdmin Minimum gross amount for withholding calculation */ public void setThresholdmin (BigDecimal Thresholdmin) { set_Value (COLUMNNAME_Thresholdmin, Thresholdmin); } /** Get Threshold min. @return Minimum gross amount for withholding calculation */ public BigDecimal getThresholdmin() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Thresholdmin); if (bd == null) return Env.ZERO; return bd; } }