Magento で最初の 300 件の注文の PDF を作成したいと考えています。最初の 300 件の注文を取得し、それらの画像 (注文ごとに異なる画像) を PDF に印刷する機能が必要です。では、magento でこの機能を実装するにはどうすればよいでしょうか。そのための拡張機能はありますか?
質問する
2400 次
1 に答える
4
/app/code/core/Mage/Adminhtml/controllers/Sales/OrderController.phpを見てください
public function pdfinvoicesAction(){
$orderIds = $this->getRequest()->getPost('order_ids');
$flag = false;
if (!empty($orderIds)) {
foreach ($orderIds as $orderId) {
$invoices = Mage::getResourceModel('sales/order_invoice_collection')
->setOrderFilter($orderId)
->load();
if ($invoices->getSize() > 0) {
$flag = true;
if (!isset($pdf)){
$pdf = Mage::getModel('sales/order_pdf_invoice')->getPdf($invoices);
} else {
$pages = Mage::getModel('sales/order_pdf_invoice')->getPdf($invoices);
$pdf->pages = array_merge ($pdf->pages, $pages->pages);
}
}
}
if ($flag) {
return $this->_prepareDownloadResponse(
'invoice'.Mage::getSingleton('core/date')->date('Y-m-d_H-i-s').'.pdf', $pdf->render(),
'application/pdf'
);
} else {
$this->_getSession()->addError($this->__('There are no printable documents related to selected orders.'));
$this->_redirect('*/*/');
}
}
$this->_redirect('*/*/');
}
上記の関数から、最初の300個の注文IDを$ orderIdsに割り当てることができます(またはMage :: getResourceModel('sales / order_invoice_collectionを変更して最初の300レコードを取得する)
Magentoの注文リストクエリを参照してください
変更点:
public function pdfinvoicesAction(){
$orderIds = $this->getRequest()->getPost('order_ids');
に(のようなもの)
public function pdfinvoices($orderIds){
$orderIds = (array) $orderIds; // first 300 record ids
行を変更してPDFをファイルに保存します
return $this->_prepareDownloadResponse(
'invoice'.Mage::getSingleton('core/date')->date('Y-m-d_H-i-s').'.pdf', $pdf->render(),
'application/pdf'
);
に
$pdf->render();
// use the order_id for the pdf name like
$pdf->save("{$orderId}.pdf");
Magentoでzend_pdfを使用して生成されたpdfファイルのエラーを参照してください
$ this-> _ redirect(' / /')を削除することもできます
于 2012-10-12T16:56:26.283 に答える