// Added hook actionProductCoverage in mailalerts module and updated StockManager

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13860 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
bMancone
2012-03-05 18:52:25 +00:00
parent 92a3249e8b
commit b361e985c0
13 changed files with 325 additions and 11 deletions
+10
View File
@@ -406,6 +406,16 @@ class StockManagerCore implements StockManagerInterface
}
}
// if we remove a usable quantity, exec hook
if ($is_usable)
Hook::exec('actionProductCoverage',
array(
'id_product' => $id_product,
'id_product_attribute' => $id_product_attribute,
'warehouse' => $warehouse
)
);
return $return;
}