/****************************************************************************** * 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 RV_WarehousePrice * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="RV_WarehousePrice") public class X_RV_WarehousePrice extends PO implements I_RV_WarehousePrice, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_RV_WarehousePrice (Properties ctx, int RV_WarehousePrice_ID, String trxName) { super (ctx, RV_WarehousePrice_ID, trxName); /** if (RV_WarehousePrice_ID == 0) { setC_UOM_ID (0); setM_PriceList_Version_ID (0); setM_Product_ID (0); setM_Warehouse_ID (0); setName (null); setValue (null); setWarehouseName (null); } */ } /** Standard Constructor */ public X_RV_WarehousePrice (Properties ctx, int RV_WarehousePrice_ID, String trxName, String ... virtualColumns) { super (ctx, RV_WarehousePrice_ID, trxName, virtualColumns); /** if (RV_WarehousePrice_ID == 0) { setC_UOM_ID (0); setM_PriceList_Version_ID (0); setM_Product_ID (0); setM_Warehouse_ID (0); setName (null); setValue (null); setWarehouseName (null); } */ } /** Standard Constructor */ public X_RV_WarehousePrice (Properties ctx, String RV_WarehousePrice_UU, String trxName) { super (ctx, RV_WarehousePrice_UU, trxName); /** if (RV_WarehousePrice_UU == null) { setC_UOM_ID (0); setM_PriceList_Version_ID (0); setM_Product_ID (0); setM_Warehouse_ID (0); setName (null); setValue (null); setWarehouseName (null); } */ } /** Standard Constructor */ public X_RV_WarehousePrice (Properties ctx, String RV_WarehousePrice_UU, String trxName, String ... virtualColumns) { super (ctx, RV_WarehousePrice_UU, trxName, virtualColumns); /** if (RV_WarehousePrice_UU == null) { setC_UOM_ID (0); setM_PriceList_Version_ID (0); setM_Product_ID (0); setM_Warehouse_ID (0); setName (null); setValue (null); setWarehouseName (null); } */ } /** Load Constructor */ public X_RV_WarehousePrice (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_RV_WarehousePrice[") .append(get_UUID()).append(",Name=").append(getName()).append("]"); return sb.toString(); } public org.compiere.model.I_C_UOM getC_UOM() throws RuntimeException { return (org.compiere.model.I_C_UOM)MTable.get(getCtx(), org.compiere.model.I_C_UOM.Table_ID) .getPO(getC_UOM_ID(), get_TrxName()); } /** Set UOM. @param C_UOM_ID Unit of Measure */ public void setC_UOM_ID (int C_UOM_ID) { if (C_UOM_ID < 1) set_ValueNoCheck (COLUMNNAME_C_UOM_ID, null); else set_ValueNoCheck (COLUMNNAME_C_UOM_ID, Integer.valueOf(C_UOM_ID)); } /** Get UOM. @return Unit of Measure */ public int getC_UOM_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_UOM_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Instance Attribute. @param IsInstanceAttribute The product attribute is specific to the instance (like Serial No, Lot or Guarantee Date) */ public void setIsInstanceAttribute (boolean IsInstanceAttribute) { set_ValueNoCheck (COLUMNNAME_IsInstanceAttribute, Boolean.valueOf(IsInstanceAttribute)); } /** Get Instance Attribute. @return The product attribute is specific to the instance (like Serial No, Lot or Guarantee Date) */ public boolean isInstanceAttribute() { Object oo = get_Value(COLUMNNAME_IsInstanceAttribute); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } public org.compiere.model.I_M_PriceList_Version getM_PriceList_Version() throws RuntimeException { return (org.compiere.model.I_M_PriceList_Version)MTable.get(getCtx(), org.compiere.model.I_M_PriceList_Version.Table_ID) .getPO(getM_PriceList_Version_ID(), get_TrxName()); } /** Set Price List Version. @param M_PriceList_Version_ID Identifies a unique instance of a Price List */ public void setM_PriceList_Version_ID (int M_PriceList_Version_ID) { if (M_PriceList_Version_ID < 1) set_ValueNoCheck (COLUMNNAME_M_PriceList_Version_ID, null); else set_ValueNoCheck (COLUMNNAME_M_PriceList_Version_ID, Integer.valueOf(M_PriceList_Version_ID)); } /** Get Price List Version. @return Identifies a unique instance of a Price List */ public int getM_PriceList_Version_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_M_PriceList_Version_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_ValueNoCheck (COLUMNNAME_M_Product_ID, null); else set_ValueNoCheck (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_ValueNoCheck (COLUMNNAME_M_Warehouse_ID, null); else set_ValueNoCheck (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 Margin %. @param Margin Margin for a product as a percentage */ public void setMargin (BigDecimal Margin) { set_ValueNoCheck (COLUMNNAME_Margin, Margin); } /** Get Margin %. @return Margin for a product as a percentage */ public BigDecimal getMargin() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_Margin); if (bd == null) return Env.ZERO; return bd; } /** Set Name. @param Name Alphanumeric identifier of the entity */ public void setName (String Name) { set_ValueNoCheck (COLUMNNAME_Name, Name); } /** Get Name. @return Alphanumeric identifier of the entity */ public String getName() { return (String)get_Value(COLUMNNAME_Name); } /** Set Limit Price. @param PriceLimit Lowest price for a product */ public void setPriceLimit (BigDecimal PriceLimit) { set_ValueNoCheck (COLUMNNAME_PriceLimit, PriceLimit); } /** Get Limit Price. @return Lowest price for a product */ public BigDecimal getPriceLimit() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_PriceLimit); if (bd == null) return Env.ZERO; return bd; } /** Set List Price. @param PriceList List Price */ public void setPriceList (BigDecimal PriceList) { set_ValueNoCheck (COLUMNNAME_PriceList, PriceList); } /** Get List Price. @return List Price */ public BigDecimal getPriceList() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_PriceList); if (bd == null) return Env.ZERO; return bd; } /** Set Standard Price. @param PriceStd Standard Price */ public void setPriceStd (BigDecimal PriceStd) { set_ValueNoCheck (COLUMNNAME_PriceStd, PriceStd); } /** Get Standard Price. @return Standard Price */ public BigDecimal getPriceStd() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_PriceStd); if (bd == null) return Env.ZERO; return bd; } /** Set Available Quantity. @param QtyAvailable Available Quantity (On Hand - Reserved) */ public void setQtyAvailable (BigDecimal QtyAvailable) { set_ValueNoCheck (COLUMNNAME_QtyAvailable, QtyAvailable); } /** Get Available Quantity. @return Available Quantity (On Hand - Reserved) */ public BigDecimal getQtyAvailable() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyAvailable); if (bd == null) return Env.ZERO; return bd; } /** Set On Hand Quantity. @param QtyOnHand On Hand Quantity */ public void setQtyOnHand (BigDecimal QtyOnHand) { set_ValueNoCheck (COLUMNNAME_QtyOnHand, QtyOnHand); } /** Get On Hand Quantity. @return On Hand Quantity */ public BigDecimal getQtyOnHand() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyOnHand); if (bd == null) return Env.ZERO; return bd; } /** Set Ordered Quantity. @param QtyOrdered Ordered Quantity */ public void setQtyOrdered (BigDecimal QtyOrdered) { set_ValueNoCheck (COLUMNNAME_QtyOrdered, QtyOrdered); } /** Get Ordered Quantity. @return Ordered Quantity */ public BigDecimal getQtyOrdered() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyOrdered); if (bd == null) return Env.ZERO; return bd; } /** Set Reserved Quantity. @param QtyReserved Reserved Quantity */ public void setQtyReserved (BigDecimal QtyReserved) { set_ValueNoCheck (COLUMNNAME_QtyReserved, QtyReserved); } /** Get Reserved Quantity. @return Reserved Quantity */ public BigDecimal getQtyReserved() { BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_QtyReserved); if (bd == null) return Env.ZERO; return bd; } /** Set SKU. @param SKU Stock Keeping Unit */ public void setSKU (String SKU) { set_ValueNoCheck (COLUMNNAME_SKU, SKU); } /** Get SKU. @return Stock Keeping Unit */ public String getSKU() { return (String)get_Value(COLUMNNAME_SKU); } /** Set Symbol. @param UOMSymbol Symbol for a Unit of Measure */ public void setUOMSymbol (String UOMSymbol) { set_ValueNoCheck (COLUMNNAME_UOMSymbol, UOMSymbol); } /** Get Symbol. @return Symbol for a Unit of Measure */ public String getUOMSymbol() { return (String)get_Value(COLUMNNAME_UOMSymbol); } /** Set UPC/EAN. @param UPC Bar Code (Universal Product Code or its superset European Article Number) */ public void setUPC (String UPC) { set_ValueNoCheck (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_ValueNoCheck (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. @param WarehouseName Warehouse Name */ public void setWarehouseName (String WarehouseName) { set_ValueNoCheck (COLUMNNAME_WarehouseName, WarehouseName); } /** Get Warehouse. @return Warehouse Name */ public String getWarehouseName() { return (String)get_Value(COLUMNNAME_WarehouseName); } }