[ 1689521 ] Issue when you need buy with um minor that stoked
This commit is contained in:
parent
190ff03523
commit
64d99c7354
|
@ -696,6 +696,8 @@ public class MUOMConversion extends X_C_UOM_Conversion
|
|||
return false;
|
||||
}
|
||||
// Enforce Product UOM
|
||||
if (MSysConfig.getBooleanValue("ProductUOMConversionUOMValidate", true))
|
||||
{
|
||||
if (getM_Product_ID() != 0
|
||||
&& (newRecord || is_ValueChanged("M_Product_ID")))
|
||||
{
|
||||
|
@ -707,13 +709,18 @@ public class MUOMConversion extends X_C_UOM_Conversion
|
|||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// The Product UoM needs to be the smallest UoM - Multiplier must be > 0
|
||||
if (MSysConfig.getBooleanValue("ProductUOMConversionRateValidate", true))
|
||||
{
|
||||
if (getM_Product_ID() != 0 && getDivideRate().compareTo(Env.ONE) < 0)
|
||||
{
|
||||
log.saveError("ProductUOMConversionRateError", "");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
} // beforeSave
|
||||
|
||||
|
|
Loading…
Reference in New Issue