*/ class Mage_Adminhtml_Sales_CreditmemoController extends Mage_Adminhtml_Controller_Sales_Creditmemo { /** * Export credit memo grid to CSV format */ public function exportCsvAction() { $fileName = 'creditmemos.csv'; $grid = $this->getLayout()->createBlock('adminhtml/sales_creditmemo_grid'); $this->_prepareDownloadResponse($fileName, $grid->getCsvFile()); } /** * Export credit memo grid to Excel XML format */ public function exportExcelAction() { $fileName = 'creditmemos.xml'; $grid = $this->getLayout()->createBlock('adminhtml/sales_creditmemo_grid'); $this->_prepareDownloadResponse($fileName, $grid->getExcelFile($fileName)); } /** * Index page */ public function indexAction() { $this->_title($this->__('Sales'))->_title($this->__('Credit Memos')); parent::indexAction(); } }