[-] Core : Fix PSCFV-2898 delete stock_available after combination deletion

This commit is contained in:
rGaillard
2012-07-13 08:52:42 +00:00
parent 604dc29194
commit 40630be3c4
+4 -1
View File
@@ -101,7 +101,10 @@ class CombinationCore extends ObjectModel
{
if (!parent::delete())
return false;
// Removes the product from StockAvailable, for the current shop
StockAvailable::removeProductFromStockAvailable((int)$this->id_product, (int)$this->id);
if (!$this->hasMultishopEntries() && !$this->deleteAssociations())
return false;
return true;