为什么我的产品在Magento的qty = 0时不会缺货?

时间:2011-03-31 17:38:57

标签: php magento stock

我尝试使用库存为1的产品订购。

订单完成后,库存为0.没关系。

但是,Stock Availability设置为“In stock”。选项Qty for Item's Status to become Out of Stock也设置为0

你有什么想法吗?我不明白。

编辑,这是配置:

系统>配置>目录>库存(全球): enter image description here

产品>库存(特定产品) enter image description here

2 个答案:

答案 0 :(得分:1)

“管理库存”必须适用于产品本身或全局配置。有关详细信息,请参阅Magento Wiki:http://www.magentocommerce.com/wiki/welcome_to_the_magento_user_s_guide/chapter_3#stock_management

答案 1 :(得分:0)

这似乎是Magento 1.4中的一个错误。作为一种解决方法,我每晚都通过cron运行以下脚本,以修复所有产品的库存状态:

<?php
require_once 'app/Mage.php';
Mage::app();
Mage::getModel('cataloginventory/stock_status')->rebuild();