6

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

我目前有库存显示可用数量,而那些延期交货的产品没有显示任何内容。

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

谢谢!

西蒙。

4

2 回答 2

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产品可用性消息来源的文件中。

于 2013-05-09T10:32:12.367 回答
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";
}
于 2015-03-30T01:16:17.913 回答