magento表单的导出

 1.Grid.php中得有:
   $this->addExportType('*/*/exportXml' , Mage::helper('hpusernetwork' )->__('Excel XML'));
   $this->addExportType('*/*/exportCsv' , Mage::helper('hpusernetwork' )->__('CSV'));
    相应的controller中的方法是:
   public function exportXmlAction(){
             $fileName   = 'warehouse_batch_' . date('YmdHis') . '.xml';
             $content    = $this->getLayout()->createBlock('bf170card/adminhtml_account_index_grid')->getExcelFile();
             $this->_prepareDownloadResponse($fileName , $content );
      }
      
       public function exportCsvAction(){
             $fileName = 'warehouse_batch_' . date('YmdHis') . '.csv';
             $content = $this->getLayout()->createBlock('bf170card/adminhtml_account_index_grid' )->getCsvFile();
             $this->_prepareDownloadResponse($fileName , $content );
      }

posted @ 2016-12-26 09:50  思风雨  阅读(187)  评论(0编辑  收藏  举报