Adempiere 3.5.2a

org.compiere.model
Class MUOMConversion

java.lang.Object
  extended by org.compiere.model.PO
      extended by org.compiere.model.X_C_UOM_Conversion
          extended by org.compiere.model.MUOMConversion
All Implemented Interfaces:
Serializable, Comparator, I_C_UOM_Conversion, I_Persistent, Evaluatee

public class MUOMConversion
extends X_C_UOM_Conversion

Unit of Measure Conversion Model

Version:
$Id: MUOMConversion.java,v 1.3 2006/07/30 00:51:03 jjanke Exp $
Author:
Jorg Janke
See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.compiere.model.X_C_UOM_Conversion
C_UOM_ID_AD_Reference_ID, C_UOM_TO_ID_AD_Reference_ID
 
Fields inherited from class org.compiere.model.PO
ACCESSLEVEL_ALL, ACCESSLEVEL_CLIENT, ACCESSLEVEL_CLIENTORG, ACCESSLEVEL_ORG, ACCESSLEVEL_SYSTEM, ACCESSLEVEL_SYSTEMCLIENT, ENTITYTYPE_Dictionary, ENTITYTYPE_UserMaintained, I_ZERO, log, p_ctx, p_info, XML_ATTRIBUTE_AD_Table_ID, XML_ATTRIBUTE_Record_ID
 
Fields inherited from interface org.compiere.model.I_C_UOM_Conversion
accessLevel, COLUMNNAME_C_UOM_Conversion_ID, COLUMNNAME_C_UOM_ID, COLUMNNAME_C_UOM_To_ID, COLUMNNAME_DivideRate, COLUMNNAME_M_Product_ID, COLUMNNAME_MultiplyRate, Model, Table_ID, Table_Name
 
Constructor Summary
MUOMConversion(MProduct parent)
          Parent Constructor
MUOMConversion(MUOM parent)
          Parent Constructor
MUOMConversion(Properties ctx, int C_UOM_Conversion_ID, String trxName)
          Default Constructor
MUOMConversion(Properties ctx, ResultSet rs, String trxName)
          Load Constructor
 
Method Summary
protected  boolean beforeSave(boolean newRecord)
          Before Save
static BigDecimal convert(int C_UOM_From_ID, int C_UOM_To_ID, BigDecimal qty, boolean StdPrecision)
          Get Converted Qty from Server (no cache)
static BigDecimal convert(Properties ctx, int C_UOM_ID, int C_UOM_To_ID, BigDecimal qty)
          Convert qty to target UOM and round.
static BigDecimal convertProductFrom(Properties ctx, int M_Product_ID, int C_UOM_To_ID, BigDecimal qtyPrice)
          Convert Qty/Amt FROM product UOM to entered UOM and round.
static BigDecimal convertProductTo(Properties ctx, int M_Product_ID, int C_UOM_To_ID, BigDecimal qtyPrice)
          Convert Qty/Amt from entered UOM TO product UoM and round.
static int convertToMinutes(Properties ctx, int C_UOM_ID, BigDecimal qty)
          Convert qty to target UOM and round.
static BigDecimal deriveRate(Properties ctx, int C_UOM_ID, int C_UOM_To_ID)
          Derive Standard Conversions
static Timestamp getEndDate(Properties ctx, Timestamp startDate, int C_UOM_ID, BigDecimal qty)
          Calculate End Date based on start date and qty
static MUOMConversion[] getProductConversions(Properties ctx, int M_Product_ID)
          Get Product Conversions (cached)
static BigDecimal getProductRateFrom(Properties ctx, int M_Product_ID, int C_UOM_To_ID)
          Get Divide Rate FROM product UOM to entered UOM and round.
static BigDecimal getProductRateTo(Properties ctx, int M_Product_ID, int C_UOM_To_ID)
          Get Multiplier Rate from entered UOM TO product UoM
static BigDecimal getRate(int C_UOM_ID, int C_UOM_To_ID)
          Get Conversion Multiplier Rate from Server
static BigDecimal getRate(Properties ctx, int C_UOM_ID, int C_UOM_To_ID)
          Get Multiplier Rate to target UOM
 String toString()
          String Representation
 
Methods inherited from class org.compiere.model.X_C_UOM_Conversion
get_AccessLevel, getC_UOM_Conversion_ID, getC_UOM_ID, getC_UOM_To_ID, getC_UOM, getDivideRate, getKeyNamePair, getM_Product_ID, getM_Product, getMultiplyRate, initPO, setC_UOM_Conversion_ID, setC_UOM_ID, setC_UOM_To_ID, setDivideRate, setM_Product_ID, setMultiplyRate
 
Methods inherited from class org.compiere.model.PO
afterDelete, afterSave, beforeDelete, compare, copyValues, copyValues, createAttachment, delete_Accounting, delete_Tree, delete, delete, deleteEx, deleteEx, dump, dump, equals, get_ColumnCount, get_ColumnDescription, get_ColumnDisplayType, get_ColumnIndex, get_ColumnLabel, get_ColumnLookup, get_ColumnName, get_DisplayValue, get_HashMap, get_ID, get_IDOld, get_KeyColumns, get_Logger, get_Table_ID, get_TableName, get_Translation, get_TrxName, get_Value, get_Value, get_ValueAsInt, get_ValueAsString, get_ValueDifference, get_ValueDifference, get_ValueE, get_ValueOfColumn, get_ValueOld, get_ValueOld, get_ValueOldAsInt, get_WhereClause, get_xmlDocument, get_xmlString, getAD_Client_ID, getAD_Org_ID, getAllIDs, getAttachment, getAttachment, getAttachmentData, getCreated, getCreatedBy, getCtx, getDoc, getFindParameter, getPdfAttachment, getUpdated, getUpdatedBy, insert_Accounting, insert_Tree, insert_Tree, is_Changed, is_new, is_ValueChanged, is_ValueChanged, isActive, isAttachment, isColumnMandatory, isColumnUpdateable, isMandatoryOK, isPdfAttachment, isReplication, load, load, load, load, loadComplete, loadDefaults, loadSpecial, lock, save, save, saveEx, saveEx, saveNew_getID, saveNewSpecial, saveReplica, saveUpdate, set_ColumnUpdateable, set_CustomColumn, set_TrxName, set_TrxName, set_Value, set_Value, set_ValueE, set_ValueNoCheck, set_ValueNoCheckE, set_ValueOfColumn, set_ValueOfColumn, setAD_Client_ID, setAD_Org_ID, setClientOrg, setClientOrg, setDoc, setDocWorkflowMgr, setIsActive, setReplication, setStandardDefaults, setUpdateable, setUpdatedBy, unlock
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.compiere.model.I_Persistent
save
 

Constructor Detail

MUOMConversion

public MUOMConversion(Properties ctx,
                      int C_UOM_Conversion_ID,
                      String trxName)
Default Constructor

Parameters:
ctx - context
C_UOM_Conversion_ID - id
trxName - transaction

MUOMConversion

public MUOMConversion(Properties ctx,
                      ResultSet rs,
                      String trxName)
Load Constructor

Parameters:
ctx - context
rs - result set
trxName - transaction

MUOMConversion

public MUOMConversion(MUOM parent)
Parent Constructor

Parameters:
parent - uom parent

MUOMConversion

public MUOMConversion(MProduct parent)
Parent Constructor

Parameters:
parent - product parent
Method Detail

convert

public static BigDecimal convert(Properties ctx,
                                 int C_UOM_ID,
                                 int C_UOM_To_ID,
                                 BigDecimal qty)
Convert qty to target UOM and round.

Parameters:
ctx - context
C_UOM_ID - from UOM
C_UOM_To_ID - to UOM
qty - qty
Returns:
converted qty (std precision)

getRate

public static BigDecimal getRate(Properties ctx,
                                 int C_UOM_ID,
                                 int C_UOM_To_ID)
Get Multiplier Rate to target UOM

Parameters:
ctx - context
C_UOM_ID - from UOM
C_UOM_To_ID - to UOM
Returns:
multiplier

convertToMinutes

public static int convertToMinutes(Properties ctx,
                                   int C_UOM_ID,
                                   BigDecimal qty)
Convert qty to target UOM and round.

Parameters:
ctx - context
C_UOM_ID - from UOM
qty - qty
Returns:
minutes - 0 if not found

getEndDate

public static Timestamp getEndDate(Properties ctx,
                                   Timestamp startDate,
                                   int C_UOM_ID,
                                   BigDecimal qty)
Calculate End Date based on start date and qty

Parameters:
ctx - context
startDate - date
C_UOM_ID - UOM
qty - qty
Returns:
end date

deriveRate

public static BigDecimal deriveRate(Properties ctx,
                                    int C_UOM_ID,
                                    int C_UOM_To_ID)
Derive Standard Conversions

Parameters:
ctx - context
C_UOM_ID - from UOM
C_UOM_To_ID - to UOM
Returns:
Conversion or null

getRate

public static BigDecimal getRate(int C_UOM_ID,
                                 int C_UOM_To_ID)
Get Conversion Multiplier Rate from Server

Parameters:
C_UOM_ID - from UOM
C_UOM_To_ID - to UOM
Returns:
conversion multiplier or null

convert

public static BigDecimal convert(int C_UOM_From_ID,
                                 int C_UOM_To_ID,
                                 BigDecimal qty,
                                 boolean StdPrecision)
Get Converted Qty from Server (no cache)

Parameters:
qty - The quantity to be converted
C_UOM_From_ID - The C_UOM_ID of the qty
C_UOM_To_ID - The targeted UOM
StdPrecision - if true, standard precision, if false costing precision
Returns:
amount

convertProductTo

public static BigDecimal convertProductTo(Properties ctx,
                                          int M_Product_ID,
                                          int C_UOM_To_ID,
                                          BigDecimal qtyPrice)
Convert Qty/Amt from entered UOM TO product UoM and round.

Parameters:
ctx - context
M_Product_ID - product
C_UOM_To_ID - entered UOM
qtyPrice - entered quantity or price
Returns:
Product: Qty/Amt in product UoM (precision rounded)

getProductRateTo

public static BigDecimal getProductRateTo(Properties ctx,
                                          int M_Product_ID,
                                          int C_UOM_To_ID)
Get Multiplier Rate from entered UOM TO product UoM

Parameters:
ctx - context
M_Product_ID - product
C_UOM_To_ID - entered UOM
Returns:
multiplier or null

convertProductFrom

public static BigDecimal convertProductFrom(Properties ctx,
                                            int M_Product_ID,
                                            int C_UOM_To_ID,
                                            BigDecimal qtyPrice)
Convert Qty/Amt FROM product UOM to entered UOM and round.

Parameters:
ctx - context
M_Product_ID - product
C_UOM_To_ID - entered UOM
qtyPrice - quantity or price
Returns:
Entered: Qty in entered UoM (precision rounded)

getProductRateFrom

public static BigDecimal getProductRateFrom(Properties ctx,
                                            int M_Product_ID,
                                            int C_UOM_To_ID)
Get Divide Rate FROM product UOM to entered UOM and round.

Parameters:
ctx - context
M_Product_ID - product
C_UOM_To_ID - entered UOM
Returns:
divisor or null

getProductConversions

public static MUOMConversion[] getProductConversions(Properties ctx,
                                                     int M_Product_ID)
Get Product Conversions (cached)

Parameters:
ctx - context
M_Product_ID - product
Returns:
array of conversions

beforeSave

protected boolean beforeSave(boolean newRecord)
Before Save

Overrides:
beforeSave in class PO
Parameters:
newRecord - new
Returns:
true if can be saved

toString

public String toString()
String Representation

Overrides:
toString in class X_C_UOM_Conversion
Returns:
info

Adempiere 3.5.2a

Adempiere® is a registered trademark of ADempiere Business Inc. ©2004-2008 HumanFlash.com All rights reserved.