2014-07-07 25 views

回答

2

您可以使用類似的東西上是每一頁上觸發像controller_front_init_before事件

$cart = Mage::getModel('checkout/cart')->getQuote(); 
foreach ($cart->getAllItems() as $item) { 
    $product = $item->getProduct(); 
    $stocklevel = (int)Mage::getModel('cataloginventory/stock_item') 
     ->loadByProduct($product)->getQty(); 
    if ($stocklevel<$item->getQty()){ 
     ...the logic that will permit to show the customer that the requested 
     product is not avaiable in this quantity... 
    } 
}