Magento 1.9 Reports – How to Get SKU in Products Ordered Reports

magento-1.9reportssku

I want display sku at products ordered reports page, how can i get sku ?

enter image description here

Best Answer

open app\code\core\Mage\Adminhtml\Block\Report\Product\Sold\Grid.php and put the below code in _prepareColumns() function

You can move Grid.php in your local folder as well or can override it in custom module.

$this->addColumn('sku', array(
    'header'    => Mage::helper('reports')->__('Product Sku'),
    'index'     =>'sku'
));
Related Topic