// Don't set stockavailable to 0 if stock management is enabled but not configured for the product

This commit is contained in:
rGaillard
2012-10-23 08:18:31 +00:00
parent 049c85b303
commit 0eafc88cbd
+1 -1
View File
@@ -245,7 +245,7 @@ class StockAvailableCore extends ObjectModel
}
// In case there are no warehouses, removes product from StockAvailable
if (count($ids_warehouse) == 0)
if (count($ids_warehouse) == 0 && StockAvailable::dependsOnStock((int)$id_product))
Db::getInstance()->update('stock_available', array('quantity' => 0 ), 'id_product = '.(int)$id_product);
}