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;
|
|
|
|
|
2020-05-30 00:52:41 +02:00
|
|
|
use D3\PdfDocuments\Application\Model\Exceptions\noBaseObjectSetException;
|
|
|
|
use D3\PdfDocuments\Application\Model\Exceptions\noPdfHandlerFoundException;
|
|
|
|
use D3\PdfDocuments\Application\Model\Exceptions\pdfGeneratorExceptionAbstract;
|
2020-05-30 01:17:27 +02:00
|
|
|
use D3\PdfDocuments\Application\Model\Interfaces\pdfdocumentsOrderInterface;
|
2020-05-30 01:02:50 +02:00
|
|
|
use D3\PdfDocuments\Application\Model\Registries\registryOrderoverview;
|
2020-05-29 09:41:17 +02:00
|
|
|
use OxidEsales\Eshop\Application\Model\Order;
|
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
|
2020-05-30 00:52:41 +02:00
|
|
|
class orderOverviewPdfGenerator
|
2020-05-29 09:41:17 +02:00
|
|
|
{
|
|
|
|
/**
|
2020-05-30 00:52:41 +02:00
|
|
|
* @param Order $order
|
|
|
|
* @param $sFilename
|
|
|
|
* @param int $iSelLang
|
2020-05-29 09:41:17 +02:00
|
|
|
* @param string $target
|
2020-05-30 00:52:41 +02:00
|
|
|
* @throws noPdfHandlerFoundException
|
|
|
|
* @throws noBaseObjectSetException
|
|
|
|
* @throws pdfGeneratorExceptionAbstract
|
2020-05-29 09:41:17 +02:00
|
|
|
*/
|
2020-06-04 10:31:38 +02:00
|
|
|
public function generatePdf(Order $order, $iSelLang = 0)
|
2020-05-29 09:41:17 +02:00
|
|
|
{
|
2020-06-02 10:12:35 +02:00
|
|
|
$Pdf= $this->getPdfClass();
|
2020-05-29 09:41:17 +02:00
|
|
|
|
|
|
|
$Pdf->setOrder($order);
|
2020-06-04 10:31:38 +02:00
|
|
|
$Pdf->downloadPdf($iSelLang);
|
2020-05-29 09:41:17 +02:00
|
|
|
}
|
|
|
|
|
2020-05-29 10:20:22 +02:00
|
|
|
/**
|
2020-05-30 01:17:27 +02:00
|
|
|
* @return pdfdocumentsOrderInterface
|
2020-05-30 00:52:41 +02:00
|
|
|
* @throws noPdfHandlerFoundException
|
2020-05-29 10:20:22 +02:00
|
|
|
*/
|
2020-06-02 10:12:35 +02:00
|
|
|
public function getPdfClass()
|
2020-05-29 09:41:17 +02:00
|
|
|
{
|
2020-05-30 00:52:41 +02:00
|
|
|
$requestedType = Registry::getRequest()->getRequestParameter('pdftype');
|
2020-05-29 09:41:17 +02:00
|
|
|
|
2020-05-30 01:02:50 +02:00
|
|
|
$generatorList = oxNew(registryOrderoverview::class);
|
2020-05-30 01:17:27 +02:00
|
|
|
/** @var pdfdocumentsOrderInterface $generator */
|
2020-05-30 00:52:41 +02:00
|
|
|
foreach ($generatorList->getList() as $generator) {
|
|
|
|
if ($generator->getRequestId() == $requestedType) {
|
|
|
|
return $generator;
|
|
|
|
}
|
|
|
|
}
|
2020-05-29 09:41:17 +02:00
|
|
|
|
2020-05-30 00:52:41 +02:00
|
|
|
/** @var noPdfHandlerFoundException $e */
|
|
|
|
$e = oxNew(noPdfHandlerFoundException::class, Registry::getRequest()->getRequestParameter('pdftype'));
|
2020-05-29 09:58:53 +02:00
|
|
|
throw($e);
|
2020-05-29 09:41:17 +02:00
|
|
|
}
|
|
|
|
}
|