Current path: home/webdevt/prestashop17/src/PrestaShopBundle/Form/Admin/Sell/Order/Invoices/
?? Go up: /home/webdevt/prestashop17/src/PrestaShopBundle/Form/Admin/Sell/Order
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShopBundle\Form\Admin\Sell\Order\Invoices;
use DateTime;
use PrestaShop\PrestaShop\Core\Form\FormDataProviderInterface;
use PrestaShop\PrestaShop\Core\Form\Handler;
use PrestaShop\PrestaShop\Core\Hook\HookDispatcherInterface;
use PrestaShop\PrestaShop\Core\Order\OrderInvoiceDataProviderInterface;
use PrestaShop\PrestaShop\Core\PDF\PDFGeneratorInterface;
use Symfony\Component\Form\FormFactoryInterface;
/**
* Class InvoiceByDateFormHandler manages the data manipulated using "By date" form
* in "Sell > Orders > Invoices" page.
*/
final class InvoiceByDateFormHandler extends Handler
{
/**
* @var OrderInvoiceDataProviderInterface
*/
private $orderInvoiceDataProvider;
/**
* @var PDFGeneratorInterface
*/
private $pdfGenerator;
/**
* @param FormFactoryInterface $formFactory
* @param HookDispatcherInterface $hookDispatcher
* @param FormDataProviderInterface $formDataProvider
* @param string $form
* @param string $hookName
* @param OrderInvoiceDataProviderInterface $orderInvoiceDataProvider
* @param PDFGeneratorInterface $pdfGenerator
*/
public function __construct(
FormFactoryInterface $formFactory,
HookDispatcherInterface $hookDispatcher,
FormDataProviderInterface $formDataProvider,
string $form,
$hookName,
OrderInvoiceDataProviderInterface $orderInvoiceDataProvider,
PDFGeneratorInterface $pdfGenerator
) {
parent::__construct($formFactory, $hookDispatcher, $formDataProvider, $form, $hookName);
$this->orderInvoiceDataProvider = $orderInvoiceDataProvider;
$this->pdfGenerator = $pdfGenerator;
}
/**
* {@inheritdoc}
*/
public function save(array $data)
{
if ($errors = parent::save($data)) {
return $errors;
}
// Get invoices by submitted date interval
$invoiceCollection = $this->orderInvoiceDataProvider->getByDateInterval(
new DateTime($data['date_from']),
new DateTime($data['date_to'])
);
// Generate PDF out of found invoices
$this->pdfGenerator->generatePDF($invoiceCollection);
return [];
}
}