Showing posts with label How to Add sku field in products ordered report magento. Show all posts
Showing posts with label How to Add sku field in products ordered report magento. Show all posts

Tuesday 16 August 2016

Add Sku column in products ordered report grid magento


Add Sku column in products ordered report grid magento

Kindly 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.

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



That's it. Enjoy Chandresh Rana's Coding...