I want to get the ordered quantity of a product. I can get sku, name, price, etc. But I can't get the ordered quantity. This is what I am so far:
public function render(Varien_Object $row)
{
$sku = Mage::getModel("catalog/product")->load($row->getId())->getSku();
$price = Mage::getModel("catalog/product")->load($row->getId())->getPrice();
$quantity = Mage::getModel("catalog/product")->load($row->getId())->getQtyOrdered();
}
Please help!
Here's how you could do that :
Additionally, you might want to dive in the classes
Mage_Reports_Model_Resource_Product_Sold_Collection
andMage_Reports_Model_Resource_Product_Collection
in which you'll find some interesting self-explanatory methods such as :