在magento前端显示延期交货状态

时间:2013-05-09 10:05:53

标签: magento frontend

我需要在产品页面(前端)上显示当前商品仅用于延期交货且没有库存。

我目前有现货显示可用的数量和延期交货的产品没有显示任何内容。

有没有人知道我可以放在view.phtml文件中的代码,该文件只会在那些设置为延期交货的产品上显示消息?

谢谢!

西蒙。

2 个答案:

答案 0 :(得分:7)

要执行此操作,请确保已从“广告资源”标签中启用了延期交货。

如果您在产品页面上,那么首先检索产品数量。

<?php
$inventory = Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product);

if( (int)$inventory->getQty() == 0 && $inventory->getBackorders() )
{
  // No Backorders => getBackorders() = 0
  // Allow Qty Below 0 => getBackorders() = 1
  // Allow Qty Below 0 and Notify Customer => getBackorders() = 2
  echo "display your backordedr message";
}
?>

您也可以输入此代码 app\design\frontend\base\default\template\catalog\product\view\type\default.phtml文件,其中包含产品的可用性消息。

答案 1 :(得分:1)

以下是您需要在view.phtml中添加的代码。这将显示延期消息:

$inventory =  Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product);
$inv_qty = (int)$inventory->getQty();
if($inventory->getBackorders() >= 0 && $inv_qty == 0)
{ 
    echo "Your backorder message goes here";
}