2020-05-29 09:41:17 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This Software is the property of Data Development and is protected
|
|
|
|
* by copyright law - it is NOT Freeware.
|
|
|
|
* Any unauthorized use of this software without a valid license
|
|
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
|
|
* civil and criminal law.
|
|
|
|
* http://www.shopmodule.com
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
|
|
|
|
* @link http://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace D3\PdfDocuments\Application\Controller;
|
|
|
|
|
|
|
|
use D3\PdfDocuments\Application\Model\Documents\deliverynotePdf;
|
|
|
|
use D3\PdfDocuments\Application\Model\Documents\invoicePdf;
|
2020-05-29 09:58:53 +02:00
|
|
|
use D3\PdfDocuments\Application\Model\Exceptions\d3noPdfHandlerFoundException;
|
2020-05-29 09:41:17 +02:00
|
|
|
use D3\PdfDocuments\Application\Model\Interfaces\pdfdocuments_order_interface as OrderPdfInterface;
|
|
|
|
use OxidEsales\Eshop\Application\Model\Order;
|
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
|
|
|
|
class orderPdfGenerator
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param Order $order
|
|
|
|
* @param $sFilename
|
|
|
|
* @param int $iSelLang
|
|
|
|
* @param string $target
|
2020-05-29 10:20:22 +02:00
|
|
|
*
|
|
|
|
* @throws d3noPdfHandlerFoundException
|
2020-05-29 09:41:17 +02:00
|
|
|
*/
|
|
|
|
public function generatePdf(Order $order, $sFilename, $iSelLang = 0, $target = 'I')
|
|
|
|
{
|
|
|
|
$Pdf= $this->getPdfClass($order);
|
|
|
|
|
|
|
|
$Pdf->setOrder($order);
|
|
|
|
$Pdf->genPdf($sFilename, $iSelLang, $target);
|
|
|
|
}
|
|
|
|
|
2020-05-29 10:20:22 +02:00
|
|
|
/**
|
|
|
|
* @param Order $order
|
|
|
|
*
|
|
|
|
* @return OrderPdfInterface
|
|
|
|
* @throws d3noPdfHandlerFoundException
|
|
|
|
*/
|
2020-05-29 09:41:17 +02:00
|
|
|
public function getPdfClass(Order $order)
|
|
|
|
{
|
|
|
|
switch (Registry::getRequest()->getRequestParameter('pdftype')) {
|
|
|
|
case ('dnote'):
|
|
|
|
case ('dnote_without_logo'):
|
|
|
|
$pdfInstance= oxNew(deliverynotePdf::class);
|
|
|
|
$pdfInstance->setOrder($order);
|
|
|
|
return $pdfInstance;
|
|
|
|
case ('standart'):
|
|
|
|
case('standart_without_logo'):
|
|
|
|
$pdfInvoice= oxNew(invoicePdf::class);
|
|
|
|
$pdfInvoice->setOrder($order);
|
|
|
|
return $pdfInvoice;
|
|
|
|
default:
|
|
|
|
return $this->getCustomPdfClass($order);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-05-29 09:58:53 +02:00
|
|
|
* @param Order $order
|
|
|
|
*
|
2020-05-29 09:41:17 +02:00
|
|
|
* @return OrderPdfInterface
|
2020-05-29 09:58:53 +02:00
|
|
|
* @throws d3noPdfHandlerFoundException
|
2020-05-29 09:41:17 +02:00
|
|
|
*/
|
|
|
|
public function getCustomPdfClass(Order $order)
|
|
|
|
{
|
2020-05-29 09:58:53 +02:00
|
|
|
unset($order);
|
2020-05-29 09:41:17 +02:00
|
|
|
|
2020-05-29 09:58:53 +02:00
|
|
|
/** @var d3noPdfHandlerFoundException $e */
|
|
|
|
$e = oxNew(d3noPdfHandlerFoundException::class, Registry::getRequest()->getRequestParameter('pdftype'));
|
|
|
|
throw($e);
|
2020-05-29 09:41:17 +02:00
|
|
|
}
|
|
|
|
}
|