/****************************************************************************** * 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; import org.compiere.util.KeyNamePair; /** Generated Model for C_AllocationLine * @author iDempiere (generated) * @version Release 11 - $Id$ */ @org.adempiere.base.Model(table="C_AllocationLine") public class X_C_AllocationLine extends PO implements I_C_AllocationLine, I_Persistent { /** * */ private static final long serialVersionUID = 20231222L; /** Standard Constructor */ public X_C_AllocationLine (Properties ctx, int C_AllocationLine_ID, String trxName) { super (ctx, C_AllocationLine_ID, trxName); /** if (C_AllocationLine_ID == 0) { setAmount (Env.ZERO); setC_AllocationHdr_ID (0); setC_AllocationLine_ID (0); setDiscountAmt (Env.ZERO); setWriteOffAmt (Env.ZERO); } */ } /** Standard Constructor */ public X_C_AllocationLine (Properties ctx, int C_AllocationLine_ID, String trxName, String ... virtualColumns) { super (ctx, C_AllocationLine_ID, trxName, virtualColumns); /** if (C_AllocationLine_ID == 0) { setAmount (Env.ZERO); setC_AllocationHdr_ID (0); setC_AllocationLine_ID (0); setDiscountAmt (Env.ZERO); setWriteOffAmt (Env.ZERO); } */ } /** Standard Constructor */ public X_C_AllocationLine (Properties ctx, String C_AllocationLine_UU, String trxName) { super (ctx, C_AllocationLine_UU, trxName); /** if (C_AllocationLine_UU == null) { setAmount (Env.ZERO); setC_AllocationHdr_ID (0); setC_AllocationLine_ID (0); setDiscountAmt (Env.ZERO); setWriteOffAmt (Env.ZERO); } */ } /** Standard Constructor */ public X_C_AllocationLine (Properties ctx, String C_AllocationLine_UU, String trxName, String ... virtualColumns) { super (ctx, C_AllocationLine_UU, trxName, virtualColumns); /** if (C_AllocationLine_UU == null) { setAmount (Env.ZERO); setC_AllocationHdr_ID (0); setC_AllocationLine_ID (0); setDiscountAmt (Env.ZERO); setWriteOffAmt (Env.ZERO); } */ } /** Load Constructor */ public X_C_AllocationLine (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 1 - 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_AllocationLine[") .append(get_ID()).append("]"); return sb.toString(); } /** Set Amount. @param Amount Amount in a defined currency */ public void setAmount (BigDecimal Amount) { set_ValueNoCheck (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; } public org.compiere.model.I_C_AllocationHdr getC_AllocationHdr() throws RuntimeException { return (org.compiere.model.I_C_AllocationHdr)MTable.get(getCtx(), org.compiere.model.I_C_AllocationHdr.Table_ID) .getPO(getC_AllocationHdr_ID(), get_TrxName()); } /** Set Allocation. @param C_AllocationHdr_ID Payment allocation */ public void setC_AllocationHdr_ID (int C_AllocationHdr_ID) { if (C_AllocationHdr_ID < 1) set_ValueNoCheck (COLUMNNAME_C_AllocationHdr_ID, null); else set_ValueNoCheck (COLUMNNAME_C_AllocationHdr_ID, Integer.valueOf(C_AllocationHdr_ID)); } /** Get Allocation. @return Payment allocation */ public int getC_AllocationHdr_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_AllocationHdr_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Allocation Line. @param C_AllocationLine_ID Allocation Line */ public void setC_AllocationLine_ID (int C_AllocationLine_ID) { if (C_AllocationLine_ID < 1) set_ValueNoCheck (COLUMNNAME_C_AllocationLine_ID, null); else set_ValueNoCheck (COLUMNNAME_C_AllocationLine_ID, Integer.valueOf(C_AllocationLine_ID)); } /** Get Allocation Line. @return Allocation Line */ public int getC_AllocationLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_AllocationLine_ID); if (ii == null) return 0; return ii.intValue(); } /** Set C_AllocationLine_UU. @param C_AllocationLine_UU C_AllocationLine_UU */ public void setC_AllocationLine_UU (String C_AllocationLine_UU) { set_Value (COLUMNNAME_C_AllocationLine_UU, C_AllocationLine_UU); } /** Get C_AllocationLine_UU. @return C_AllocationLine_UU */ public String getC_AllocationLine_UU() { return (String)get_Value(COLUMNNAME_C_AllocationLine_UU); } public org.compiere.model.I_C_BankTransfer getC_BankTransfer() throws RuntimeException { return (org.compiere.model.I_C_BankTransfer)MTable.get(getCtx(), org.compiere.model.I_C_BankTransfer.Table_ID) .getPO(getC_BankTransfer_ID(), get_TrxName()); } /** Set Bank Transfer. @param C_BankTransfer_ID Bank Transfer */ public void setC_BankTransfer_ID (int C_BankTransfer_ID) { if (C_BankTransfer_ID < 1) set_Value (COLUMNNAME_C_BankTransfer_ID, null); else set_Value (COLUMNNAME_C_BankTransfer_ID, Integer.valueOf(C_BankTransfer_ID)); } /** Get Bank Transfer. @return Bank Transfer */ public int getC_BankTransfer_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_BankTransfer_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) { 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(); } public org.compiere.model.I_C_CashLine getC_CashLine() throws RuntimeException { return (org.compiere.model.I_C_CashLine)MTable.get(getCtx(), org.compiere.model.I_C_CashLine.Table_ID) .getPO(getC_CashLine_ID(), get_TrxName()); } /** 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(); } 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_ValueNoCheck (COLUMNNAME_C_Charge_ID, null); else set_ValueNoCheck (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_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(); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), String.valueOf(getC_Invoice_ID())); } public org.compiere.model.I_C_Order getC_Order() throws RuntimeException { return (org.compiere.model.I_C_Order)MTable.get(getCtx(), org.compiere.model.I_C_Order.Table_ID) .getPO(getC_Order_ID(), get_TrxName()); } /** Set Order. @param C_Order_ID Order */ public void setC_Order_ID (int C_Order_ID) { if (C_Order_ID < 1) set_ValueNoCheck (COLUMNNAME_C_Order_ID, null); else set_ValueNoCheck (COLUMNNAME_C_Order_ID, Integer.valueOf(C_Order_ID)); } /** Get Order. @return Order */ public int getC_Order_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Order_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_ValueNoCheck (COLUMNNAME_C_Payment_ID, null); else set_ValueNoCheck (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 Transaction Date. @param DateTrx Transaction Date */ public void setDateTrx (Timestamp DateTrx) { set_ValueNoCheck (COLUMNNAME_DateTrx, DateTrx); } /** Get Transaction Date. @return Transaction Date */ public Timestamp getDateTrx() { return (Timestamp)get_Value(COLUMNNAME_DateTrx); } /** Set Discount Amount. @param DiscountAmt Calculated amount of discount */ public void setDiscountAmt (BigDecimal DiscountAmt) { set_ValueNoCheck (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 Manual. @param IsManual This is a manual process */ public void setIsManual (boolean IsManual) { set_ValueNoCheck (COLUMNNAME_IsManual, Boolean.valueOf(IsManual)); } /** Get Manual. @return This is a manual process */ public boolean isManual() { Object oo = get_Value(COLUMNNAME_IsManual); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Over/Under Payment. @param OverUnderAmt Over-Payment (unallocated) or Under-Payment (partial payment) Amount */ public void setOverUnderAmt (BigDecimal OverUnderAmt) { set_Value (COLUMNNAME_OverUnderAmt, OverUnderAmt); } /** Get Over/Under Payment. @return Over-Payment (unallocated) or Under-Payment (partial payment) Amount */ public BigDecimal getOverUnderAmt() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_OverUnderAmt); if (bd == null) return Env.ZERO; return bd; } /** Set Write-off Amount. @param WriteOffAmt Amount to write-off */ public void setWriteOffAmt (BigDecimal WriteOffAmt) { set_ValueNoCheck (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; } }