I want to be able to see the current stock for an item in the product ordered report. So you can see the month sell for that item and see how many I have left, all on the same screen.
I've Modified \app\code\core\Mage\Adminhtml\Block\Report\Product\Sold\Grid.php
adding:
$this->addColumn('qty', array(
'header' =>Mage::helper('reports')->__('Stock Qty'),
'width' =>'120px',
'align' =>'right',
'index' =>'qty',
'type' =>'number'
));
However it will show an empty column