src/Controller/Front/IndexController.php line 141

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  */
  5. namespace App\Controller\Front;
  6. use App\Entity\AbonnementPay;
  7. use App\Entity\BesoinProductPage;
  8. use App\Entity\BesoinProductPageCategory;
  9. use App\Entity\Cart;
  10. use App\Entity\CartDetail;
  11. use App\Entity\CompteAbonnementPro;
  12. use App\Entity\CompteAbonnementProCommandesFactures;
  13. use App\Entity\CompteAbonnementProFacture;
  14. use App\Entity\Imprimeur;
  15. use App\Entity\LanguageCountry;
  16. use App\Entity\NosCrea;
  17. use App\Entity\NotifB2b;
  18. use App\Entity\NotifB2cCompte;
  19. use App\Entity\OrderDetailVirement;
  20. use App\Entity\Orders;
  21. use App\Entity\Page\Page;
  22. use App\Entity\Product;
  23. use App\Entity\Stats;
  24. use App\Entity\StuartOrder;
  25. use App\Entity\User;
  26. use App\Entity\UserStripe;
  27. use App\Services\AbonnementService;
  28. use App\Services\AvisVerifiesService;
  29. use App\Services\CartService;
  30. use App\Services\CheckoutService;
  31. use App\Services\FactureService;
  32. use App\Services\NbDesigner;
  33. use App\Services\Notifications;
  34. use App\Services\OrderService;
  35. use App\Services\ReferalCandyService;
  36. use App\Services\StripeConnect;
  37. use App\Services\StripeConnectTest;
  38. use Spipu\Html2Pdf\Html2Pdf;
  39. use Stripe\Invoice;
  40. use Stripe\Subscription;
  41. use Symfony\Component\Finder\Finder;
  42. use Symfony\Component\HttpFoundation\RedirectResponse;
  43. use Symfony\Component\Routing\Annotation\Route;
  44. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  45. use Twig\Environment;
  46. use Symfony\Component\HttpFoundation\Response;
  47. use Symfony\Component\HttpFoundation\Request;
  48. use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;
  49. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  50. use Doctrine\ORM\EntityManagerInterface;
  51. use Symfony\Contracts\Translation\TranslatorInterface;
  52. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  53. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
  54. use JouwWeb\SendCloud\Client;
  55. use JouwWeb\SendCloud\Model\Address;
  56. use JouwWeb\SendCloud\Model\Parcel;
  57. use JouwWeb\SendCloud\Model\WebhookEvent;
  58. use JouwWeb\SendCloud\Exception\SendCloudRequestException;
  59. use App\Services\SendCloudApi;
  60. use App\Services\DelivreeService;
  61. use Stripe\Stripe;
  62. use Stripe\Customer;
  63. use Stripe\PaymentMethod;
  64. use App\Services\Exaprint;
  65. class IndexController extends AbstractController
  66. {
  67.     private $em;
  68.     private $session;
  69.     private $apiCloudSend;
  70.     private $delivreeService;
  71.     private $cartService;
  72.     private $mailer;
  73.     private $router;
  74.     public function __construct(
  75.         SessionInterface $session,
  76.         ParameterBagInterface $params,
  77.         TranslatorInterface $trans,
  78.         EntityManagerInterface $em,
  79.         CheckoutService $checkout_service,
  80.         SendCloudApi $apiCloudSend,
  81.         DelivreeService $delivreeService,
  82.         CartService $cartService,
  83.         AbonnementService $abonnementService,
  84.         StripeConnect $stripeConnect,
  85.         FactureService $facture_service,
  86.         Notifications $notifications,
  87.         AvisVerifiesService $avisVerifiesService,
  88.         ReferalCandyService $candyService,
  89.         OrderService $order_service,
  90.         \Swift_Mailer $mailer,
  91.         Environment $twig,
  92.         UrlGeneratorInterface $router,
  93.         Exaprint $exaprint,
  94.         NbDesigner $nbDesigner
  95.     ) {
  96.         $this->em $em;
  97.         $this->trans $trans;
  98.         $this->session $session;
  99.         $this->params $params;
  100.         $this->checkout_service $checkout_service;
  101.         $this->apiCloudSend $apiCloudSend;
  102.         $this->delivreeService $delivreeService;
  103.         $this->cartService $cartService;
  104.         $this->abonnementService $abonnementService;
  105.         $this->stripeConnectService =  $stripeConnect;
  106.         $this->facture_service $facture_service;
  107.         $this->notifications $notifications;
  108.         $this->avisVerifiesService $avisVerifiesService;
  109.         $this->candyService $candyService;
  110.         $this->order_service $order_service;
  111.         $this->mailer $mailer;
  112.         $this->twig $twig;
  113.         $this->nbDesigner $nbDesigner;
  114.         $this->router $router;
  115.         $this->exaprint $exaprint;
  116.     }
  117.     /**
  118.      * @Route("/", name="accueil",options={"expose"=true})
  119.      */
  120.     public function index(Request $request) : Response
  121.     {
  122.         if($request->get('displayProduct') && $request->get('imprimerRelierEdit') && $request->get('imprimerRelierEdit') == && $request->get('displayProduct') == 1)
  123.             return $this->redirectToRoute('edit_pdf_page');
  124.         $response $this->render('front/accueil/index.html.twig');
  125.         return $response;
  126.     }
  127.     /**
  128.      * @Route("/vcompteur", name="add_visiteur_count",options={"expose"=true})
  129.      */
  130.     public function compteurVisite(Request $request) : Response
  131.     {
  132.         if ($request->isXmlHttpRequest()) {
  133.             $this->checkout_service->addCompteurVisite($request);
  134.         }
  135.         $response = new Response();
  136.         $response->setContent(1);
  137.         return $response;
  138.     }
  139.     /**
  140.      * @Route("/add-cookies", name="add_cookies",options={"expose"=true})
  141.      */
  142.     public function addCookies(Request $request) : Response
  143.     {
  144.         if ($request->isXmlHttpRequest()) {
  145.             $this->cartService->addCookies($request);
  146.         }
  147.         $response = new Response();
  148.         $response->setContent(1);
  149.         return $response;
  150.     }
  151.     /**
  152.      * @Route("/add-cookies-refuse", name="add_cookies_refuse",options={"expose"=true})
  153.      */
  154.     public function addCookiesRefuse(Request $request) : Response
  155.     {
  156.         if ($request->isXmlHttpRequest()) {
  157.             $this->cartService->addCookiesRefuse($request);
  158.         }
  159.         $response = new Response();
  160.         $response->setContent(1);
  161.         return $response;
  162.     }
  163.     /**
  164.      * @Route("/block-livraison-accueil", name="block_livraison_accueil",options={"expose"=true})
  165.      */
  166.     public function blockLivraison(Request $request): Response
  167.     {
  168.         $dataRequest $request->request->all();
  169.         $this->session->set('longiAdresse',$dataRequest['longi']);
  170.         $this->session->set('latAdresse',$dataRequest['lat']);
  171.         $this->session->set('addresseAdresse',$dataRequest['addresseAdresse']);
  172.         $this->session->set('postalcodeAdresse',$dataRequest['postalcode']);
  173.         $this->session->set('cityAdresse',$dataRequest['cityAdresse']);
  174.         $this->session->set('CountryLiv',$dataRequest['CountryLiv']);
  175.         $this->session->set('CountryCodeLiv',$dataRequest['CountryCodeLiv']);
  176.         $dataLivrason $this->checkout_service->getModeLivraisonSansStock($dataRequest);
  177.         $dataLivrason['latLongi'] = ['lat' => $dataRequest['lat'],'longi'=>$dataRequest['longi']];
  178.         return $this->render('front/accueil/block_livraison.html.twig'$dataLivrason);
  179.     }
  180.     /**
  181.      * @Route("/block-livraison-new-accueil", name="block_livraison_new_accueil",options={"expose"=true})
  182.      */
  183.     public function blockLivraisonNewAccueil(Request $request): Response
  184.     {
  185.         $dataRequest $request->request->all();
  186.         $this->session->set('longiAdresse',$dataRequest['longi']);
  187.         $this->session->set('latAdresse',$dataRequest['lat']);
  188.         $this->session->set('addresseAdresse',$dataRequest['addresseAdresse']);
  189.         $this->session->set('postalcodeAdresse',$dataRequest['postalcode']);
  190.         $this->session->set('cityAdresse',$dataRequest['cityAdresse']);
  191.         $this->session->set('CountryLiv',$dataRequest['CountryLiv']);
  192.         $this->session->set('CountryCodeLiv',$dataRequest['CountryCodeLiv']);
  193.         $dataLivrason $this->checkout_service->getModeLivraisonSansStock($dataRequest);
  194.         $dataLivrason['latLongi'] = ['lat' => $dataRequest['lat'],'longi'=>$dataRequest['longi']];
  195.         return $this->render('front/accueil/block_livraison_new_accueil.html.twig'$dataLivrason);
  196.     }
  197.     /**
  198.      * @Route("/check-livraison-new-accueil", name="check_livraison_new_accueil",options={"expose"=true})
  199.      */
  200.     public function checkLivraisonNewAccueil(Request $request): Response
  201.     {
  202.         $dataRequest $request->request->all();
  203.         $this->session->set('longiAdresse',$dataRequest['longi']);
  204.         $this->session->set('latAdresse',$dataRequest['lat']);
  205.         $this->session->set('addresseAdresse',$dataRequest['addresseAdresse']);
  206.         $this->session->set('postalcodeAdresse',$dataRequest['postalcode']);
  207.         $this->session->set('cityAdresse',$dataRequest['cityAdresse']);
  208.         $this->session->set('CountryLiv',$dataRequest['CountryLiv']);
  209.         $this->session->set('CountryCodeLiv',$dataRequest['CountryCodeLiv']);
  210.         $dataLivrason $this->checkout_service->getModeLivraisonSansStock($dataRequest);
  211.         $dataLivrason['latLongi'] = ['lat' => $dataRequest['lat'],'longi'=>$dataRequest['longi']];
  212.         return $this->render('front/accueil/block_product_new_accueil.html.twig'$dataLivrason);
  213.     }
  214.     /**
  215.      * @Route("/block-livraison-time-accueil", name="block_livraison_time_accueil",options={"expose"=true})
  216.      */
  217.     public function blockLivraisontime(Request $request): Response
  218.     {
  219.         $dataRequest $request->request->all();
  220.         $this->session->set('longiAdresse',$dataRequest['longi']);
  221.         $this->session->set('latAdresse',$dataRequest['lat']);
  222.         $this->session->set('addresseAdresse',$dataRequest['addresseAdresse']);
  223.         $this->session->set('postalcodeAdresse',$dataRequest['postalcode']);
  224.         $this->session->set('cityAdresse',$dataRequest['cityAdresse']);
  225.         $this->session->set('CountryLiv',$dataRequest['CountryLiv']);
  226.         $this->session->set('CountryCodeLiv',$dataRequest['CountryCodeLiv']);
  227.         $dataLivrason $this->checkout_service->getModeLivraisonSansStock($dataRequest);
  228.         $time =false ;
  229.         if($dataLivrason['imprimeurZoneChalandise'] ){
  230.            $time $this->cartService->getFirstTime($dataLivrason['imprimeurZoneChalandise']->getId());
  231.         }
  232.         $responce = new Response();
  233.         $responce->setContent($time?$time:'');
  234.         return $responce;
  235.     }
  236.     /**
  237.      * @Route("/besoin-produits", name="besoin_produits",options={"expose"=true})
  238.      */
  239.     public function besoinProduits(Request $request): Response
  240.     {
  241.         $response $this->render('front/accueil/besoin-products-new.html.twig');
  242.         return $response;
  243.     }
  244.     /**
  245.      * @Route("/besoin-produits-preference", name="besoin_produits_preference",options={"expose"=true})
  246.      */
  247.     public function besoinProduitsPreference(Request $request): Response
  248.     {
  249.         $requestAll $request->request->all();
  250.         $array = [];
  251.         if($requestAll){
  252.             $i ;
  253.             $arrayGlobal = [];
  254.             foreach ($requestAll as $item){
  255.                 $products $this->em->getRepository(BesoinProductPage::class)->getByCategoryAndCretere($item);
  256.                 $tab = [];
  257.                 if($products){
  258.                     foreach ($products as $product){
  259.                         $tab[$product->getId()] = $product->getId();
  260.                     }
  261.                 }
  262.                 if($i == ){
  263.                     $arrayGlobal $tab ;
  264.                 }else{
  265.                     $arrayGlobal array_intersect($arrayGlobal $tab);
  266.                 }
  267.                 $i ++ ;
  268.             }
  269.             if($arrayGlobal){
  270.                 foreach ($arrayGlobal as $value){
  271.                     $product $this->em->getRepository(BesoinProductPage::class)->find($value);
  272.                     $array[$product->getCategory()->getName()]['category'] = $product->getCategory();
  273.                     $array[$product->getCategory()->getName()]['products'][] = $product;
  274.                 }
  275.             }
  276.         }
  277.         $response $this->render('front/accueil/besoin-product-bloc/content-search-preference.html.twig',['categorys' => $array]);
  278.         return $response;
  279.     }
  280.     /**
  281.      * @Route("/besoin-produits-default", name="besoin_produits_default",options={"expose"=true})
  282.      */
  283.     public function besoinProduitsdefault(Request $request): Response
  284.     {
  285.         $categorys $this->em->getRepository(BesoinProductPageCategory::class)->getAllActive();
  286.         $response $this->render('front/accueil/besoin-product-bloc/content-new.html.twig',['categorys'=>$categorys]);
  287.         return $response;
  288.     }
  289.     /**
  290.      * @Route("/besoin-produits-2", name="besoin_produits_2",options={"expose"=true})
  291.      */
  292.     public function besoinProduitsNew(Request $request): Response
  293.     {
  294.         $response $this->render('front/accueil/besoin-products-2.html.twig');
  295.         return $response;
  296.     }
  297.     /**
  298.      * @Route("/besoin-produits/search", name="searchBesoinProduct",options={"expose"=true})
  299.      */
  300.     public function searchBesoinProduct(Request $request) : Response
  301.     {
  302.         $requestData $request->query->get('search');
  303.         $data $this->nbDesigner->searchProductOption($request,$requestData,$this->getUser());
  304.         $response $this->render('front/accueil/besoin-product-bloc/content-search.html.twig',['data'=>$data,'valueInput'=>$requestData]);
  305.         return $response;
  306.     }
  307.     /**
  308.      * @Route("/besoin-produits-crello-add-to-cart/{id}", name="besoin_produits_crollo_add_to_cart",options={"expose"=true})
  309.      */
  310.     public function besoinProduitsCrelloAddToCart(Request $request,$id): Response
  311.     {
  312.         $data $this->nbDesigner->addToCartNewNbDesignerNosCrea($request,$this->getUser(),$id);
  313.         if($data){
  314.             $redirect =  $this->generateUrl('product_option', array('token'=>$data->getToken(),'product'=>$data->getProduct()->getId()));
  315.         }else{
  316.             $redirect $this->generateUrl('besoin_produits');
  317.         }
  318.         $responce = new Response();
  319.         $responce->setContent($redirect);
  320.         return $responce;
  321.     }
  322.     /**
  323.      * @Route("/besoin-produits-old", name="besoin_produits_old",options={"expose"=true})
  324.      */
  325.     public function besoinProduitsOld(Request $request): Response
  326.     {
  327.         $response $this->render('front/accueil/index-products.html.twig');
  328.         return $response;
  329.     }
  330.     /**
  331.      * @Route("/webhook-stripe", name="webhook_stripe_copees")
  332.      */
  333.     public function webhookStripe(Request $request): Response
  334.     {
  335.         $endpoint_secret 'whsec_7Hzm2izHMWSwhcPNWCbDmWGX3FJdHujM';
  336.         $payload = @file_get_contents('php://input');
  337.         $sig_header $_SERVER['HTTP_STRIPE_SIGNATURE'];
  338.         $event null;
  339.         try {
  340.             $event = \Stripe\Webhook::constructEvent(
  341.                 $payload$sig_header$endpoint_secret
  342.             );
  343.         } catch(\UnexpectedValueException $e) {
  344.             exit();
  345.         } catch(\Stripe\Exception\SignatureVerificationException $e) {
  346.             exit();
  347.         }
  348.         if ($event->type == "payment_intent.succeeded") {
  349.             $intent $event->data->object;
  350.             $charge $intent->id;
  351.             $order $this->em->getRepository(Orders::class)->findBy(array('chargeStripeId'=> $charge),array('id'=>'desc'));
  352.             if (isset($order[0]) && $order[0] && !$order[0]->getIsValid()) {
  353.                 $cart $order[0]->getCart();
  354.                 $order[0]->setIsValid(true);
  355.                 $status $this->em->getRepository(Stats::class)->findOneBy(array('statusNbr' => Stats::ENCOURT));
  356.                 $order[0]->setStatus($status);
  357.                 $nameFacture $this->facture_service->uploadFacture($order[0]->getId());  //creation facture
  358.                 $order[0]->setPathFacture($nameFacture);
  359.                 $order[0]->setIsAbonnementPro($cart->getIsAbonnementPro());
  360.                 $this->em->persist($order[0]);
  361.                 $this->em->flush();
  362.                 $this->stripeConnectService->createRefundByPaymentIntentIfEmptyDetail($order[0], $cart); // refound 0.5€ if 0€ in order
  363.                 http_response_code(200);
  364.             }
  365.             exit();
  366.         } elseif ($event->type == "payment_intent.payment_failed") {
  367.             exit();
  368.         }elseif ( $event->type == "charge.dispute.closed" or $event->type == "charge.dispute.funds_withdrawn") {
  369.             $dispute $event->data->object;
  370.             $charge $dispute->payment_intent;
  371.             $factureAbo $this->em->getRepository(CompteAbonnementProFacture::class)->findBy(array('chargeStripeId'=> $charge),array('id'=>'desc'));
  372.             $factureAboCommandes $this->em->getRepository(CompteAbonnementProCommandesFactures::class)->findBy(array('chargeStripeId'=> $charge),array('id'=>'desc'));
  373.             if(($factureAbo && $factureAbo[0])){
  374.                 $facture $factureAbo[0];
  375.                 $facture->setStatusPaiement(CompteAbonnementProFacture::STATUS_IMPAYE);
  376.                 $this->em->persist($facture);
  377.                 $this->em->flush();
  378.             }
  379.             if(($factureAboCommandes && $factureAboCommandes[0])){
  380.                 $factureCommande $factureAboCommandes[0];
  381.                 $factureCommande->setStatusPaiement(CompteAbonnementProCommandesFactures::STATUS_IMPAYE);
  382.                 $this->em->persist($factureCommande);
  383.                 $this->em->flush();
  384.             }
  385.             http_response_code(200);
  386.             exit();
  387.         }
  388.     }
  389.     /**
  390.      * @Route("/webhook-request-merci-facteur", name="webhook_request_merci_facteur")
  391.      */
  392.     public function webhookRequestMerciFacteur(Request $request) : Response
  393.     {
  394.         if (isset($_POST['event'])) {
  395.             $objectEvent json_decode($_POST['event']);
  396.             if ((is_object($objectEvent) and $objectEvent->name_event == 'printed') or (is_object($objectEvent) and $objectEvent->name_event == 'new-state') or (is_object($objectEvent) and $objectEvent->name_event == 'delivered')) {
  397.                 $objectDetail json_decode($_POST['detail']);
  398.                 foreach ($objectDetail as $detail) {
  399.                     $idEvent $detail->id_envoi;
  400.                     $object $this->em->getRepository(StuartOrder::class)->findOneBy(array('idJob' => $idEvent));
  401.                     $order null;
  402.                     if ($object) {
  403.                         $order $object->getOrders();
  404.                         $object->setTrakingurl($detail->ref_courrier);
  405.                         $object->setTrakckingPoste($detail->tracking_number);
  406.                         $object->setStatus($detail->statut_description);
  407.                         $this->em->persist($object);
  408.                         $this->em->flush();
  409.                     }
  410.                     $this->notifications->mailRequestDetailPoste($detail$order);
  411.                 }
  412.             }
  413.         }
  414.         http_response_code(200);
  415.         exit();
  416.     }
  417.     /**
  418.      * @Route("/offre-B2B", name="offre_B2B")
  419.      */
  420.     public function offreB2B(Request $request) : Response
  421.     {
  422.         return $this->redirectToRoute('offre_B2B_2');
  423.         $response $this->render('front/accueil/offre-b2b.html.twig');
  424.         return $response;
  425.     }
  426.     /**
  427.      * @Route("/offre-B2B-2", name="offre_B2B_2")
  428.      */
  429.     public function offreB2B2(Request $request) : Response
  430.     {
  431.         $response $this->render('front/accueil/offre-b2b2.html.twig');
  432.         return $response;
  433.     }
  434.     /**
  435.      * @Route("/page/{url}", name="page_cms_front")
  436.      */
  437.     public function pageCms(Request $request,$url) : Response
  438.     {
  439.         $page $this->em->getRepository(Page::class)->findOneBy(['url'=>$url]);
  440.         if($page){
  441.             if($page->getPageType() == Page::PAGE_VILLE){
  442.                 $response $this->render('front/page-cms/page-ville.html.twig',['page'=>$page]);
  443.             }elseif ($page->getPageType() == Page::PAGE_METIER){
  444.                 $response $this->render('front/page-cms/page-metier.html.twig',['page'=>$page]);
  445.             }elseif ($page->getPageType() == Page::PAGE_PRODUIT){
  446.                 $response $this->render('front/page-cms/page-produit.html.twig',['page'=>$page]);
  447.             }else{
  448.                 $response $this->render('front/error.html.twig');
  449.             }
  450.         }else{
  451.             $response $this->render('front/error.html.twig');
  452.         }
  453.         return $response;
  454.     }
  455.     /**
  456.      * @Route("/change-country", name="change_country_code" ,options={"expose"=true})
  457.      */
  458.     public function ChangeCountry(Request $request) : Response
  459.     {
  460.         $referer $request->headers->get('referer'); // get the referer, it can be empty!
  461.         if (!\is_string($referer) || !$referer) {
  462.             $refererRoute 'accueil';
  463.         }
  464.         $refererPathInfo Request::create($referer)->getPathInfo();
  465.         $routeInfos $this->router->match($refererPathInfo);
  466.         $refererRoute $routeInfos['_route'] ?? 'accueil';
  467.         unset($routeInfos['_route']);
  468.         unset($routeInfos['_controller']);
  469.         $routeInfos['_locale'] = $this->session->get('_locale');
  470.         return $this->redirectToRoute($refererRoute,$routeInfos);
  471.     }
  472. //    /**
  473. //     * @Route("/aqsdqsdqsdaa", name="changeazeaze_country_code" ,options={"expose"=true})
  474. //     * @IsGranted("ROLE_SUPER_ADMINISTRATOR")
  475. //     */
  476. //    public function aazeazeaz(Request $request) : Response
  477. //    {
  478. //        $imprimeur = $this->em->getRepository(Imprimeur::class)->find(29);
  479. //        $orderDetailVirement = $this->em->getRepository(OrderDetailVirement::class)->find(12412);
  480. //        $orderDetails = $orderDetailVirement->getOrderDetail();
  481. ////        $nameFacture = $this->facture_service->uploadFactureVirementDetails30j($orderDetails,$orderDetailVirement);  //creation facture virement 30j
  482. //        foreach ($orderDetails as $orderDetail) {
  483. //            $orderDetail->setPathFactureVirement('not_facture');
  484. //            $orderDetail->setPayoutStripeId('po_1Oh6vtQ1EFGM3mS7em6SNaSO');
  485. //            $this->em->persist($orderDetail);
  486. //        }
  487. //        // set orderDetailVirement
  488. //        $orderDetailVirement->setPayoutStripeId('po_1Oh6vtQ1EFGM3mS7em6SNaSO');
  489. //        $orderDetailVirement->setPathFactureVirement('not_facture');
  490. //        $this->em->persist($orderDetailVirement);
  491. //        $this->em->flush();
  492. //
  493. ////        $this->notifications->sendOrderDetailVirement30j($imprimeur, 'Virement imprimeur', $orderDetailVirement, $nameFacture,$orderDetails); // send order virement to imprimeur
  494. //        die();
  495. //    }
  496.     /**
  497.      * @Route("/lab-copees", name="lab_copees")
  498.      */
  499.     public function labCopees(Request $request) : Response
  500.     {
  501.         $response $this->render('front/accueil/labCopees.html.twig');
  502.         return $response;
  503.     }
  504.     /**
  505.      * @Route("/change-receiver-notif-b2b/{token}", name="change_mail_receiver_b2b_notif",options={"expose"=true})
  506.      */
  507.     public function changeNotifCustomerB2c(Request $request,$token) : Response
  508.     {
  509.         if($token){
  510.             $notif $this->em->getRepository(NotifB2b::class)->findOneBy(['token'=>$token]);
  511.             if($notif){
  512.                 $customer $notif->getCustomer();
  513.                 if($customer){
  514.                     $customer->setIsNotReceiver(true);
  515.                     $this->em->persist($customer);
  516.                     $this->em->flush();
  517.                     $response $this->render('front/pageDeleteNotification.html.twig');
  518.                     return $response;
  519.                 }
  520.             }
  521.         }
  522.         $response = new Response(1);
  523.         return $response;
  524.     }
  525. }