gpt4 book ai didi

magento - 如何检查可配置产品是否缺货?

转载 作者:行者123 更新时间:2023-12-04 14:44:34 25 4
gpt4 key购买 nike

我们都知道 magento 中的可配置产品与简单产品相关联。

如果与可配置产品关联的简单产品变为Inventory = 0,则表示可配置产品缺货

所以问题是我如何检测可配置产品是否缺货?我想检测以便我可以在前端显示“缺货”文本。

像这样的东西

if($configurable_product->isOutOfStock()) {
echo "Out of Stock";
}

我怎样才能在 Magento 中做到这一点?

最佳答案

if (!$configurable->isSaleable() ||$configurable_product->getIsInStock()==0){
// out of stock
}

用于检查 child 简单产品:
$allProducts = $configurable->getTypeInstance(true)
->getUsedProducts(null, $configurable);
foreach ($allProducts as $product) {
if (!$product->isSaleable()|| $product->getIsInStock()==0) {
//out of stock for check child simple product
}
}

关于magento - 如何检查可配置产品是否缺货?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25323090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com