[-] FO: Fix add to cart for product packs with no quantity and out of stock allowed #PSCFV-4788

This commit is contained in:
Rémi Gaillard
2013-01-10 11:30:41 +01:00
parent 74774be65e
commit 2b9f64b790
+1 -2
View File
@@ -113,8 +113,7 @@ class PackCore extends Product
foreach ($items as $item)
{
// Updated for 1.5.0
if (Product::getQuantity($item->id) < $item->pack_quantity
|| (Product::getQuantity($item->id) < $item->pack_quantity && !$item->isAvailableWhenOutOfStock((int)$item->out_of_stock)))
if (Product::getQuantity($item->id) < $item->pack_quantity && !$item->isAvailableWhenOutOfStock((int)$item->out_of_stock))
return false;
}
return true;