Fix for issue where the warning messages for out of stock or below reorder level were not being sent to the user.

This commit is contained in:
Steve Ireland
2017-01-30 20:38:24 -05:00
parent 85983cd17a
commit 2719c43e3d

View File

@@ -407,7 +407,7 @@ class Sale_lib
{
$item_info = $this->CI->Item->get_info_by_id_or_number($item_id);
if ($item_info->stock_type === 0) {
if ($item_info->stock_type == '0') {
$item_quantity = $this->CI->Item_quantity->get_item_quantity($item_id, $item_location)->quantity;
$quantity_added = $this->get_quantity_already_added($item_id, $item_location);