Procházet zdrojové kódy

Backend : correctif download invoice

feature/export_comptable
Guillaume před 4 roky
rodič
revize
bdafe03f47
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. +5
    -1
      ShopBundle/Controller/Backend/DocumentController.php

+ 5
- 1
ShopBundle/Controller/Backend/DocumentController.php Zobrazit soubor

@@ -10,6 +10,8 @@ use Lc\ShopBundle\Context\OrderUtilsInterface;
use Lc\ShopBundle\Services\Utils;
use Lc\ShopBundle\Services\UtilsManager;
use Mailjet\MailjetSwiftMailer\SwiftMailer\MailjetTransport;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
use Symfony\Component\HttpFoundation\StreamedResponse;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Security\Core\Security;
use Symfony\Contracts\Translation\TranslatorInterface;
@@ -36,7 +38,9 @@ class DocumentController extends AdminController
}

if($document && $orderShop) {
$this->orderUtils->generateDocumentInvoiceOrderShop($orderShop, 'download') ;
return new StreamedResponse(function () use ($orderShop) {
$this->orderUtils->generateDocumentInvoiceOrderShop($orderShop, 'download') ;
});
}
else {
throw new NotFoundHttpException('Document introuvable') ;

Načítá se…
Zrušit
Uložit