/****************************************************************************** * 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_DunningRunEntry * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="C_DunningRunEntry") public class X_C_DunningRunEntry extends PO implements I_C_DunningRunEntry, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_C_DunningRunEntry (Properties ctx, int C_DunningRunEntry_ID, String trxName) { super (ctx, C_DunningRunEntry_ID, trxName); /** if (C_DunningRunEntry_ID == 0) { setAmt (Env.ZERO); setC_BPartner_ID (0); setC_BPartner_Location_ID (0); setC_Currency_ID (0); setC_DunningLevel_ID (0); // @C_DunningLevel_ID@ setC_DunningRunEntry_ID (0); setC_DunningRun_ID (0); setProcessed (false); setQty (Env.ZERO); setSalesRep_ID (0); } */ } /** Standard Constructor */ public X_C_DunningRunEntry (Properties ctx, int C_DunningRunEntry_ID, String trxName, String ... virtualColumns) { super (ctx, C_DunningRunEntry_ID, trxName, virtualColumns); /** if (C_DunningRunEntry_ID == 0) { setAmt (Env.ZERO); setC_BPartner_ID (0); setC_BPartner_Location_ID (0); setC_Currency_ID (0); setC_DunningLevel_ID (0); // @C_DunningLevel_ID@ setC_DunningRunEntry_ID (0); setC_DunningRun_ID (0); setProcessed (false); setQty (Env.ZERO); setSalesRep_ID (0); } */ } /** Standard Constructor */ public X_C_DunningRunEntry (Properties ctx, String C_DunningRunEntry_UU, String trxName) { super (ctx, C_DunningRunEntry_UU, trxName); /** if (C_DunningRunEntry_UU == null) { setAmt (Env.ZERO); setC_BPartner_ID (0); setC_BPartner_Location_ID (0); setC_Currency_ID (0); setC_DunningLevel_ID (0); // @C_DunningLevel_ID@ setC_DunningRunEntry_ID (0); setC_DunningRun_ID (0); setProcessed (false); setQty (Env.ZERO); setSalesRep_ID (0); } */ } /** Standard Constructor */ public X_C_DunningRunEntry (Properties ctx, String C_DunningRunEntry_UU, String trxName, String ... virtualColumns) { super (ctx, C_DunningRunEntry_UU, trxName, virtualColumns); /** if (C_DunningRunEntry_UU == null) { setAmt (Env.ZERO); setC_BPartner_ID (0); setC_BPartner_Location_ID (0); setC_Currency_ID (0); setC_DunningLevel_ID (0); // @C_DunningLevel_ID@ setC_DunningRunEntry_ID (0); setC_DunningRun_ID (0); setProcessed (false); setQty (Env.ZERO); setSalesRep_ID (0); } */ } /** Load Constructor */ public X_C_DunningRunEntry (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_DunningRunEntry[") .append(get_ID()).append("]"); return sb.toString(); } public org.compiere.model.I_AD_User getAD_User() throws RuntimeException { return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_ID) .getPO(getAD_User_ID(), get_TrxName()); } /** Set User/Contact. @param AD_User_ID User within the system - Internal or Business Partner Contact */ public void setAD_User_ID (int AD_User_ID) { if (AD_User_ID < 1) set_Value (COLUMNNAME_AD_User_ID, null); else set_Value (COLUMNNAME_AD_User_ID, Integer.valueOf(AD_User_ID)); } /** Get User/Contact. @return User within the system - Internal or Business Partner Contact */ public int getAD_User_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_AD_User_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Amount. @param Amt Amount */ public void setAmt (BigDecimal Amt) { set_Value (COLUMNNAME_Amt, Amt); } /** Get Amount. @return Amount */ public BigDecimal getAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Amt); if (bd == null) return Env.ZERO; return bd; } 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_Value (COLUMNNAME_C_BPartner_ID, null); else set_Value (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(); } public org.compiere.model.I_C_BPartner_Location getC_BPartner_Location() throws RuntimeException { return (org.compiere.model.I_C_BPartner_Location)MTable.get(getCtx(), org.compiere.model.I_C_BPartner_Location.Table_ID) .getPO(getC_BPartner_Location_ID(), get_TrxName()); } /** Set Partner Location. @param C_BPartner_Location_ID Identifies the (ship to) address for this Business Partner */ public void setC_BPartner_Location_ID (int C_BPartner_Location_ID) { if (C_BPartner_Location_ID < 1) set_Value (COLUMNNAME_C_BPartner_Location_ID, null); else set_Value (COLUMNNAME_C_BPartner_Location_ID, Integer.valueOf(C_BPartner_Location_ID)); } /** Get Partner Location. @return Identifies the (ship to) address for this Business Partner */ public int getC_BPartner_Location_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_BPartner_Location_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) { if (C_Currency_ID < 1) set_Value (COLUMNNAME_C_Currency_ID, null); else set_Value (COLUMNNAME_C_Currency_ID, Integer.valueOf(C_Currency_ID)); } /** 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(); } public org.compiere.model.I_C_DunningLevel getC_DunningLevel() throws RuntimeException { return (org.compiere.model.I_C_DunningLevel)MTable.get(getCtx(), org.compiere.model.I_C_DunningLevel.Table_ID) .getPO(getC_DunningLevel_ID(), get_TrxName()); } /** Set Dunning Level. @param C_DunningLevel_ID Dunning Level */ public void setC_DunningLevel_ID (int C_DunningLevel_ID) { if (C_DunningLevel_ID < 1) set_ValueNoCheck (COLUMNNAME_C_DunningLevel_ID, null); else set_ValueNoCheck (COLUMNNAME_C_DunningLevel_ID, Integer.valueOf(C_DunningLevel_ID)); } /** Get Dunning Level. @return Dunning Level */ public int getC_DunningLevel_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_DunningLevel_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Dunning Run Entry. @param C_DunningRunEntry_ID Dunning Run Entry */ public void setC_DunningRunEntry_ID (int C_DunningRunEntry_ID) { if (C_DunningRunEntry_ID < 1) set_ValueNoCheck (COLUMNNAME_C_DunningRunEntry_ID, null); else set_ValueNoCheck (COLUMNNAME_C_DunningRunEntry_ID, Integer.valueOf(C_DunningRunEntry_ID)); } /** Get Dunning Run Entry. @return Dunning Run Entry */ public int getC_DunningRunEntry_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_DunningRunEntry_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_DunningRunEntry_UU. @param C_DunningRunEntry_UU C_DunningRunEntry_UU */ public void setC_DunningRunEntry_UU (String C_DunningRunEntry_UU) { set_Value (COLUMNNAME_C_DunningRunEntry_UU, C_DunningRunEntry_UU); } /** Get C_DunningRunEntry_UU. @return C_DunningRunEntry_UU */ public String getC_DunningRunEntry_UU() { return (String)get_Value(COLUMNNAME_C_DunningRunEntry_UU); } public org.compiere.model.I_C_DunningRun getC_DunningRun() throws RuntimeException { return (org.compiere.model.I_C_DunningRun)MTable.get(getCtx(), org.compiere.model.I_C_DunningRun.Table_ID) .getPO(getC_DunningRun_ID(), get_TrxName()); } /** Set Dunning Run. @param C_DunningRun_ID Dunning Run */ public void setC_DunningRun_ID (int C_DunningRun_ID) { if (C_DunningRun_ID < 1) set_ValueNoCheck (COLUMNNAME_C_DunningRun_ID, null); else set_ValueNoCheck (COLUMNNAME_C_DunningRun_ID, Integer.valueOf(C_DunningRun_ID)); } /** Get Dunning Run. @return Dunning Run */ public int getC_DunningRun_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_DunningRun_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_DunningRun_ID())); } /** Set Note. @param Note Optional additional user defined information */ public void setNote (String Note) { set_Value (COLUMNNAME_Note, Note); } /** Get Note. @return Optional additional user defined information */ public String getNote() { return (String)get_Value(COLUMNNAME_Note); } /** 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; } /** Set Quantity. @param Qty Quantity */ public void setQty (BigDecimal Qty) { set_Value (COLUMNNAME_Qty, Qty); } /** Get Quantity. @return Quantity */ public BigDecimal getQty() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Qty); if (bd == null) return Env.ZERO; return bd; } public org.compiere.model.I_AD_User getSalesRep() throws RuntimeException { return (org.compiere.model.I_AD_User)MTable.get(getCtx(), org.compiere.model.I_AD_User.Table_ID) .getPO(getSalesRep_ID(), get_TrxName()); } /** Set Sales Representative. @param SalesRep_ID Sales Representative or Company Agent */ public void setSalesRep_ID (int SalesRep_ID) { if (SalesRep_ID < 1) set_Value (COLUMNNAME_SalesRep_ID, null); else set_Value (COLUMNNAME_SalesRep_ID, Integer.valueOf(SalesRep_ID)); } /** Get Sales Representative. @return Sales Representative or Company Agent */ public int getSalesRep_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_SalesRep_ID); if (ii == null) return 0; return ii.intValue(); } }