Current File : //var/www/vinorea/src/PrestaShopBundle/Controller/Admin/Sell/Order/CreditSlipController.php |
<?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\Controller\Admin\Sell\Order;
use DateTime;
use PrestaShop\PrestaShop\Core\Domain\CreditSlip\Exception\CreditSlipNotFoundException;
use PrestaShop\PrestaShop\Core\Domain\CreditSlip\Query\GetCreditSlipIdsByDateRange;
use PrestaShop\PrestaShop\Core\Domain\CreditSlip\ValueObject\CreditSlipId;
use PrestaShop\PrestaShop\Core\Exception\CoreException;
use PrestaShop\PrestaShop\Core\Form\FormHandlerInterface;
use PrestaShop\PrestaShop\Core\Grid\Definition\Factory\CreditSlipGridDefinitionFactory;
use PrestaShop\PrestaShop\Core\PDF\Exception\MissingDataException;
use PrestaShop\PrestaShop\Core\Search\Filters\CreditSlipFilters;
use PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController;
use PrestaShopBundle\Form\Admin\Sell\Order\CreditSlip\GeneratePdfByDateType;
use PrestaShopBundle\Security\Annotation\AdminSecurity;
use PrestaShopBundle\Service\Grid\ResponseBuilder;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
* Responsible for Sell > Orders > Credit slips page
*/
class CreditSlipController extends FrameworkBundleAdminController
{
/**
* Show credit slips listing page.
*
* @AdminSecurity("is_granted('read', request.get('_legacy_controller'))")
*
* @param Request $request
* @param CreditSlipFilters $creditSlipFilters
*
* @return Response
*/
public function indexAction(
Request $request,
CreditSlipFilters $creditSlipFilters
) {
$creditSlipGridFactory = $this->get('prestashop.core.grid.factory.credit_slip');
$creditSlipGrid = $creditSlipGridFactory->getGrid($creditSlipFilters);
$creditSlipOptionsFormHandler = $this->getSlipOptionsFormHandler();
$creditSlipOptionsForm = $creditSlipOptionsFormHandler->getForm();
$creditSlipOptionsForm->handleRequest($request);
if ($creditSlipOptionsForm->isSubmitted() && $creditSlipOptionsForm->isValid()) {
$errors = $creditSlipOptionsFormHandler->save($creditSlipOptionsForm->getData());
if (empty($errors)) {
$this->addFlash('success', $this->trans('Update successful', 'Admin.Notifications.Success'));
} else {
$this->flashErrors($errors);
}
return $this->redirectToRoute('admin_credit_slips_index');
}
$pdfByDateForm = $this->createForm(GeneratePdfByDateType::class, [], [
'method' => Request::METHOD_GET,
]);
$pdfByDateForm->handleRequest($request);
return $this->render('@PrestaShop/Admin/Sell/Order/CreditSlip/index.html.twig', [
'enableSidebar' => true,
'help_link' => $this->generateSidebarLink($request->attributes->get('_legacy_controller')),
'creditSlipGrid' => $this->presentGrid($creditSlipGrid),
'pdfByDateForm' => $pdfByDateForm->createView(),
'creditSlipOptionsForm' => $creditSlipOptionsForm->createView(),
]);
}
/**
* @deprecated since 1.7.8 and will be removed in next major. Use CommonController:searchGridAction instead
*
* Provides filters functionality
*
* @AdminSecurity("is_granted('read', request.get('_legacy_controller'))")
*
* @param Request $request
*
* @return RedirectResponse
*/
public function searchAction(Request $request)
{
/** @var ResponseBuilder $responseBuilder */
$responseBuilder = $this->get('prestashop.bundle.grid.response_builder');
return $responseBuilder->buildSearchResponse(
$this->get('prestashop.core.grid.definition.factory.credit_slip'),
$request,
CreditSlipGridDefinitionFactory::GRID_ID,
'admin_credit_slips_index'
);
}
/**
* Generates PDF of requested credit slip by provided id
*
* @AdminSecurity("is_granted('read', request.get('_legacy_controller'))")
*
* @param int $creditSlipId
*
* @return Response
*/
public function generatePdfAction($creditSlipId)
{
try {
$creditSlipId = new CreditSlipId((int) $creditSlipId);
return new Response($this->get('prestashop.adapter.pdf.credit_slip_pdf_generator')->generatePDF([$creditSlipId]));
} catch (CoreException $e) {
$this->addFlash('error', $this->getErrorMessageForException($e, $this->getErrorMessages()));
}
return $this->redirectToRoute('admin_credit_slips_index');
}
/**
* Generates PDF of credit slips found by requested date range
*
* @AdminSecurity("is_granted('read', request.get('_legacy_controller'))")
*
* @param Request $request
*
* @return Response
*/
public function generatePdfByDateAction(Request $request)
{
$pdfByDateForm = $this->createForm(GeneratePdfByDateType::class, [], ['method' => Request::METHOD_GET]);
$pdfByDateForm->handleRequest($request);
if ($pdfByDateForm->isSubmitted() && $pdfByDateForm->isValid()) {
try {
$dateRange = $pdfByDateForm->getData();
$slipIds = $this->getQueryBus()->handle(new GetCreditSlipIdsByDateRange(
new DateTime($dateRange['from']),
new DateTime($dateRange['to'])
));
return new Response($this->get('prestashop.adapter.pdf.credit_slip_pdf_generator')->generatePDF($slipIds));
} catch (CoreException $e) {
$this->addFlash('error', $this->getErrorMessageForException($e, $this->getErrorMessages()));
}
}
return $this->redirectToRoute('admin_credit_slips_index');
}
/**
* @return FormHandlerInterface
*/
private function getSlipOptionsFormHandler()
{
return $this->get('prestashop.admin.credit_slip_options.form_handler');
}
/**
* Provides translated error messages for exceptions
*
* @return array
*/
private function getErrorMessages()
{
return [
CreditSlipNotFoundException::class => [
CreditSlipNotFoundException::BY_DATE_RANGE => $this->trans(
'No order slips were found for this period.',
'Admin.Orderscustomers.Notification'
),
],
MissingDataException::class => $this->trans(
'The object cannot be loaded (or found).',
'Admin.Notifications.Error'
),
];
}
}