Showing posts with label Adding sku column in products order report magento. Show all posts
Showing posts with label Adding sku column in products order 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...