*/ class Mage_Adminhtml_Block_Report_Sales_Invoiced extends Mage_Adminhtml_Block_Widget_Grid_Container { public function __construct() { $this->_controller = 'report_sales_invoiced'; $this->_headerText = Mage::helper('reports')->__('Total Invoiced vs. Paid Report'); parent::__construct(); $this->setTemplate('report/grid/container.phtml'); $this->_removeButton('add'); $this->addButton('filter_form_submit', array( 'label' => Mage::helper('reports')->__('Show Report'), 'onclick' => 'filterFormSubmit()' )); } public function getFilterUrl() { $this->getRequest()->setParam('filter', null); return $this->getUrl('*/*/invoiced', array('_current' => true)); } }