/****************************************************************************** * 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.util.Properties; import org.compiere.util.ValueNamePair; /** Generated Model for C_BP_Withholding * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="C_BP_Withholding") public class X_C_BP_Withholding extends PO implements I_C_BP_Withholding, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_C_BP_Withholding (Properties ctx, int C_BP_Withholding_ID, String trxName) { super (ctx, C_BP_Withholding_ID, trxName); /** if (C_BP_Withholding_ID == 0) { setC_BPartner_ID (0); setC_Withholding_ID (0); setIsMandatoryWithholding (false); setIsTemporaryExempt (false); } */ } /** Standard Constructor */ public X_C_BP_Withholding (Properties ctx, int C_BP_Withholding_ID, String trxName, String ... virtualColumns) { super (ctx, C_BP_Withholding_ID, trxName, virtualColumns); /** if (C_BP_Withholding_ID == 0) { setC_BPartner_ID (0); setC_Withholding_ID (0); setIsMandatoryWithholding (false); setIsTemporaryExempt (false); } */ } /** Standard Constructor */ public X_C_BP_Withholding (Properties ctx, String C_BP_Withholding_UU, String trxName) { super (ctx, C_BP_Withholding_UU, trxName); /** if (C_BP_Withholding_UU == null) { setC_BPartner_ID (0); setC_Withholding_ID (0); setIsMandatoryWithholding (false); setIsTemporaryExempt (false); } */ } /** Standard Constructor */ public X_C_BP_Withholding (Properties ctx, String C_BP_Withholding_UU, String trxName, String ... virtualColumns) { super (ctx, C_BP_Withholding_UU, trxName, virtualColumns); /** if (C_BP_Withholding_UU == null) { setC_BPartner_ID (0); setC_Withholding_ID (0); setIsMandatoryWithholding (false); setIsTemporaryExempt (false); } */ } /** Load Constructor */ public X_C_BP_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_BP_Withholding[") .append(get_UUID()).append("]"); return sb.toString(); } /** Set C_BP_Withholding_UU. @param C_BP_Withholding_UU C_BP_Withholding_UU */ public void setC_BP_Withholding_UU (String C_BP_Withholding_UU) { set_Value (COLUMNNAME_C_BP_Withholding_UU, C_BP_Withholding_UU); } /** Get C_BP_Withholding_UU. @return C_BP_Withholding_UU */ public String getC_BP_Withholding_UU() { return (String)get_Value(COLUMNNAME_C_BP_Withholding_UU); } 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) { if (C_BPartner_ID < 1) set_ValueNoCheck (COLUMNNAME_C_BPartner_ID, null); else set_ValueNoCheck (COLUMNNAME_C_BPartner_ID, Integer.valueOf(C_BPartner_ID)); } /** 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(); } /** Get Record UU/ColumnName @return UU/ColumnName pair */ public ValueNamePair getValueNamePair() { return new ValueNamePair(get_UUID(), String.valueOf(getC_BPartner_ID())); } public org.compiere.model.I_C_Withholding getC_Withholding() throws RuntimeException { return (org.compiere.model.I_C_Withholding)MTable.get(getCtx(), org.compiere.model.I_C_Withholding.Table_ID) .getPO(getC_Withholding_ID(), get_TrxName()); } /** 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 Exempt reason. @param ExemptReason Reason for not withholding */ public void setExemptReason (String ExemptReason) { set_Value (COLUMNNAME_ExemptReason, ExemptReason); } /** Get Exempt reason. @return Reason for not withholding */ public String getExemptReason() { return (String)get_Value(COLUMNNAME_ExemptReason); } /** Set Mandatory Withholding. @param IsMandatoryWithholding Monies must be withheld */ public void setIsMandatoryWithholding (boolean IsMandatoryWithholding) { set_Value (COLUMNNAME_IsMandatoryWithholding, Boolean.valueOf(IsMandatoryWithholding)); } /** Get Mandatory Withholding. @return Monies must be withheld */ public boolean isMandatoryWithholding() { Object oo = get_Value(COLUMNNAME_IsMandatoryWithholding); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Temporary exempt. @param IsTemporaryExempt Temporarily do not withhold taxes */ public void setIsTemporaryExempt (boolean IsTemporaryExempt) { set_Value (COLUMNNAME_IsTemporaryExempt, Boolean.valueOf(IsTemporaryExempt)); } /** Get Temporary exempt. @return Temporarily do not withhold taxes */ public boolean isTemporaryExempt() { Object oo = get_Value(COLUMNNAME_IsTemporaryExempt); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } }