[*] PDF : New hook actionPDFInvoiceRender
[-] PDF : Can't display invoice due to Collection git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11138 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -66,8 +66,11 @@ class PdfInvoiceControllerCore extends FrontController
|
||||
}
|
||||
|
||||
public function display()
|
||||
{
|
||||
$pdf = new PDF($this->order, PDF::TEMPLATE_INVOICE, $this->context->smarty, $this->context->language->id);
|
||||
{
|
||||
$order_invoice_list = $this->order->getInvoicesCollection();
|
||||
Hook::exec('actionPDFInvoiceRender', array('order_invoice_list' => $order_invoice_list));
|
||||
|
||||
$pdf = new PDF($order_invoice_list, PDF::TEMPLATE_INVOICE, $this->context->smarty, $this->context->language->id);
|
||||
$pdf->render();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user