/****************************************************************************** * 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 I_Inventory * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="I_Inventory") public class X_I_Inventory extends PO implements I_I_Inventory, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_I_Inventory (Properties ctx, int I_Inventory_ID, String trxName) { super (ctx, I_Inventory_ID, trxName); /** if (I_Inventory_ID == 0) { setI_Inventory_ID (0); setI_IsImported (false); } */ } /** Standard Constructor */ public X_I_Inventory (Properties ctx, int I_Inventory_ID, String trxName, String ... virtualColumns) { super (ctx, I_Inventory_ID, trxName, virtualColumns); /** if (I_Inventory_ID == 0) { setI_Inventory_ID (0); setI_IsImported (false); } */ } /** Standard Constructor */ public X_I_Inventory (Properties ctx, String I_Inventory_UU, String trxName) { super (ctx, I_Inventory_UU, trxName); /** if (I_Inventory_UU == null) { setI_Inventory_ID (0); setI_IsImported (false); } */ } /** Standard Constructor */ public X_I_Inventory (Properties ctx, String I_Inventory_UU, String trxName, String ... virtualColumns) { super (ctx, I_Inventory_UU, trxName, virtualColumns); /** if (I_Inventory_UU == null) { setI_Inventory_ID (0); setI_IsImported (false); } */ } /** Load Constructor */ public X_I_Inventory (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 2 - Client */ 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_I_Inventory[") .append(get_ID()).append("]"); return sb.toString(); } 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_DocType getC_DocType() throws RuntimeException { return (org.compiere.model.I_C_DocType)MTable.get(getCtx(), org.compiere.model.I_C_DocType.Table_ID) .getPO(getC_DocType_ID(), get_TrxName()); } /** Set Document Type. @param C_DocType_ID Document type or rules */ public void setC_DocType_ID (int C_DocType_ID) { if (C_DocType_ID < 0) set_Value (COLUMNNAME_C_DocType_ID, null); else set_Value (COLUMNNAME_C_DocType_ID, Integer.valueOf(C_DocType_ID)); } /** Get Document Type. @return Document type or rules */ public int getC_DocType_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_DocType_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Charge Name. @param ChargeName Name of the Charge */ public void setChargeName (String ChargeName) { set_Value (COLUMNNAME_ChargeName, ChargeName); } /** Get Charge Name. @return Name of the Charge */ public String getChargeName() { return (String)get_Value(COLUMNNAME_ChargeName); } /** Set Current Cost Price. @param CurrentCostPrice The currently used cost price */ public void setCurrentCostPrice (BigDecimal CurrentCostPrice) { set_Value (COLUMNNAME_CurrentCostPrice, CurrentCostPrice); } /** Get Current Cost Price. @return The currently used cost price */ public BigDecimal getCurrentCostPrice() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_CurrentCostPrice); if (bd == null) return Env.ZERO; return bd; } /** 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 Document Type Name. @param DocTypeName Name of the Document Type */ public void setDocTypeName (String DocTypeName) { set_Value (COLUMNNAME_DocTypeName, DocTypeName); } /** Get Document Type Name. @return Name of the Document Type */ public String getDocTypeName() { return (String)get_Value(COLUMNNAME_DocTypeName); } /** Set Import Error Message. @param I_ErrorMsg Messages generated from import process */ public void setI_ErrorMsg (String I_ErrorMsg) { set_Value (COLUMNNAME_I_ErrorMsg, I_ErrorMsg); } /** Get Import Error Message. @return Messages generated from import process */ public String getI_ErrorMsg() { return (String)get_Value(COLUMNNAME_I_ErrorMsg); } /** Set Import Inventory. @param I_Inventory_ID Import Inventory Transactions */ public void setI_Inventory_ID (int I_Inventory_ID) { if (I_Inventory_ID < 1) set_ValueNoCheck (COLUMNNAME_I_Inventory_ID, null); else set_ValueNoCheck (COLUMNNAME_I_Inventory_ID, Integer.valueOf(I_Inventory_ID)); } /** Get Import Inventory. @return Import Inventory Transactions */ public int getI_Inventory_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_I_Inventory_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(getI_Inventory_ID())); } /** Set I_Inventory_UU. @param I_Inventory_UU I_Inventory_UU */ public void setI_Inventory_UU (String I_Inventory_UU) { set_Value (COLUMNNAME_I_Inventory_UU, I_Inventory_UU); } /** Get I_Inventory_UU. @return I_Inventory_UU */ public String getI_Inventory_UU() { return (String)get_Value(COLUMNNAME_I_Inventory_UU); } /** Set Imported. @param I_IsImported Has this import been processed */ public void setI_IsImported (boolean I_IsImported) { set_Value (COLUMNNAME_I_IsImported, Boolean.valueOf(I_IsImported)); } /** Get Imported. @return Has this import been processed */ public boolean isI_IsImported() { Object oo = get_Value(COLUMNNAME_I_IsImported); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Locator Key. @param LocatorValue Key of the Warehouse Locator */ public void setLocatorValue (String LocatorValue) { set_Value (COLUMNNAME_LocatorValue, LocatorValue); } /** Get Locator Key. @return Key of the Warehouse Locator */ public String getLocatorValue() { return (String)get_Value(COLUMNNAME_LocatorValue); } /** Set Lot No. @param Lot Lot number (alphanumeric) */ public void setLot (String Lot) { set_Value (COLUMNNAME_Lot, Lot); } /** Get Lot No. @return Lot number (alphanumeric) */ public String getLot() { return (String)get_Value(COLUMNNAME_Lot); } public org.compiere.model.I_M_InventoryLine getM_CostingLine() throws RuntimeException { return (org.compiere.model.I_M_InventoryLine)MTable.get(getCtx(), org.compiere.model.I_M_InventoryLine.Table_ID) .getPO(getM_CostingLine_ID(), get_TrxName()); } /** Set Cost Adjustment Line. @param M_CostingLine_ID Unique line in an Inventory cost adjustment document */ public void setM_CostingLine_ID (int M_CostingLine_ID) { if (M_CostingLine_ID < 1) set_Value (COLUMNNAME_M_CostingLine_ID, null); else set_Value (COLUMNNAME_M_CostingLine_ID, Integer.valueOf(M_CostingLine_ID)); } /** Get Cost Adjustment Line. @return Unique line in an Inventory cost adjustment document */ public int getM_CostingLine_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_CostingLine_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_Inventory getM_Inventory() throws RuntimeException { return (org.compiere.model.I_M_Inventory)MTable.get(getCtx(), org.compiere.model.I_M_Inventory.Table_ID) .getPO(getM_Inventory_ID(), get_TrxName()); } /** Set Phys.Inventory. @param M_Inventory_ID Parameters for a Physical Inventory */ public void setM_Inventory_ID (int M_Inventory_ID) { if (M_Inventory_ID < 1) set_Value (COLUMNNAME_M_Inventory_ID, null); else set_Value (COLUMNNAME_M_Inventory_ID, Integer.valueOf(M_Inventory_ID)); } /** Get Phys.Inventory. @return Parameters for a Physical Inventory */ public int getM_Inventory_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Inventory_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_M_Locator getM_Locator() throws RuntimeException { return (org.compiere.model.I_M_Locator)MTable.get(getCtx(), org.compiere.model.I_M_Locator.Table_ID) .getPO(getM_Locator_ID(), get_TrxName()); } /** Set Locator. @param M_Locator_ID Warehouse Locator */ public void setM_Locator_ID (int M_Locator_ID) { if (M_Locator_ID < 1) set_Value (COLUMNNAME_M_Locator_ID, null); else set_Value (COLUMNNAME_M_Locator_ID, Integer.valueOf(M_Locator_ID)); } /** Get Locator. @return Warehouse Locator */ public int getM_Locator_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Locator_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_Warehouse getM_Warehouse() throws RuntimeException { return (org.compiere.model.I_M_Warehouse)MTable.get(getCtx(), org.compiere.model.I_M_Warehouse.Table_ID) .getPO(getM_Warehouse_ID(), get_TrxName()); } /** Set Warehouse. @param M_Warehouse_ID Storage Warehouse and Service Point */ public void setM_Warehouse_ID (int M_Warehouse_ID) { if (M_Warehouse_ID < 1) set_Value (COLUMNNAME_M_Warehouse_ID, null); else set_Value (COLUMNNAME_M_Warehouse_ID, Integer.valueOf(M_Warehouse_ID)); } /** Get Warehouse. @return Storage Warehouse and Service Point */ public int getM_Warehouse_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_Warehouse_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Movement Date. @param MovementDate Date a product was moved in or out of inventory */ public void setMovementDate (Timestamp MovementDate) { set_Value (COLUMNNAME_MovementDate, MovementDate); } /** Get Movement Date. @return Date a product was moved in or out of inventory */ public Timestamp getMovementDate() { return (Timestamp)get_Value(COLUMNNAME_MovementDate); } /** 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 Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) { set_Value (COLUMNNAME_Processing, Boolean.valueOf(Processing)); } /** Get Process Now. @return Process Now */ public boolean isProcessing() { Object oo = get_Value(COLUMNNAME_Processing); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Quantity book. @param QtyBook Book Quantity */ public void setQtyBook (BigDecimal QtyBook) { set_Value (COLUMNNAME_QtyBook, QtyBook); } /** Get Quantity book. @return Book Quantity */ public BigDecimal getQtyBook() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyBook); if (bd == null) return Env.ZERO; return bd; } /** Set Quantity count. @param QtyCount Counted Quantity */ public void setQtyCount (BigDecimal QtyCount) { set_Value (COLUMNNAME_QtyCount, QtyCount); } /** Get Quantity count. @return Counted Quantity */ public BigDecimal getQtyCount() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyCount); if (bd == null) return Env.ZERO; return bd; } /** Set Internal Use Qty. @param QtyInternalUse Internal Use Quantity removed from Inventory */ public void setQtyInternalUse (BigDecimal QtyInternalUse) { set_Value (COLUMNNAME_QtyInternalUse, QtyInternalUse); } /** Get Internal Use Qty. @return Internal Use Quantity removed from Inventory */ public BigDecimal getQtyInternalUse() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyInternalUse); if (bd == null) return Env.ZERO; return bd; } /** Set Serial No. @param SerNo Product Serial Number */ public void setSerNo (String SerNo) { set_Value (COLUMNNAME_SerNo, SerNo); } /** Get Serial No. @return Product Serial Number */ public String getSerNo() { return (String)get_Value(COLUMNNAME_SerNo); } /** Set UPC/EAN. @param UPC Bar Code (Universal Product Code or its superset European Article Number) */ public void setUPC (String UPC) { set_Value (COLUMNNAME_UPC, UPC); } /** Get UPC/EAN. @return Bar Code (Universal Product Code or its superset European Article Number) */ public String getUPC() { return (String)get_Value(COLUMNNAME_UPC); } /** Set Search Key. @param Value Search key for the record in the format required - must be unique */ public void setValue (String Value) { set_Value (COLUMNNAME_Value, Value); } /** Get Search Key. @return Search key for the record in the format required - must be unique */ public String getValue() { return (String)get_Value(COLUMNNAME_Value); } /** Set Warehouse Key. @param WarehouseValue Key of the Warehouse */ public void setWarehouseValue (String WarehouseValue) { set_Value (COLUMNNAME_WarehouseValue, WarehouseValue); } /** Get Warehouse Key. @return Key of the Warehouse */ public String getWarehouseValue() { return (String)get_Value(COLUMNNAME_WarehouseValue); } /** Set Aisle (X). @param X X dimension, e.g., Aisle */ public void setX (String X) { set_Value (COLUMNNAME_X, X); } /** Get Aisle (X). @return X dimension, e.g., Aisle */ public String getX() { return (String)get_Value(COLUMNNAME_X); } /** Set Bin (Y). @param Y Y dimension, e.g., Bin */ public void setY (String Y) { set_Value (COLUMNNAME_Y, Y); } /** Get Bin (Y). @return Y dimension, e.g., Bin */ public String getY() { return (String)get_Value(COLUMNNAME_Y); } /** Set Level (Z). @param Z Z dimension, e.g., Level */ public void setZ (String Z) { set_Value (COLUMNNAME_Z, Z); } /** Get Level (Z). @return Z dimension, e.g., Level */ public String getZ() { return (String)get_Value(COLUMNNAME_Z); } }