Magento获取产品的数量

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Magento获取产品的数量相关的知识,希望对你有一定的参考价值。

this snippet of code is getting the qty of product in magento
  1. //if you have a product item model you can use that
  2.  
  3. echo $product->getQty();
  4.  
  5. //or you can use that for getting qty
  6. $product_stock_count = Mage::getModel('cataloginventory/stock_item')->loadByProduct($product)->getQty();
  7.  
  8. echo $product_stock_count;

以上是关于Magento获取产品的数量的主要内容,如果未能解决你的问题,请参考以下文章

Magento 产品属性数量

PHP Magento获得产品的数量(数量)

架构丰富的代码片段也应该用于产品列表吗?

如何从magento 2中的可配置产品中获取简单产品

产品没有出现在Magento2子类别上

Magento产品因库存0而消失但库存选项不可用