Non sellable item is assigned with wrong UOM
Hi,
SIM base behaviour for non_sellable items UOM is changed from UNITS to CASES while creating Store to Store Transfers.
Below is the base code snippets where the changes are done:
Integer defaultType = SimConfig.getDefaultUom();
if (defaultType != null) {
uomType = UOMMode.toType(defaultType);
}
if (!stockItem.isSellable() && !stockItem.isSimple()) {
uomType = UOMMode.CASES;
}
is there any significance of doing so? or is it bug?
Regards,
Meeran.