/****************************************************************************** * 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_CashLine * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="C_CashLine") public class X_C_CashLine extends PO implements I_C_CashLine, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_C_CashLine (Properties ctx, int C_CashLine_ID, String trxName) { super (ctx, C_CashLine_ID, trxName); /** if (C_CashLine_ID == 0) { setAmount (Env.ZERO); setCashType (null); // E setC_Cash_ID (0); setC_CashLine_ID (0); setLine (0); // @SQL=SELECT COALESCE(MAX(Line),0)+10 AS DefaultValue FROM C_CashLine WHERE C_Cash_ID=@C_Cash_ID@ setProcessed (false); } */ } /** Standard Constructor */ public X_C_CashLine (Properties ctx, int C_CashLine_ID, String trxName, String ... virtualColumns) { super (ctx, C_CashLine_ID, trxName, virtualColumns); /** if (C_CashLine_ID == 0) { setAmount (Env.ZERO); setCashType (null); // E setC_Cash_ID (0); setC_CashLine_ID (0); setLine (0); // @SQL=SELECT COALESCE(MAX(Line),0)+10 AS DefaultValue FROM C_CashLine WHERE C_Cash_ID=@C_Cash_ID@ setProcessed (false); } */ } /** Standard Constructor */ public X_C_CashLine (Properties ctx, String C_CashLine_UU, String trxName) { super (ctx, C_CashLine_UU, trxName); /** if (C_CashLine_UU == null) { setAmount (Env.ZERO); setCashType (null); // E setC_Cash_ID (0); setC_CashLine_ID (0); setLine (0); // @SQL=SELECT COALESCE(MAX(Line),0)+10 AS DefaultValue FROM C_CashLine WHERE C_Cash_ID=@C_Cash_ID@ setProcessed (false); } */ } /** Standard Constructor */ public X_C_CashLine (Properties ctx, String C_CashLine_UU, String trxName, String ... virtualColumns) { super (ctx, C_CashLine_UU, trxName, virtualColumns); /** if (C_CashLine_UU == null) { setAmount (Env.ZERO); setCashType (null); // E setC_Cash_ID (0); setC_CashLine_ID (0); setLine (0); // @SQL=SELECT COALESCE(MAX(Line),0)+10 AS DefaultValue FROM C_CashLine WHERE C_Cash_ID=@C_Cash_ID@ setProcessed (false); } */ } /** Load Constructor */ public X_C_CashLine (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_CashLine[") .append(get_ID()).append("]"); return sb.toString(); } /** Set Amount. @param Amount Amount in a defined currency */ public void setAmount (BigDecimal Amount) { set_Value (COLUMNNAME_Amount, Amount); } /** Get Amount. @return Amount in a defined currency */ public BigDecimal getAmount() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Amount); if (bd == null) return Env.ZERO; return bd; } /** CashType AD_Reference_ID=217 */ public static final int CASHTYPE_AD_Reference_ID=217; /** Charge = C */ public static final String CASHTYPE_Charge = "C"; /** Difference = D */ public static final String CASHTYPE_Difference = "D"; /** General Expense = E */ public static final String CASHTYPE_GeneralExpense = "E"; /** Invoice = I */ public static final String CASHTYPE_Invoice = "I"; /** General Receipts = R */ public static final String CASHTYPE_GeneralReceipts = "R"; /** Bank Account Transfer = T */ public static final String CASHTYPE_BankAccountTransfer = "T"; /** Set Cash Type. @param CashType Source of Cash */ public void setCashType (String CashType) { set_ValueNoCheck (COLUMNNAME_CashType, CashType); } /** Get Cash Type. @return Source of Cash */ public String getCashType() { return (String)get_Value(COLUMNNAME_CashType); } public org.compiere.model.I_C_BankAccount getC_BankAccount() throws RuntimeException { return (org.compiere.model.I_C_BankAccount)MTable.get(getCtx(), org.compiere.model.I_C_BankAccount.Table_ID) .getPO(getC_BankAccount_ID(), get_TrxName()); } /** Set Bank Account. @param C_BankAccount_ID Account at the Bank */ public void setC_BankAccount_ID (int C_BankAccount_ID) { if (C_BankAccount_ID < 1) set_Value (COLUMNNAME_C_BankAccount_ID, null); else set_Value (COLUMNNAME_C_BankAccount_ID, Integer.valueOf(C_BankAccount_ID)); } /** Get Bank Account. @return Account at the Bank */ public int getC_BankAccount_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_BankAccount_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Cash getC_Cash() throws RuntimeException { return (org.compiere.model.I_C_Cash)MTable.get(getCtx(), org.compiere.model.I_C_Cash.Table_ID) .getPO(getC_Cash_ID(), get_TrxName()); } /** Set Cash Journal. @param C_Cash_ID Cash Journal */ public void setC_Cash_ID (int C_Cash_ID) { if (C_Cash_ID < 1) set_ValueNoCheck (COLUMNNAME_C_Cash_ID, null); else set_ValueNoCheck (COLUMNNAME_C_Cash_ID, Integer.valueOf(C_Cash_ID)); } /** Get Cash Journal. @return Cash Journal */ public int getC_Cash_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Cash_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_Cash_ID())); } /** Set Cash Journal Line. @param C_CashLine_ID Cash Journal Line */ public void setC_CashLine_ID (int C_CashLine_ID) { if (C_CashLine_ID < 1) set_ValueNoCheck (COLUMNNAME_C_CashLine_ID, null); else set_ValueNoCheck (COLUMNNAME_C_CashLine_ID, Integer.valueOf(C_CashLine_ID)); } /** Get Cash Journal Line. @return Cash Journal Line */ public int getC_CashLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_CashLine_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_CashLine_UU. @param C_CashLine_UU C_CashLine_UU */ public void setC_CashLine_UU (String C_CashLine_UU) { set_Value (COLUMNNAME_C_CashLine_UU, C_CashLine_UU); } /** Get C_CashLine_UU. @return C_CashLine_UU */ public String getC_CashLine_UU() { return (String)get_Value(COLUMNNAME_C_CashLine_UU); } public org.compiere.model.I_C_Charge getC_Charge() throws RuntimeException { return (org.compiere.model.I_C_Charge)MTable.get(getCtx(), org.compiere.model.I_C_Charge.Table_ID) .getPO(getC_Charge_ID(), get_TrxName()); } /** Set Charge. @param C_Charge_ID Additional document charges */ public void setC_Charge_ID (int C_Charge_ID) { if (C_Charge_ID < 1) set_Value (COLUMNNAME_C_Charge_ID, null); else set_Value (COLUMNNAME_C_Charge_ID, Integer.valueOf(C_Charge_ID)); } /** Get Charge. @return Additional document charges */ public int getC_Charge_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Charge_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_ValueNoCheck (COLUMNNAME_C_Currency_ID, null); else set_ValueNoCheck (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_Invoice getC_Invoice() throws RuntimeException { return (org.compiere.model.I_C_Invoice)MTable.get(getCtx(), org.compiere.model.I_C_Invoice.Table_ID) .getPO(getC_Invoice_ID(), get_TrxName()); } /** Set Invoice. @param C_Invoice_ID Invoice Identifier */ public void setC_Invoice_ID (int C_Invoice_ID) { if (C_Invoice_ID < 1) set_ValueNoCheck (COLUMNNAME_C_Invoice_ID, null); else set_ValueNoCheck (COLUMNNAME_C_Invoice_ID, Integer.valueOf(C_Invoice_ID)); } /** Get Invoice. @return Invoice Identifier */ public int getC_Invoice_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Invoice_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Payment getC_Payment() throws RuntimeException { return (org.compiere.model.I_C_Payment)MTable.get(getCtx(), org.compiere.model.I_C_Payment.Table_ID) .getPO(getC_Payment_ID(), get_TrxName()); } /** Set Payment. @param C_Payment_ID Payment identifier */ public void setC_Payment_ID (int C_Payment_ID) { if (C_Payment_ID < 1) set_Value (COLUMNNAME_C_Payment_ID, null); else set_Value (COLUMNNAME_C_Payment_ID, Integer.valueOf(C_Payment_ID)); } /** Get Payment. @return Payment identifier */ public int getC_Payment_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Payment_ID); if (ii == null) return 0; return ii.intValue(); } /** 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 Discount Amount. @param DiscountAmt Calculated amount of discount */ public void setDiscountAmt (BigDecimal DiscountAmt) { set_Value (COLUMNNAME_DiscountAmt, DiscountAmt); } /** Get Discount Amount. @return Calculated amount of discount */ public BigDecimal getDiscountAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_DiscountAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Generated. @param IsGenerated This Line is generated */ public void setIsGenerated (boolean IsGenerated) { set_ValueNoCheck (COLUMNNAME_IsGenerated, Boolean.valueOf(IsGenerated)); } /** Get Generated. @return This Line is generated */ public boolean isGenerated() { Object oo = get_Value(COLUMNNAME_IsGenerated); 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(); } /** 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 Write-off Amount. @param WriteOffAmt Amount to write-off */ public void setWriteOffAmt (BigDecimal WriteOffAmt) { set_Value (COLUMNNAME_WriteOffAmt, WriteOffAmt); } /** Get Write-off Amount. @return Amount to write-off */ public BigDecimal getWriteOffAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_WriteOffAmt); if (bd == null) return Env.ZERO; return bd; } }