我想要在Magneto销售的所有产品中没有。所以我的问题是如何才能在Magento中获得所售产品的总数?
答案 0 :(得分:1)
您可以使用以下代码: -
$from ='2014-07-07';
$to =date('Y-m-d',time());
$_productCollection = Mage::getResourceModel('reports/product_collection')->addOrderedQty($from, $to, true)
->addAttributeToFilter('sku', 'Sample Product')->setOrder('ordered_qty', 'desc');
echo "<pre>";
print_R($_productCollection->getData());
exit;