4

バックエンド/管理者の製品リストのMagentoでPDFを作成したいと思います。私はそれを行う方法がわかりません、そして私がインターネットで見つけたものはそれほど役に立ちません。誰かが私を助けてくれることを願っています。

gr

編集

class Wouterkamphuisdotcom_Web_Adminhtml_WebController extends Mage_Adminhtml_Controller_action {

protected function _initAction() {
    $this->loadLayout()
            ->_setActiveMenu('web/items')
            ->_addBreadcrumb(Mage::helper('adminhtml')->__('Items Manager'), Mage::helper('adminhtml')->__('Item Manager'));

    return $this;
}
public function exportPdfAction(){
    $fileName = 'customers.pdf';        
    $content = $this->getLayout()->createBlock('Web/Web_Grid')->getPdfFile();
    $this->_prepareDownloadResponse($fileName, $content);
}

これは私のコントローラーです

4

1 に答える 1

11

ご注意ください:

  • これは、Magento コア ファイルをオーバーライドするため、良い方法ではありません。モデル内でこれらのファイルをオーバーライドする必要があります。
  • これは完全な解決策ではありませんが、理解を深めてさらに先へ進むためのヒントです。(これはヘッダーのみを出力し、データは出力しません)

お客様に PDF エクスポート機能を追加するように案内します (デフォルトでは CSV と Excel があります)。

app/code/core/Mage/Adminhtml/Block/Widget/Grid.phpを編集し、次の関数を追加します

 public function getPdfFile(){
    $this->_isExport = true;
    $this->_prepareGrid();
    $this->getCollection()->getSelect()->limit();
    $this->getCollection()->setPageSize(0);
    $this->getCollection()->load();
    $this->_afterLoadCollection();

    $pdf = new Zend_Pdf();
    $page = new Zend_Pdf_Page(Zend_Pdf_Page::SIZE_A4);
    $font = Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_TIMES);
    $page->setFont($font, 12);
    $width = $page->getWidth();
    $i=0;
    foreach ($this->_columns as $column) {
        if (!$column->getIsSystem()) {
            $i+=10;
            $header = $column->getExportHeader();                
            $page->drawText($header, $i, $page->getHeight()-20);                
            $width = $font->widthForGlyph($font->glyphNumberForCharacter($header));
            $i+=($width/$font->getUnitsPerEm()*12)*strlen($header)+10;
        }
    }
    $pdf->pages[] = $page;
    return $pdf->render();
}

app/code/core/Mage/Adminhtml/controllers/CustomerController.phpを編集し、次の関数を追加します

public function exportPdfAction(){
    $fileName = 'customers.pdf';        
    $content = $this->getLayout()->createBlock('adminhtml/customer_grid')->getPdfFile();
    $this->_prepareDownloadResponse($fileName, $content);
}

app/code/core/Mage/Adminhtml/Block/Customer/Grid.phpを編集し、見つけます

    $this->addExportType('*/*/exportCsv', Mage::helper('customer')->__('CSV'));
    $this->addExportType('*/*/exportXml', Mage::helper('customer')->__('Excel XML'));

PDFエクスポートを追加

    $this->addExportType('*/*/exportCsv', Mage::helper('customer')->__('CSV'));
    $this->addExportType('*/*/exportXml', Mage::helper('customer')->__('Excel XML'));
    $this->addExportType('*/*/exportPdf', Mage::helper('customer')->__('PDF'));

管理画面を更新すると、顧客を PDF としてエクスポートできます。

于 2012-06-06T14:01:37.760 に答える