/****************************************************************************** * 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; /** Generated Model for M_TransactionAllocation * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="M_TransactionAllocation") public class X_M_TransactionAllocation extends PO implements I_M_TransactionAllocation, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_M_TransactionAllocation (Properties ctx, int M_TransactionAllocation_ID, String trxName) { super (ctx, M_TransactionAllocation_ID, trxName); /** if (M_TransactionAllocation_ID == 0) { setAllocationStrategyType (null); setIsAllocated (false); // N setIsManual (false); // N setM_AttributeSetInstance_ID (0); setM_Product_ID (0); setM_Transaction_ID (0); setQty (Env.ZERO); } */ } /** Standard Constructor */ public X_M_TransactionAllocation (Properties ctx, int M_TransactionAllocation_ID, String trxName, String ... virtualColumns) { super (ctx, M_TransactionAllocation_ID, trxName, virtualColumns); /** if (M_TransactionAllocation_ID == 0) { setAllocationStrategyType (null); setIsAllocated (false); // N setIsManual (false); // N setM_AttributeSetInstance_ID (0); setM_Product_ID (0); setM_Transaction_ID (0); setQty (Env.ZERO); } */ } /** Standard Constructor */ public X_M_TransactionAllocation (Properties ctx, String M_TransactionAllocation_UU, String trxName) { super (ctx, M_TransactionAllocation_UU, trxName); /** if (M_TransactionAllocation_UU == null) { setAllocationStrategyType (null); setIsAllocated (false); // N setIsManual (false); // N setM_AttributeSetInstance_ID (0); setM_Product_ID (0); setM_Transaction_ID (0); setQty (Env.ZERO); } */ } /** Standard Constructor */ public X_M_TransactionAllocation (Properties ctx, String M_TransactionAllocation_UU, String trxName, String ... virtualColumns) { super (ctx, M_TransactionAllocation_UU, trxName, virtualColumns); /** if (M_TransactionAllocation_UU == null) { setAllocationStrategyType (null); setIsAllocated (false); // N setIsManual (false); // N setM_AttributeSetInstance_ID (0); setM_Product_ID (0); setM_Transaction_ID (0); setQty (Env.ZERO); } */ } /** Load Constructor */ public X_M_TransactionAllocation (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_M_TransactionAllocation[") .append(get_UUID()).append("]"); return sb.toString(); } /** AllocationStrategyType AD_Reference_ID=294 */ public static final int ALLOCATIONSTRATEGYTYPE_AD_Reference_ID=294; /** FiFo = F */ public static final String ALLOCATIONSTRATEGYTYPE_FiFo = "F"; /** LiFo = L */ public static final String ALLOCATIONSTRATEGYTYPE_LiFo = "L"; /** Set Allocation Strategy. @param AllocationStrategyType Allocation Strategy */ public void setAllocationStrategyType (String AllocationStrategyType) { set_Value (COLUMNNAME_AllocationStrategyType, AllocationStrategyType); } /** Get Allocation Strategy. @return Allocation Strategy */ public String getAllocationStrategyType() { return (String)get_Value(COLUMNNAME_AllocationStrategyType); } /** Set Allocated. @param IsAllocated Indicates if the payment has been allocated */ public void setIsAllocated (boolean IsAllocated) { set_Value (COLUMNNAME_IsAllocated, Boolean.valueOf(IsAllocated)); } /** Get Allocated. @return Indicates if the payment has been allocated */ public boolean isAllocated() { Object oo = get_Value(COLUMNNAME_IsAllocated); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Manual. @param IsManual This is a manual process */ public void setIsManual (boolean IsManual) { set_Value (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; } public I_M_AttributeSetInstance getM_AttributeSetInstance() throws RuntimeException { return (I_M_AttributeSetInstance)MTable.get(getCtx(), I_M_AttributeSetInstance.Table_ID) .getPO(getM_AttributeSetInstance_ID(), get_TrxName()); } /** Set Attribute Set Instance. @param M_AttributeSetInstance_ID Product Attribute Set Instance */ public void setM_AttributeSetInstance_ID (int M_AttributeSetInstance_ID) { if (M_AttributeSetInstance_ID < 0) set_Value (COLUMNNAME_M_AttributeSetInstance_ID, null); else set_Value (COLUMNNAME_M_AttributeSetInstance_ID, Integer.valueOf(M_AttributeSetInstance_ID)); } /** Get Attribute Set Instance. @return Product Attribute Set Instance */ public int getM_AttributeSetInstance_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_AttributeSetInstance_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_InOutLine getM_InOutLine() throws RuntimeException { return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_ID) .getPO(getM_InOutLine_ID(), get_TrxName()); } /** Set Shipment/Receipt Line. @param M_InOutLine_ID Line on Shipment or Receipt document */ public void setM_InOutLine_ID (int M_InOutLine_ID) { if (M_InOutLine_ID < 1) set_Value (COLUMNNAME_M_InOutLine_ID, null); else set_Value (COLUMNNAME_M_InOutLine_ID, Integer.valueOf(M_InOutLine_ID)); } /** Get Shipment/Receipt Line. @return Line on Shipment or Receipt document */ public int getM_InOutLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_InOutLine_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_InventoryLine getM_InventoryLine() throws RuntimeException { return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_ID) .getPO(getM_InventoryLine_ID(), get_TrxName()); } /** Set Phys.Inventory Line. @param M_InventoryLine_ID Unique line in an Inventory document */ public void setM_InventoryLine_ID (int M_InventoryLine_ID) { if (M_InventoryLine_ID < 1) set_Value (COLUMNNAME_M_InventoryLine_ID, null); else set_Value (COLUMNNAME_M_InventoryLine_ID, Integer.valueOf(M_InventoryLine_ID)); } /** Get Phys.Inventory Line. @return Unique line in an Inventory document */ public int getM_InventoryLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_InventoryLine_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_Product getM_Product() throws RuntimeException { return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_ID) .getPO(getM_Product_ID(), get_TrxName()); } /** Set Product. @param M_Product_ID Product, Service, Item */ public void setM_Product_ID (int M_Product_ID) { if (M_Product_ID < 1) set_Value (COLUMNNAME_M_Product_ID, null); else set_Value (COLUMNNAME_M_Product_ID, Integer.valueOf(M_Product_ID)); } /** Get Product. @return Product, Service, Item */ public int getM_Product_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Product_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_ProductionLine getM_ProductionLine() throws RuntimeException { return (org.compiere.model.I_M_ProductionLine)MTable.get(getCtx(), org.compiere.model.I_M_ProductionLine.Table_ID) .getPO(getM_ProductionLine_ID(), get_TrxName()); } /** Set Production Line. @param M_ProductionLine_ID Document Line representing a production */ public void setM_ProductionLine_ID (int M_ProductionLine_ID) { if (M_ProductionLine_ID < 1) set_Value (COLUMNNAME_M_ProductionLine_ID, null); else set_Value (COLUMNNAME_M_ProductionLine_ID, Integer.valueOf(M_ProductionLine_ID)); } /** Get Production Line. @return Document Line representing a production */ public int getM_ProductionLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_ProductionLine_ID); if (ii == null) return 0; return ii.intValue(); } /** Set M_TransactionAllocation_UU. @param M_TransactionAllocation_UU M_TransactionAllocation_UU */ public void setM_TransactionAllocation_UU (String M_TransactionAllocation_UU) { set_Value (COLUMNNAME_M_TransactionAllocation_UU, M_TransactionAllocation_UU); } /** Get M_TransactionAllocation_UU. @return M_TransactionAllocation_UU */ public String getM_TransactionAllocation_UU() { return (String)get_Value(COLUMNNAME_M_TransactionAllocation_UU); } public org.compiere.model.I_M_Transaction getM_Transaction() throws RuntimeException { return (org.compiere.model.I_M_Transaction)MTable.get(getCtx(), org.compiere.model.I_M_Transaction.Table_ID) .getPO(getM_Transaction_ID(), get_TrxName()); } /** Set Inventory Transaction. @param M_Transaction_ID Inventory Transaction */ public void setM_Transaction_ID (int M_Transaction_ID) { if (M_Transaction_ID < 1) set_ValueNoCheck (COLUMNNAME_M_Transaction_ID, null); else set_ValueNoCheck (COLUMNNAME_M_Transaction_ID, Integer.valueOf(M_Transaction_ID)); } /** Get Inventory Transaction. @return Inventory Transaction */ public int getM_Transaction_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Transaction_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_InOutLine getOut_M_InOutLine() throws RuntimeException { return (org.compiere.model.I_M_InOutLine)MTable.get(getCtx(), org.compiere.model.I_M_InOutLine.Table_ID) .getPO(getOut_M_InOutLine_ID(), get_TrxName()); } /** Set Out Shipment Line. @param Out_M_InOutLine_ID Outgoing Shipment/Receipt */ public void setOut_M_InOutLine_ID (int Out_M_InOutLine_ID) { if (Out_M_InOutLine_ID < 1) set_Value (COLUMNNAME_Out_M_InOutLine_ID, null); else set_Value (COLUMNNAME_Out_M_InOutLine_ID, Integer.valueOf(Out_M_InOutLine_ID)); } /** Get Out Shipment Line. @return Outgoing Shipment/Receipt */ public int getOut_M_InOutLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Out_M_InOutLine_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_InventoryLine getOut_M_InventoryLine() throws RuntimeException { return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_ID) .getPO(getOut_M_InventoryLine_ID(), get_TrxName()); } /** Set Out Inventory Line. @param Out_M_InventoryLine_ID Outgoing Inventory Line */ public void setOut_M_InventoryLine_ID (int Out_M_InventoryLine_ID) { if (Out_M_InventoryLine_ID < 1) set_Value (COLUMNNAME_Out_M_InventoryLine_ID, null); else set_Value (COLUMNNAME_Out_M_InventoryLine_ID, Integer.valueOf(Out_M_InventoryLine_ID)); } /** Get Out Inventory Line. @return Outgoing Inventory Line */ public int getOut_M_InventoryLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Out_M_InventoryLine_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_ProductionLine getOut_M_ProductionLine() throws RuntimeException { return (org.compiere.model.I_M_ProductionLine)MTable.get(getCtx(), org.compiere.model.I_M_ProductionLine.Table_ID) .getPO(getOut_M_ProductionLine_ID(), get_TrxName()); } /** Set Out Production Line. @param Out_M_ProductionLine_ID Outgoing Production Line */ public void setOut_M_ProductionLine_ID (int Out_M_ProductionLine_ID) { if (Out_M_ProductionLine_ID < 1) set_Value (COLUMNNAME_Out_M_ProductionLine_ID, null); else set_Value (COLUMNNAME_Out_M_ProductionLine_ID, Integer.valueOf(Out_M_ProductionLine_ID)); } /** Get Out Production Line. @return Outgoing Production Line */ public int getOut_M_ProductionLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Out_M_ProductionLine_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_Transaction getOut_M_Transaction() throws RuntimeException { return (org.compiere.model.I_M_Transaction)MTable.get(getCtx(), org.compiere.model.I_M_Transaction.Table_ID) .getPO(getOut_M_Transaction_ID(), get_TrxName()); } /** Set Out Transaction. @param Out_M_Transaction_ID Outgoing Transaction */ public void setOut_M_Transaction_ID (int Out_M_Transaction_ID) { if (Out_M_Transaction_ID < 1) set_Value (COLUMNNAME_Out_M_Transaction_ID, null); else set_Value (COLUMNNAME_Out_M_Transaction_ID, Integer.valueOf(Out_M_Transaction_ID)); } /** Get Out Transaction. @return Outgoing Transaction */ public int getOut_M_Transaction_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_Out_M_Transaction_ID); if (ii == null) return 0; return ii.intValue(); } /** 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; } }