src/Twig/AppExtension.php line 1314

Open in your IDE?
  1. <?php
  2. namespace App\Twig;
  3. use App\Entity\AbonnementPay;
  4. use App\Entity\AbonnementPro;
  5. use App\Entity\Accessoire;
  6. use App\Entity\AccueilElement;
  7. use App\Entity\Attribut;
  8. use App\Entity\AttributLang;
  9. use App\Entity\BandeauHomePage;
  10. use App\Entity\BandeauRose;
  11. use App\Entity\BesoinProductFavoris;
  12. use App\Entity\BesoinProductPage;
  13. use App\Entity\BesoinProductPageBannier;
  14. use App\Entity\BesoinProductPageCategory;
  15. use App\Entity\BesoinProductPageHeader;
  16. use App\Entity\BesoinProductPageHeaderLang;
  17. use App\Entity\BesoinProductPageHeaderMobile;
  18. use App\Entity\BesoinProductPagePreferenceCategory;
  19. use App\Entity\BesoinProductPagePreferenceCategorySous;
  20. use App\Entity\CaptchaCus;
  21. use App\Entity\CaptchaCus2;
  22. use App\Entity\Carrier;
  23. use App\Entity\Cart;
  24. use App\Entity\CartDetail;
  25. use App\Entity\CartDetailAccessoire;
  26. use App\Entity\CompteAbonnementPro;
  27. use App\Entity\CompteAbonnementProCommandes;
  28. use App\Entity\CompteAbonnementProCommandesFactures;
  29. use App\Entity\ConfigProductDescription;
  30. use App\Entity\ConfigWording;
  31. use App\Entity\Customer;
  32. use App\Entity\FavoriLiseuse;
  33. use App\Entity\FilesClientCrelloCategory;
  34. use App\Entity\FormatCatSouhaite;
  35. use App\Entity\LanguageCountry;
  36. use App\Entity\MenuBurger;
  37. use App\Entity\MenuVerticalAcceuil;
  38. use App\Entity\NbUserTemplates;
  39. use App\Entity\NosCrea;
  40. use App\Entity\OrderDetail;
  41. use App\Entity\Orders;
  42. use App\Entity\PriceProduct;
  43. use App\Entity\Product;
  44. use App\Entity\ProductAttribute;
  45. use App\Entity\ProductCountry;
  46. use App\Entity\ProductLang;
  47. use App\Entity\Seo;
  48. use App\Entity\Stats;
  49. use App\Entity\TabAbonnement;
  50. use App\Entity\TabAbonnementCategory;
  51. use App\Entity\TemplatesPage;
  52. use App\Entity\TemplatesPageCategory;
  53. use App\Form\AccueilElementType;
  54. use App\Form\CaptchaCus2Type;
  55. use App\Form\CaptchaCusType;
  56. use App\Services\CartService;
  57. use App\Services\Liseuse;
  58. use App\Services\MenuBurgerService;
  59. use App\Services\MerciFacteur;
  60. use App\Services\NbDesigner;
  61. use App\Services\OrderService;
  62. use App\Services\StripeConnect;
  63. use Symfony\Component\Form\FormFactoryInterface;
  64. use Symfony\Component\HttpFoundation\Session\SessionInterface;
  65. use Symfony\Component\Routing\RouterInterface;
  66. use Symfony\Contracts\Translation\TranslatorInterface;
  67. use Twig\Extension\AbstractExtension;
  68. use Twig\TwigFilter;
  69. use Twig\TwigFunction;
  70. use Twig\Environment;
  71. use Doctrine\ORM\EntityManagerInterface;
  72. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
  73. class AppExtension extends AbstractExtension
  74. {
  75.     private $twig;
  76.     private $liseuse_service;
  77.     private $nbDesigner;
  78.     private $merciFacteurService;
  79.     private $params;
  80.     private $order_service;
  81.     private $session;
  82.     private $router;
  83.     public function __construct(
  84.         Environment $twig,
  85.         Liseuse $liseuse_service,
  86.         EntityManagerInterface $em,
  87.         NbDesigner $nbDesigner,
  88.         MerciFacteur $merciFacteur,
  89.         ParameterBagInterface $params,
  90.         CartService $cart_service,
  91.         OrderService $order_service,
  92.         FormFactoryInterface $form,
  93.         MenuBurgerService $menuService,
  94.         SessionInterface $session,
  95.         RouterInterface $router,
  96.         StripeConnect $stripeConnect,
  97.         TranslatorInterface $trans
  98.     ) {
  99.         $this->twig $twig;
  100.         $this->em $em;
  101.         $this->liseuse_service $liseuse_service;
  102.         $this->nbDesigner $nbDesigner;
  103.         $this->merciFacteurService $merciFacteur;
  104.         $this->cart_service $cart_service;
  105.         $this->params $params;
  106.         $this->order_service $order_service;
  107.         $this->form $form;
  108.         $this->session $session;
  109.         $this->menuService $menuService;
  110.         $this->router $router;
  111.         $this->stripeConnect $stripeConnect;
  112.         $this->trans $trans;
  113.     }
  114.     public function getFunctions()
  115.     {
  116.         return [
  117.             new TwigFunction('getRestTemps', [$this'getRestTemps']),
  118.             new TwigFunction('getDetailProduct', [$this'getDetailProduct']),
  119.             new TwigFunction('getStatusString', [$this'getStatusString']),
  120.             new TwigFunction('getPourcentage', [$this'getPourcentage']),
  121.             new TwigFunction('getValByJson', [$this'getValByJson']),
  122.             new TwigFunction('getPriceTotalTtc', [$this'getPriceTotalTtc']),
  123.             new TwigFunction('getPriceTotalHt', [$this'getPriceTotalHt']),
  124.             new TwigFunction('checkColor', [$this'checkColor']),
  125.             new TwigFunction('getAccessoireReluire', [$this'getAccessoireReluire']),
  126.             new TwigFunction('displayColorD', [$this'displayColorD']),
  127.             new TwigFunction('displayColorR', [$this'displayColorR']),
  128.             new TwigFunction('getproductOptionPapier', [$this'getproductOptionPapier']),
  129.             new TwigFunction('getproductOptionCarteAndFlyer', [$this'getproductOptionCarteAndFlyer']),
  130.             new TwigFunction('getproductOptionDistribution', [$this'getproductOptionDistribution']),
  131.             new TwigFunction('getColor', [$this'getColor']),
  132.             new TwigFunction('number_format', [$this'number_format']),
  133.             new TwigFunction('getInfoOrder', [$this'getInfoOrder']),
  134.             new TwigFunction('getStatusCommande', [$this'getStatusCommande']),
  135.             new TwigFunction('isProductPoste', [$this'isProductPoste']),
  136.             new TwigFunction('getTitlePage', [$this'getTitlePage']),
  137.             new TwigFunction('getmetaDesciption', [$this'getmetaDesciption']),
  138.             new TwigFunction('listFont', [$this'listFont']),
  139.             new TwigFunction('getPriceDistribution', [$this'getPriceDistribution']),
  140.             new TwigFunction('getCurrentStatusMerciFacteur', [$this'getCurrentStatusMerciFacteur']),
  141.             new TwigFunction('getNameFormat', [$this'getNameFormat']),
  142.             new TwigFunction('displayErreurOptionNotSelect', [$this'displayErreurOptionNotSelect']),
  143.             new TwigFunction('getNamePapierGrammage', [$this'getNamePapierGrammage']),
  144.             new TwigFunction('getNameProduct', [$this'getNameProduct']),
  145.             new TwigFunction('getPrixTtcByQtyFinition', [$this'getPrixTtcByQtyFinition']),
  146.             new TwigFunction('getPrixTtcByUserTemplate', [$this'getPrixTtcByUserTemplate']),
  147.             new TwigFunction('getTitlePageS', [$this'getTitlePageS']),
  148.             new TwigFunction('getDesciptionS', [$this'getDesciptionS']),
  149.             new TwigFunction('getArticlesRss', [$this'getArticlesRss']),
  150.             new TwigFunction('getproductOptionAffiche', [$this'getproductOptionAffiche']),
  151.             new TwigFunction('imagePdfExist', [$this'imagePdfExist']),
  152.             new TwigFunction('productPdfImageExist', [$this'productPdfImageExist']),
  153.             new TwigFunction('facturedateDiff', [$this'facturedateDiff']),
  154.             new TwigFunction('formatPrixSpecifique', [$this'formatPrixSpecifique']),
  155.             new TwigFunction('getFactureAbonnementByItemCommande', [$this'getFactureAbonnementByItemCommande']),
  156.             new TwigFunction('getMenuAbonnement', [$this'getMenuAbonnement']),
  157.             new TwigFunction('checkIsAbonnementEntreprise', [$this'checkIsAbonnementEntreprise']),
  158.             new TwigFunction('checkIsAbonnementPro', [$this'checkIsAbonnementPro']),
  159.             new TwigFunction('checkIsAbonnementProCart', [$this'checkIsAbonnementProCart']),
  160.             new TwigFunction('getNameAbonnementPro', [$this'getNameAbonnementPro']),
  161.             new TwigFunction('getNameAbonnementProString', [$this'getNameAbonnementProString']),
  162.             new TwigFunction('getRetribution', [$this'getRetribution']),
  163.             new TwigFunction('getIntervalDate', [$this'getIntervalDate']),
  164.             new TwigFunction('getPriceDifference', [$this'getPriceDifference']),
  165.             new TwigFunction('checkAbonnementImpay', [$this'checkAbonnementImpay']),
  166.             new TwigFunction('getAfterPoucentage', [$this'getAfterPoucentage']),
  167.             new TwigFunction('getPriceProductAfterPoucentage', [$this'getPriceProductAfterPoucentage']),
  168.             new TwigFunction('checkabonnementPlus', [$this'checkabonnementPlus']),
  169.             new TwigFunction('getPriceLivraison30Min', [$this'getPriceLivraison30Min']),
  170.             new TwigFunction('getProductByType', [$this'getProductByType']),
  171.             new TwigFunction('getNbrOrderValide', [$this'getNbrOrderValide']),
  172.             new TwigFunction('getBrowser', [$this'getBrowser']),
  173.             new TwigFunction('getProductsWithoutPapier', [$this'getProductsWithoutPapier']),
  174.             new TwigFunction('getProductsWithoutPapierAndNotColorLab', [$this'getProductsWithoutPapierAndNotColorLab']),
  175.             new TwigFunction('getDistinctCarrierOrderDetail', [$this'getDistinctCarrierOrderDetail']),
  176.             new TwigFunction('getDistinctCarrierOrderDetailMultipleAdresse', [$this'getDistinctCarrierOrderDetailMultipleAdresse']),
  177.             new TwigFunction('getNbrCart', [$this'getNbrCart']),
  178.             new TwigFunction('getGramagePapier', [$this'getGramagePapier']),
  179.             new TwigFunction('getAbreviation', [$this'getAbreviation']),
  180.             new TwigFunction('getCharteGraphiqueB2bData', [$this'getCharteGraphiqueB2bData']),
  181.             new TwigFunction('getCommandesByUserAndByCompte', [$this'getCommandesByUserAndByCompte']),
  182.             new TwigFunction('getCategoryFileCrello', [$this'getCategoryFileCrello']),
  183.             new TwigFunction('getNotifOrderB2bNotRead', [$this'getNotifOrderB2bNotRead']),
  184.             new TwigFunction('getNotifB2bNotRead', [$this'getNotifB2bNotRead']),
  185.             new TwigFunction('fileDocClientExist', [$this'fileDocClientExist']),
  186.             new TwigFunction('checkIsComptableAboPro', [$this'checkIsComptableAboPro']),
  187.             new TwigFunction('captchaCus', [$this'captchaCus']),
  188.             new TwigFunction('captchaCus2', [$this'captchaCus2']),
  189.             new TwigFunction('getPrixDistribution', [$this'getPrixDistribution']),
  190.             new TwigFunction('gePriceCartWithAbonnementPro', [$this'gePriceCartWithAbonnementPro']),
  191.             new TwigFunction('checkIsAbonnementProIsActive', [$this'checkIsAbonnementProIsActive']),
  192.             new TwigFunction('getAllCompteAbonnementProDistinct', [$this'getAllCompteAbonnementProDistinct']),
  193.             new TwigFunction('getCompteAbonnementProByIds', [$this'getCompteAbonnementProByIds']),
  194.             new TwigFunction('getProductsPromo', [$this'getProductsPromo']),
  195.             new TwigFunction('getProductsNew', [$this'getProductsNew']),
  196.             new TwigFunction('getProductsLuxe', [$this'getProductsLuxe']),
  197.             new TwigFunction('getProductsPanier', [$this'getProductsPanier']),
  198.             new TwigFunction('getProductsMoment', [$this'getProductsMoment']),
  199.             new TwigFunction('getAttrSoon', [$this'getAttrSoon']),
  200.             new TwigFunction('getPriceTextByFormatAndProduct', [$this'getPriceTextByFormatAndProduct']),
  201.             new TwigFunction('getAttrbyFormatAndProduct', [$this'getAttrbyFormatAndProduct']),
  202.             new TwigFunction('getProductTypeById', [$this'getProductTypeById']),
  203.             new TwigFunction('getProductById', [$this'getProductById']),
  204.             new TwigFunction('getAttribute', [$this'getAttribute']),
  205.             new TwigFunction('getElemenTabAbonnement', [$this'getElemenTabAbonnement']),
  206.             new TwigFunction('configsLabelPopGabarit', [$this'configsLabelPopGabarit']),
  207.             new TwigFunction('getAllActiveByCategoryBesoinProduct', [$this'getAllActiveByCategoryBesoinProduct']),
  208.             new TwigFunction('getAllActiveByCategoryBesoinProductMerchPack', [$this'getAllActiveByCategoryBesoinProductMerchPack']),
  209.             new TwigFunction('getAllActiveByCategoryTemplatesPage', [$this'getAllActiveByCategoryTemplatesPage']),
  210.             new TwigFunction('getAllCategoryActiveTemplatesPage', [$this'getAllCategoryActiveTemplatesPage']),
  211.             new TwigFunction('getAllActiveByPreferenceCategorySousBesoinProduct', [$this'getAllActiveByPreferenceCategorySousBesoinProduct']),
  212.             new TwigFunction('getAllActiveByPreferenceCategoryBesoinProduct', [$this'getAllActiveByPreferenceCategoryBesoinProduct']),
  213.             new TwigFunction('getAllCategoryActiveBesoinProduct', [$this'getAllCategoryActiveBesoinProduct']),
  214.             new TwigFunction('getAllCategoryActiveBesoinProductMerchPack', [$this'getAllCategoryActiveBesoinProductMerchPack']),
  215.             new TwigFunction('getTypeUserAndAboTagGoogle', [$this'getTypeUserAndAboTagGoogle']),
  216.             new TwigFunction('getCustomerByUser', [$this'getCustomerByUser']),
  217.             new TwigFunction('getMerchPackByProductImage', [$this'getMerchPackByProductImage']),
  218.             new TwigFunction('getFavorisIcone', [$this'getFavorisIcone']),
  219.             new TwigFunction('getFavorisProduct', [$this'getFavorisProduct']),
  220.             new TwigFunction('getMenuBurgerFront', [$this'getMenuBurgerFront']),
  221.             new TwigFunction('getMenuVerticalFront', [$this'getMenuVerticalFront']),
  222.             new TwigFunction('getAccueilElement', [$this'getAccueilElement']),
  223.             new TwigFunction('getPourcentageParPaysAndProduct', [$this'getPourcentageParPaysAndProduct']),
  224.             new TwigFunction('getDisponibiliteParPaysAndProduct', [$this'getDisponibiliteParPaysAndProduct']),
  225.             new TwigFunction('getDisponibiliteProductPerCountrySession', [$this'getDisponibiliteProductPerCountrySession']),
  226.             new TwigFunction('getDisponibiliteProductPapierPerCountrySession', [$this'getDisponibiliteProductPapierPerCountrySession']),
  227.             new TwigFunction('getCountrySession', [$this'getCountrySession']),
  228.              new TwigFunction('routeExists', [$this'routeExists']),
  229.             new TwigFunction('getPourcentageRate', [$this'getPourcentageRate']),
  230.             new TwigFunction('checkAttributeNonAffiche', [$this'checkAttributeNonAffiche']),
  231.             new TwigFunction('getBandeauDescription', [$this'getBandeauDescription']),
  232.             new TwigFunction('getBandeauRoseBTC', [$this'getBandeauRoseBTC']),
  233.             new TwigFunction('getBandeauRoseBTB', [$this'getBandeauRoseBTB']),
  234.             new TwigFunction('getBandeauRoseABP', [$this'getBandeauRoseABP']),
  235.             new TwigFunction('getAllProduct', [$this'getAllProduct']),
  236.             new TwigFunction('getCompteB2cByIds', [$this'getCompteB2cByIds']),
  237.             new TwigFunction('getNotifB2cNotRead', [$this'getNotifB2cNotRead']),
  238.             new TwigFunction('getConfigWording', [$this'getConfigWording']),
  239.             new TwigFunction('checkWalletB2bCart', [$this'checkWalletB2bCart']),
  240.             new TwigFunction('besoinProductHeader', [$this'besoinProductHeader']),
  241.             new TwigFunction('besoinProductHeaderMobile', [$this'besoinProductHeaderMobile']),
  242.             new TwigFunction('getCardByPaiementIntent', [$this'getCardByPaiementIntent']),
  243.             new TwigFunction('getDetailFavoris', [$this'getDetailFavoris']),
  244.             new TwigFunction('getImagesBanniere', [$this'getImagesBanniere']),
  245.             new TwigFunction('getDescriptionAttributeLang', [$this'getDescriptionAttributeLang']),
  246.             new TwigFunction('getImageProductLang', [$this'getImageProductLang']),
  247.             new TwigFunction('getImageBesoinProductHeaderLang', [$this'getImageBesoinProductHeaderLang']),
  248.             new TwigFunction('ceilFunction', [$this'ceilFunction']),
  249.             new TwigFunction('catLiseuseConfig', [$this'catLiseuseConfig']),
  250.             new TwigFunction('getTotalPromoByVal', [$this'getTotalPromoByVal']),
  251.             new TwigFunction('triTableQuantity', [$this'triTableQuantity']),
  252.         ];
  253.     }
  254.     public function ceilFunction($number){
  255.         if($number){
  256.             return ceil($number);
  257.         }
  258.         return 0;
  259.     }
  260.     private function cmpDefault($a$b) {
  261.         return strcmp($a['isDefault'], $b['isDefault']);
  262.     }
  263.     private function cmpId($a$b) {
  264.         return ($a['id'] < $b['id']) ? -1;
  265.     }
  266.     public function triTableQuantity($qtys){
  267.         $isDefault false;
  268.         if($qtys){
  269. //            foreach ($qtys as $qty){
  270. //                if($qty['isDefault']){
  271. //                    $isDefault = true;
  272. //                    break;
  273. //                }
  274. //            }
  275. //            if($isDefault){
  276. //                usort($qtys, array($this, "cmpDefault"));
  277. //            }else{
  278. //                usort($qtys, array($this, "cmpId"));
  279. //            }
  280.             usort($qtys, array($this"cmpId"));
  281.         }
  282.         return $qtys;
  283.     }
  284.     public function getTotalPromoByVal($cart,$val){
  285.         $val $this->cart_service->getTotalPromoByVal($cart,$val);
  286.         return $val ;
  287.     }
  288.     public function catLiseuseConfig(){
  289.         $array = [];
  290.         $cat1 $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_DOC);
  291.         $cat2 $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_BROCHURE);
  292.         $cat3 $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_lIVRES);
  293.         $cat4 $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_CATALOGES);
  294.         $cat5 $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_LIVRETS);
  295.         $cat6 $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_RAPORT);
  296.         $array[CartDetail::SOUHAITE_DOC]['cat'] = CartDetail::SOUHAITE_DOC;
  297.         $array[CartDetail::SOUHAITE_DOC]['value'] = $cat1;
  298.         $array[CartDetail::SOUHAITE_BROCHURE]['cat'] = CartDetail::SOUHAITE_BROCHURE;
  299.         $array[CartDetail::SOUHAITE_BROCHURE]['value'] = $cat2;
  300.         $array[CartDetail::SOUHAITE_lIVRES]['cat'] = CartDetail::SOUHAITE_lIVRES;
  301.         $array[CartDetail::SOUHAITE_lIVRES]['value'] = $cat3;
  302.         $array[CartDetail::SOUHAITE_CATALOGES]['cat'] = CartDetail::SOUHAITE_CATALOGES;
  303.         $array[CartDetail::SOUHAITE_CATALOGES]['value'] = $cat4;
  304.         $array[CartDetail::SOUHAITE_LIVRETS]['cat'] = CartDetail::SOUHAITE_LIVRETS;
  305.         $array[CartDetail::SOUHAITE_LIVRETS]['value'] = $cat5;
  306.         $array[CartDetail::SOUHAITE_RAPORT]['cat'] = CartDetail::SOUHAITE_RAPORT;
  307.         $array[CartDetail::SOUHAITE_RAPORT]['value'] = $cat6;
  308.         return json_encode($array) ;
  309.     }
  310.     public function getImageBesoinProductHeaderLang($idBesoinProduct){
  311.         $attrLang null;
  312.         $countryCode $this->session->get('countryCodeCopees');
  313.         if(!$countryCode){
  314.             $countryCode 'FR';
  315.         }
  316.         $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
  317.         if($country){
  318.             $attrLang $this->em->getRepository(BesoinProductPageHeaderLang::class)->findOneBy(['besoinProductPageHeader'=>$idBesoinProduct,'language'=>$country->getId()]);
  319.         }
  320.         if(!$attrLang){
  321.             $attrLang $this->em->getRepository(BesoinProductPageHeader::class)->find($idBesoinProduct);
  322.         }
  323.         return $attrLang;
  324.     }
  325.     public function getImageProductLang($idProduct){
  326.         $attrLang null;
  327.         $countryCode $this->session->get('countryCodeCopees');
  328.         if(!$countryCode){
  329.             $countryCode 'FR';
  330.         }
  331.         $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
  332.         if($country){
  333.             $attrLang $this->em->getRepository(ProductLang::class)->findOneBy(['product'=>$idProduct,'language'=>$country->getId()]);
  334.         }
  335.         if(!$attrLang){
  336.             $attrLang $this->em->getRepository(Product::class)->find($idProduct);
  337.         }
  338.         return $attrLang;
  339.     }
  340.     public function getDescriptionAttributeLang($idAttribute){
  341.         $attrLang null;
  342.         $countryCode $this->session->get('countryCodeCopees');
  343.         if(!$countryCode){
  344.             $countryCode 'FR';
  345.         }
  346.         $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
  347.         if($country){
  348.             $attrLang $this->em->getRepository(AttributLang::class)->findOneBy(['attribute'=>$idAttribute,'language'=>$country->getId()]);
  349.         }
  350.         if(!$attrLang){
  351.             $attrLang $this->em->getRepository(Attribut::class)->find($idAttribute);
  352.         }
  353.         return $attrLang;
  354.     }
  355.     public function getImagesBanniere(){
  356.         $bannieres $this->em->getRepository(BesoinProductPageBannier::class)->findOneBy([]);
  357.         return $bannieres;
  358.     }
  359.     public function getDetailFavoris($token)
  360.     {
  361.         $favori $this->em->getRepository(FavoriLiseuse::class)->findOneBy(['token'=>$token]);
  362.         $product_attribute $favori->getProductAttribute();
  363.         $array = array();
  364.         $arrayReluire = array();
  365.         if($product_attribute) {
  366.             if ($product_attribute->getFormat()) {
  367.                 $array[] = $this->trans->trans($product_attribute->getFormat()->getName(), [], 'productTranslate') . ' ';
  368.             }
  369.             if ($favori->getIsReluire()) {
  370.                 $array[] = $this->trans->trans('Reliée', [], 'productTranslate') . ' ';
  371.             } else {
  372.                 $array[] = $this->trans->trans('Non reliée', [], 'productTranslate') . ' ';
  373.             }
  374.             if ($favori->getAccecoireColor()) {
  375.                 if ($favori->getAccecoireColor()->getTypeAccessoire() == Accessoire::COULEUR) {
  376.                     $array[] = $this->trans->trans($favori->getAccecoireColor()->getName(), [], 'productTranslate') . ' ';
  377.                 }
  378.             }
  379.             if ($product_attribute->getProduct()->getTypeProduct() == Product::PAPIER) {
  380.                 if ($product_attribute->getRectoverso()) {
  381.                     if ($product_attribute->getRectoverso() == ProductAttribute::RECTO) {
  382.                         $array[] = ' ' $this->trans->trans('Recto', [], 'adminTranslate') . ' ';
  383.                     } else {
  384.                         $array[] = ' ' $this->trans->trans('Recto-Verso', [], 'adminTranslate') . ' ';
  385.                     }
  386.                 }
  387.             }
  388.             if ($product_attribute->getGramage() && $product_attribute->getProduct()->getTypeProduct() == Product::PAPIER) {
  389.                 $array[] = $this->trans->trans($product_attribute->getGramage()->getNamePapier(), [], 'productTranslate'). ' ';
  390.             }
  391.         }
  392.         $str =implode(',',$array);
  393.         $strReluire = !empty($arrayReluire)? '('.implode(',',$arrayReluire).')':'';
  394.         return $str.$strReluire;
  395.     }
  396.     public function getCardByPaiementIntent($paymentIntentId){
  397.         $method $this->stripeConnect->getCardByPaiementIntent($paymentIntentId);
  398.         return $method;
  399.     }
  400.     public function getDisponibiliteProductPerCountrySession($product){
  401.         $countryCode $this->session->get('countryCodeCopees');
  402.         if(!$countryCode){
  403.             $countryCode 'FR';
  404.         }
  405.         $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
  406.         if($country){
  407.             $productCountry $this->em->getRepository(ProductCountry::class)->getProductCountryByTypeProductAndCountry($product$country->getId());
  408.             if ($productCountry) {
  409.                 if ($productCountry->getIsEnabled()) {
  410.                     return true;
  411.                 }
  412.             }
  413.         }
  414.         return false;
  415.     }
  416.     public function getDisponibiliteProductPapierPerCountrySession($typeProduct){
  417.         $product $this->em->getRepository(Product::class)->findOneBy(['typeProduct'=>$typeProduct]);
  418.         if($product) {
  419.             $countryCode $this->session->get('countryCodeCopees');
  420.             if (!$countryCode) {
  421.                 $countryCode 'FR';
  422.             }
  423.             $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode' => $countryCode]);
  424.             if ($country) {
  425.                 $productCountry $this->em->getRepository(ProductCountry::class)->getProductCountryByTypeProductAndCountry($product$country->getId());
  426.                 if ($productCountry) {
  427.                     if ($productCountry->getIsEnabled()) {
  428.                         return true;
  429.                     }
  430.                 }
  431.             }
  432.         }
  433.         return false;
  434.     }
  435.     public function getCountrySession(){
  436.         $countryCode $this->session->get('countryCodeCopees');
  437.         if(!$countryCode){
  438.             $countryCode 'FR';
  439.         }
  440.         $country $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
  441.         if($country){
  442.            return $country->getCountryName();
  443.         }
  444.         return '';
  445.     }
  446.     public function getDisponibiliteParPaysAndProduct($productId,$countryId){
  447.         $product $this->em->getRepository(Product::class)->find($productId);
  448.         $country $this->em->getRepository(LanguageCountry::class)->find($countryId);
  449.         if($country && $product){
  450.             $productCountry $this->em->getRepository(ProductCountry::class)->findOneBy(['country'=>$countryId,'product'=>$productId]);
  451.             if($productCountry){
  452.                 return $productCountry->getIsEnabled();
  453.             }
  454.         }
  455.         return false;
  456.     }
  457.     public function getPourcentageParPaysAndProduct($productId,$countryId){
  458.         $product $this->em->getRepository(Product::class)->find($productId);
  459.         $country $this->em->getRepository(LanguageCountry::class)->find($countryId);
  460.         if($country && $product){
  461.             $productCountry $this->em->getRepository(ProductCountry::class)->findOneBy(['country'=>$countryId,'product'=>$productId]);
  462.             if($productCountry){
  463.                 return $productCountry->getPourcentagePrix();
  464.             }
  465.         }
  466.         return 0;
  467.     }
  468.     function besoinProductHeader()
  469.     {
  470.         $blocs $this->em->getRepository(BesoinProductPageHeader::class)->getAllActive();
  471.         return $blocs;
  472.     }
  473.     function besoinProductHeaderMobile()
  474.     {
  475.         $blocs $this->em->getRepository(BesoinProductPageHeaderMobile::class)->getAllActive();
  476.         return $blocs;
  477.     }
  478.     function checkWalletB2bCart($cart)
  479.     {
  480.         $walletsPrix $this->cart_service->checkWalletB2bCart($cart);
  481.         return $walletsPrix;
  482.     }
  483.     function getAllProduct()
  484.     {
  485.         $products $this->em->getRepository(Product::class)->findAllProductNotDelete();
  486.         return $products;
  487.     }
  488.     public function getConfigWording($typeW){
  489.         $configWording $this->em->getRepository(ConfigWording::class)->findOneBy(['typeW'=>$typeW]);
  490.         return $configWording;
  491.     }
  492.     public function getNotifB2cNotRead($user){
  493.         $notifs $this->cart_service->getNotifB2cNotRead($user);
  494.         return $notifs;
  495.     }
  496.     function getBandeauRoseABP()
  497.     {
  498.         $bandeau $this->em->getRepository(BandeauRose::class)->findOneBy(['numBandeau'=>BandeauRose::BANDEAU_ABP]);
  499.         return $bandeau;
  500.     }
  501.     function getBandeauRoseBTC()
  502.     {
  503.         $bandeau $this->em->getRepository(BandeauRose::class)->findOneBy(['numBandeau'=>BandeauRose::BANDEAU_B2C]);
  504.         return $bandeau;
  505.     }
  506.     function getBandeauRoseBTB()
  507.     {
  508.         $bandeau $this->em->getRepository(BandeauRose::class)->findOneBy(['numBandeau'=>BandeauRose::BANDEAU_B2B]);
  509.         return $bandeau;
  510.     }
  511.     function getBandeauDescription()
  512.     {
  513.         $bandeau $this->em->getRepository(BandeauHomePage::class)->findOneBy([]);
  514.         return $bandeau;
  515.     }
  516.     function checkAttributeNonAffiche($attrs)
  517.     {
  518.         $bool false;
  519.         foreach ($attrs as $attr){
  520.             if($attr && isset($attr['id'])){
  521.                 if($attr['isDisplayNone']){
  522.                     $bool true;
  523.                 }
  524.             }
  525.         }
  526.         return $bool;
  527.     }
  528.     function getPourcentageRate($rate)
  529.     {
  530.        if($rate 0){
  531.           return  $rate/*100 ;
  532.        }else{
  533.            return 0;
  534.        }
  535.     }
  536.     function routeExists($name)
  537.     {
  538.         return (null ===  $this->router->getRouteCollection()->get($name)) ? false true;
  539.     }
  540.     public function getMenuBurgerFront(){
  541.         $menuObjects $this->em->getRepository(MenuBurger::class)->findBy([],['sort'=>'asc']);
  542.         $menus = [];
  543.         if($menuObjects){
  544.             $menus $this->menuService->groupMenuTab($menuObjects);
  545.         }
  546.         return $menus ;
  547.     }
  548.     public function getMenuVerticalFront(){
  549.         $menuObjects $this->em->getRepository(MenuVerticalAcceuil::class)->findBy([],['sort'=>'asc']);
  550.         $menus = [];
  551.         if($menuObjects){
  552.             $menus $this->menuService->groupMenuVerticalTab($menuObjects);
  553.         }
  554.         return $menus ;
  555.     }
  556.     public function getAccueilElement(){
  557.         $objects $this->em->getRepository(AccueilElement::class)->findBy([],['sort'=>'asc']);
  558.         return $objects ;
  559.     }
  560.     public function getFavorisIcone($id,$user){
  561.         $product $this->em->getRepository(BesoinProductPage::class)->find($id);
  562.         if($product && $user){
  563.             $favoris $this->em->getRepository(BesoinProductFavoris::class)->findOneBy(['besoinProductPage'=>$product->getId(),'user'=>$user->getId()]) ;
  564.             if($favoris){
  565.                 return "<span class='infoBulleHeart' style='' data-id='".$product->getId()."'><i class='fa-solid fa-heart' style='color:red;'></i></span>";
  566.             }else{
  567.                 return "<span class='infoBulleHeart' style='' data-id='".$product->getId()."'><i class='fa-regular fa-heart'></i></span>";
  568.             }
  569.         }
  570.         return '';
  571.     }
  572.     public function getFavorisProduct($user){
  573.         if( $user){
  574.             $favoris $this->em->getRepository(BesoinProductFavoris::class)->findBy(['user'=>$user->getId()]) ;
  575.             return $favoris;
  576.         }
  577.         return false;
  578.     }
  579.     public function getMerchPackByProductImage($request,$id){
  580.         $product $this->em->getRepository(BesoinProductPage::class)->find($id);
  581.         $image null;
  582.         if($product){
  583.             $baseurl $request->getScheme() . '://' $request->getHttpHost() . $request->getBasePath();
  584.             $image $baseurl.'/imageSite/'.$product->getFileBesoinProduct();
  585.             $dataImage $this->session->get('dataImageMerchPack');
  586.             if(is_array($dataImage)){
  587.                 if(array_key_exists($product->getId(),$dataImage) && $product->getNbrMerchPack() && !empty($product->getNbrMerchPack())){
  588.                     $image $dataImage[$product->getId()];
  589.                 }
  590.             }
  591.         }
  592.         return $image;
  593.     }
  594.     public function getCustomerByUser($user){
  595.         $customer $this->em->getRepository(Customer::class)->findOneBy(['user'=>$user->getId()]);
  596.         return $customer;
  597.     }
  598.     public function getAllActiveByCategoryBesoinProduct($catId){
  599.         $products $this->em->getRepository(BesoinProductPage::class)->getAllActiveByCategory($catId);
  600.         return $products;
  601.     }
  602.     public function getAllActiveByCategoryTemplatesPage($catId){
  603.         $products $this->em->getRepository(TemplatesPage::class)->getAllActiveByCategory($catId);
  604.         return $products;
  605.     }
  606.     public function getAllCategoryActiveTemplatesPage(){
  607.         $categorys $this->em->getRepository(TemplatesPageCategory::class)->getAllActive();
  608.         return $categorys;
  609.     }
  610.     public function getAllActiveByCategoryBesoinProductMerchPack($catId){
  611.         $products $this->em->getRepository(BesoinProductPage::class)->getAllActiveByCategoryMerchPack($catId);
  612.         return $products;
  613.     }
  614.     public function getAllActiveByPreferenceCategorySousBesoinProduct($catId){
  615.         $products $this->em->getRepository(BesoinProductPagePreferenceCategorySous::class)->getAllActiveByCategory($catId);
  616.         return $products;
  617.     }
  618.     public function getAllActiveByPreferenceCategoryBesoinProduct(){
  619.         $products $this->em->getRepository(BesoinProductPagePreferenceCategory::class)->getAllActive();
  620.         return $products;
  621.     }
  622.     public function getAllCategoryActiveBesoinProduct(){
  623.         $categorys $this->em->getRepository(BesoinProductPageCategory::class)->getAllActive();
  624.         return $categorys;
  625.     }
  626.     public function getAllCategoryActiveBesoinProductMerchPack(){
  627.         $categorys $this->em->getRepository(BesoinProductPageCategory::class)->getAllActiveMerchPack();
  628.         return $categorys;
  629.     }
  630.     public function getElemenTabAbonnement(){
  631.         $category $this->em->getRepository(TabAbonnementCategory::class)->findBy([],['sort'=>'asc']);
  632.         $tabAbonnementWithoutCategory $this->em->getRepository(TabAbonnement::class)->getLigneWithoutCategory();
  633.         $response =
  634.             [
  635.                 'category' => $category,
  636.                 'tabAbonnementWithoutCategory' => $tabAbonnementWithoutCategory
  637.             ];
  638.         return $response;
  639.     }
  640.     public function getPriceTextByFormatAndProduct($typeProduit,$typeFormat){
  641.         $attr $this->em->getRepository(Attribut::class)->findOneBy(['typeFormat'=>$typeFormat,'typeProduct'=>$typeProduit]);
  642.         if($attr){
  643.             return $attr->getBesoinProductTextPrix();
  644.         }else{
  645.             return '';
  646.         }
  647.     }
  648.     public function getAttrbyFormatAndProduct($typeProduit,$typeFormat)
  649.     {
  650.         $attr $this->em->getRepository(Attribut::class)->findOneBy(['typeFormat'=>$typeFormat,'typeProduct'=>$typeProduit]);
  651.         return $attr;
  652.     }
  653.     public function getProductsPanier(){
  654.         $cart $this->cart_service->getCartWithSession();
  655.         if($cart && $cart->getCartDetail() && count($cart->getCartDetail())>0){
  656.             $result $cart->getCartDetail();
  657.         }else{
  658.             $result null;
  659.         }
  660.         return $this->twig->render('front/accueil/besoin-product-bloc/moment.html.twig', [
  661.             'products' => $result,
  662.         ]);
  663.     }
  664.     public function getAttrSoon($attrType,$productType){
  665.         $result $this->em->getRepository(Attribut::class)->getAttrSoon($attrType,$productType);
  666.         return $result;
  667.     }
  668.     public function getProductsMoment(){
  669.         $creas $this->em->getRepository(NosCrea::class)->findBy([]);
  670.         return $this->twig->render('front/accueil/besoin-product-bloc/moment.html.twig', [
  671.             'products' => $creas,
  672.         ]);
  673.     }
  674.     public function getProductsPromo(){
  675.         $result $this->em->getRepository(Product::class)->findBy(['besoinProductIsPromo'=>true]);
  676.         return $this->twig->render('front/accueil/besoin-product-bloc/promo.html.twig', [
  677.             'products' => $result,
  678.         ]);
  679.     }
  680.     public function getProductsNew(){
  681.         $result $this->em->getRepository(Product::class)->findBy(['besoinProductIsNew'=>true]);
  682.         return $this->twig->render('front/accueil/besoin-product-bloc/new.html.twig', [
  683.             'products' => $result,
  684.         ]);
  685.     }
  686.     public function getProductsLuxe(){
  687.         $result $this->em->getRepository(Product::class)->findBy(['besoinProductIsLuxe'=>true]);
  688.         return $this->twig->render('front/accueil/besoin-product-bloc/luxe.html.twig', [
  689.             'products' => $result,
  690.         ]);
  691.     }
  692.     public function getCompteAbonnementProByIds($ids){
  693.         $result $this->em->getRepository(CompteAbonnementPro::class)->findBy(['id'=>json_decode($ids)]);
  694.         return $result;
  695.     }
  696.     public function getCompteB2cByIds($ids){
  697.         $result $this->em->getRepository(Customer::class)->findBy(['id'=>json_decode($ids)]);
  698.         return $result;
  699.     }
  700.     public function getAllCompteAbonnementProDistinct(){
  701.         $result $this->em->getRepository(CompteAbonnementPro::class)->getAllCompteAbonnementProDistinct();
  702.         return $result;
  703.     }
  704.     public function checkIsAbonnementProIsActive($user){
  705.         $result $this->cart_service->checkIsAbonnementProIsActive($user);
  706.         return $result;
  707.     }
  708.     public function gePriceCartWithAbonnementPro($typeAbonnement,$cart){
  709.         $array $this->cart_service->gePriceCartWithAbonnementPro($typeAbonnement,$cart);
  710.         return $array;
  711.     }
  712.     public function getPrixDistribution($distribution){
  713.         $prix 0;
  714.         if(is_object($distribution)){
  715.             $persone = (int)$distribution->getNbrPersonne();
  716.             $prixQty $distribution->getQty()->getPrixTtc();
  717.             if($persone == 1){
  718.                 $prix $prixQty;
  719.             }else if($persone == 2){
  720.                 $prix $prixQty + ($prixQty 30)/100;
  721.             }else if($persone == 3){
  722.                 $prix $prixQty + ($prixQty 40)/100;
  723.             }else if($persone == 4){
  724.                 $prix $prixQty + ($prixQty 50)/100;
  725.             }else{
  726.                 $prix $prixQty;
  727.             }
  728.         }
  729.         return $prix  ;
  730.     }
  731.     public function captchaCus(){
  732.         $form $this->form->create(CaptchaCusType::class, new CaptchaCus());
  733.         return [
  734.             'formCaptcha' => $form->createView(),
  735.             ]
  736.         ;
  737.     }
  738.     public function captchaCus2(){
  739.         $form $this->form->create(CaptchaCus2Type::class, new CaptchaCus2());
  740.         return [
  741.             'formCaptcha' => $form->createView(),
  742.         ]
  743.             ;
  744.     }
  745.     public function checkIsComptableAboPro($user){
  746.         if(is_object($user)){
  747.             $abo $this->cart_service->checkAbonenementProSansAbonnementCopeesPlus($user);
  748.             if($abo) {
  749.                 $customer $this->em->getRepository(Customer::class)->findOneBy(['user' => $user->getId()]);
  750.                 if ($customer && $customer->getRolAbo() == Customer::role_abo_comptabilite) {
  751.                     return true;
  752.                 }
  753.             }
  754.         }
  755.         return false;
  756.     }
  757.     public function getNotifOrderB2bNotRead($user){
  758.         $notifs $this->cart_service->getNotifOrderB2bNotRead($user);
  759.         return $notifs;
  760.     }
  761.     public function getNotifB2bNotRead($user){
  762.         $notifs $this->cart_service->getNotifB2bNotRead($user);
  763.         return $notifs;
  764.     }
  765.     public function getCommandesByUserAndByCompte($id,$idCustomer){
  766.         $compte $this->em->getRepository(CompteAbonnementPro::class)->find($id);
  767.         $customer $this->em->getRepository(Customer::class)->find($idCustomer);
  768.         $commandes $this->em->getRepository(CompteAbonnementProCommandes::class)->getCommandesByUserAndByCompte($customer->getUser(),$compte);
  769.         return $commandes;
  770.     }
  771.     public function getCharteGraphiqueB2bData($user){
  772.         $data $this->cart_service->getCharteGraphiqueB2bData($user);
  773.         return $data;
  774.     }
  775.     public function getAbreviation($user=null,$email=null){
  776.         $name '';
  777.         $nameAB 'X';
  778.         $class '';
  779.         if($user){
  780.             $name ucwords($user->getFirstname()).' '.ucwords($user->getLastname());
  781.             $nameAB substr($user->getFirstname(), 01) ;
  782.             $class 'bg-light-primary';
  783.         }else{
  784.             if(!empty($email)) {
  785.                 $name $email;
  786.                 $nameAB substr($email01);
  787.                 $class 'bg-light-primary';
  788.             }
  789.         }
  790.         return ['name' => $name,'nameAB' => strtoupper($nameAB),'class' => $class];
  791.     }
  792.     public function getFilters()
  793.     {
  794.         return array(
  795.             new \Twig_SimpleFilter('convertPrice', array($this'convertPrice')),
  796.             new \Twig_SimpleFilter('sortArrayByField', array($this'sortArrayByField')),
  797.             new \Twig_SimpleFilter('addslashes''addslashes'),
  798.         );
  799.     }
  800.     public function getNbrCart(){
  801.         $cart $this->cart_service->getCartWithSession();
  802.         if($cart){
  803.             $nbr count($cart->getCartDetail()) + count($cart->getDistributionCart());
  804.         }else{
  805.             $nbr 0;
  806.         }
  807.         return $nbr;
  808.     }
  809.     public function getGramagePapier(){
  810.         $gramage $this->cart_service->getGramagePapier();
  811.         return $gramage;
  812.     }
  813.     public function getProductsWithoutPapier(){
  814.         $products  $this->em->getRepository(Product::class)->getProductsWithoutPapier();
  815.         return $products;
  816.     }
  817.     public function getProductsWithoutPapierAndNotColorLab(){
  818.         $products  $this->em->getRepository(Product::class)->getProductsWithoutPapierAndNotColorLab();
  819.         return $products;
  820.     }
  821.     public function getCategoryFileCrello($user){
  822.         $cat = [];
  823.         if(is_object($user)){
  824.             $cat  $this->em->getRepository(FilesClientCrelloCategory::class)->findBy(['user'=>$user->getId(),'isDefault'=> null]);
  825.         }
  826.         return $cat;
  827.     }
  828.     public function configsLabelPopGabarit($tag){
  829.         $config  $this->em->getRepository(ConfigProductDescription::class)->findOneBy(array('tagId'=>$tag));
  830.         if ($config){
  831.            $text =  $config->getDescription();
  832.         }else{
  833.             $text =  '';
  834.         }
  835.         return $text;
  836.     }
  837.     public function getDistinctCarrierOrderDetail($order){
  838.         $distinctCarrierOrderDetail $this->order_service->getDistinctCarrierOrderDetail($order);
  839.         return $distinctCarrierOrderDetail;
  840.     }
  841.     public function getDistinctCarrierOrderDetailMultipleAdresse($order){
  842.         $distinctCarrierOrderDetail $this->order_service->getDistinctCarrierOrderDetailMultipleAdresse($order);
  843.         return $distinctCarrierOrderDetail;
  844.     }
  845.     public function getBrowser($request){
  846.         $user_agent $request->headers->get('User-Agent');
  847.         $t strtolower($user_agent);
  848.         $t " " $t;
  849.         if     (strpos($t'opera'     ) || strpos($t'opr/')     ) return 'Opera'     ;
  850.         elseif (strpos($t'edge'      )                           ) return 'Edge'             ;
  851.         elseif (strpos($t'chrome'    )                           ) return 'Chrome'           ;
  852.         elseif (strpos($t'safari'    )                           ) return 'Safari'           ;
  853.         elseif (strpos($t'firefox'   )                           ) return 'Firefox'          ;
  854.         elseif (strpos($t'msie'      ) || strpos($t'trident/7')) return 'Internet Explorer';
  855.         else 'Unkown';
  856.     }
  857.     public function getNbrOrderValide(){
  858.         $result $this->em->getRepository(Orders::class)->getOrderValide();
  859.         return ['nembre_space' => $this->space(count($result)-139513true),'nembre'=>count($result)-13951];
  860.     }
  861.     private function space($str$step$reverse false) {
  862.         if ($reverse)
  863.             return strrev(chunk_split(strrev($str), $step' '));
  864.         return chunk_split($str$step' ');
  865.     }
  866.     public function getProductByType($typeProduct){
  867.         $result $this->em->getRepository(Product::class)->findOneBy(array('typeProduct'=>$typeProduct));
  868.         return $result;
  869.     }
  870.     public function getPriceLivraison30Min($idImprimeur,$data){
  871.         $result $this->cart_service->getPriceLivraison30Min($idImprimeur,$data);
  872.         return $result;
  873.     }
  874.     public function checkabonnementPlus($user){
  875.         if(is_object($user) ){
  876.             $subscription $this->em->getRepository(AbonnementPay::class)->getActive($user);
  877.             return $subscription true:false;
  878.         }
  879.         return false;
  880.     }
  881.     public function getAfterPoucentage($id,$price){
  882.         $productPrice $this->em->getRepository(PriceProduct::class)->find($id);
  883.         $val =   $this->cart_service->getPricePourcentageAdd($productPrice,$price);
  884.         return $val $price;
  885.     }
  886.     public function getPriceProductAfterPoucentage($product,$price){
  887.         $val =   $this->cart_service->getPriceProductPourcentageAdd($product,$price);
  888.         return $val $price;
  889.     }
  890.     public function checkAbonnementImpay($user){
  891.         return  $this->cart_service->checkFactureImpayeByCompte($user);
  892.     }
  893.     public function getPriceDifference($myAbonnementId,$typeAbonnement,$typeCompteAbonnement){
  894.        $tab =  $this->cart_service->getPriceDifference($myAbonnementId,$typeAbonnement,$typeCompteAbonnement);
  895.        $prix explode('.',$tab['newPriceTtc']);
  896.        $oldPrix =$tab['oldPriceTtc'];
  897.        return[
  898.            'prix1'=>$prix[0],
  899.            'prix2'=>isset($prix[1])? $prix[1] :'00',
  900.            'oldPrix'=>str_replace('.',',',$oldPrix)
  901.        ];
  902.     }
  903.     public function getIntervalDate($origin ,$target ){
  904.         $mois 0;
  905.         if(is_object($origin) && is_object($target)){
  906.             $interval $origin->diff($target);
  907.             $mois $interval->;
  908.             $mois $interval->20 $mois $mois;
  909.             $years $interval->y;
  910.             if($years 0){
  911.                 $mois $years *12 +$mois;
  912.             }
  913.         }
  914.         return $mois;
  915.     }
  916.     public function getRetribution($order){
  917.         if(is_object($order)){
  918.             if($order->getRetributionPourcentage()){
  919.                 return $order->getRetributionPourcentage();
  920.             }else{
  921.                 return round($order->getPrixTransfer() * 100 /  $order->getPrixTtc());
  922.             }
  923.         }
  924.         return '-';
  925.     }
  926.     public function checkIsAbonnementPro($user){
  927.         if(is_object($user)){
  928.             return $this->cart_service->checkAbonenementProSansAbonnementCopeesPlus($user);
  929.         }
  930.         return false;
  931.     }
  932.     public function checkIsAbonnementProCart(){
  933.         $cart $this->cart_service->getCartWithSession();
  934.         if($cart){
  935.            return  $this->cart_service->checkIsAbonnementProCart($cart->getId());
  936.         }
  937.         return false;
  938.     }
  939.     public function getMenuAbonnement($user,$route){
  940.         if(is_object($user)){
  941.             $abonnement $this->cart_service->checkIsAbonnementPro($user);
  942.             // check abonnement in cart
  943.             $cart $this->cart_service->getCartWithSession();
  944.             $isAbonnementProInCart false;
  945.             if($cart){
  946.                 $isAbonnementProInCart $this->cart_service->checkIsAbonnementProCart($cart->getId());
  947.             }
  948.             if($abonnement['is_abonnemen_pro'] || $isAbonnementProInCart) { // check is admin in compte abonnement
  949.                 $compteAbonnement $abonnement['compte_abonnement_object'];
  950.                 return $this->twig->render('front/abonnement-pro/account/menu.html.twig', [
  951.                     'compteAbonnement' => $compteAbonnement,
  952.                     'is_admin' => isset($abonnement['is_admin'])?$abonnement['is_admin']:$isAbonnementProInCart?true:false,
  953.                     'route' => $route,
  954.                     'user' => $user,
  955.                     'isAbonnementProInCart' => $isAbonnementProInCart,
  956.                     'cart' => $cart
  957.                 ]);
  958.             }
  959.         }
  960.         return '';
  961.     }
  962.     public function getNameAbonnementPro($user){
  963.         if(is_object($user)){
  964.             $abonnement $this->cart_service->checkIsAbonnementPro($user);
  965.             // check abonnement in cart
  966.             $cart $this->cart_service->getCartWithSession();
  967.             $isAbonnementProInCart false;
  968.             if($cart){
  969.                 $isAbonnementProInCart $this->cart_service->checkIsAbonnementProCart($cart->getId());
  970.             }
  971.             if($abonnement['is_abonnemen_pro'] || $isAbonnementProInCart) { // check is admin in compte abonnement
  972.                 $compteAbonnement $abonnement['compte_abonnement_object'];
  973.                 return $this->twig->render('front/abonnement-pro/account/name-abos.html.twig', [
  974.                     'compteAbonnement' => $compteAbonnement,
  975.                     'isAbonnementProInCart' => $isAbonnementProInCart,
  976.                     'cart' => $cart
  977.                 ]);
  978.             }else{
  979.                 return $user->getFirstname();
  980.             }
  981.         }
  982.         return '';
  983.     }
  984.     public function getNameAbonnementProString($user){
  985.         if(is_object($user)){
  986.             $abonnement $this->cart_service->checkIsAbonnementPro($user);
  987.             // check abonnement in cart
  988.             $cart $this->cart_service->getCartWithSession();
  989.             $isAbonnementProInCart false;
  990.             if($cart){
  991.                 $isAbonnementProInCart $this->cart_service->checkIsAbonnementProCart($cart->getId());
  992.             }
  993.             if($abonnement['is_abonnemen_pro'] || $isAbonnementProInCart) { // check is admin in compte abonnement
  994.                 $compteAbonnement $abonnement['compte_abonnement_object'];
  995.                 if($isAbonnementProInCart){
  996.                     return $cart->getAbonnementProCart()->getAbonnement()->getName();
  997.                 }else{
  998.                     return $compteAbonnement->getAbonnement()->getName();
  999.                 }
  1000.             }
  1001.         }
  1002.         return '';
  1003.     }
  1004.     public function getTypeUserAndAboTagGoogle($user){
  1005.         $data = [
  1006.             'user_type' => 'btoc',
  1007.             'subscription_type' => '',
  1008.         ];
  1009.         if(is_object($user)){
  1010.             $abonnement $this->cart_service->checkIsAbonnementPro($user);
  1011.             // check abonnement in cart
  1012.             $cart $this->cart_service->getCartWithSession();
  1013.             $isAbonnementProInCart false;
  1014.             if($cart){
  1015.                 $isAbonnementProInCart $this->cart_service->checkIsAbonnementProCart($cart->getId());
  1016.             }
  1017.             if($abonnement['is_abonnemen_pro'] || $isAbonnementProInCart) { // check is admin in compte abonnement
  1018.                 $compteAbonnement $abonnement['compte_abonnement_object'];
  1019.                 $data['user_type'] = 'btob';
  1020.                 if($isAbonnementProInCart){
  1021.                     if($cart->getAbonnementProCart()->getAbonnement()) {
  1022.                         if ($cart->getAbonnementProCart()->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_ENTREPRISE or $cart->getAbonnementProCart()->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_TEAM) {
  1023.                             $data['subscription_type'] = 'business';
  1024.                         } else {
  1025.                             $data['subscription_type'] = 'plus';
  1026.                         }
  1027.                     }
  1028.                 }else{
  1029.                     if($compteAbonnement->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_ENTREPRISE or $compteAbonnement->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_TEAM){
  1030.                         $data['subscription_type'] = 'business';
  1031.                     }else{
  1032.                         $data['subscription_type'] = 'plus';
  1033.                     }
  1034.                 }
  1035.             }
  1036.         }
  1037.         return $data;
  1038.     }
  1039.     public function checkIsAbonnementEntreprise($user){
  1040.         if(is_object($user)){
  1041.             $abonnement $this->cart_service->checkIsAbonnementPro($user);
  1042.             if($abonnement['is_abonnemen_pro']) { // check is admin in compte abonnement
  1043.                 $compteAbonnement $abonnement['compte_abonnement_object'];
  1044.                 if($compteAbonnement->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_ENTREPRISE){
  1045.                     return true;
  1046.                 }
  1047.             }
  1048.         }
  1049.         return false;
  1050.     }
  1051.     public function getFactureAbonnementByItemCommande($commande){
  1052.         $facture $this->em->getRepository(CompteAbonnementProCommandesFactures::class)->findByCommande($commande);
  1053.         return $facture;
  1054.     }
  1055.     public function formatPrixSpecifique($prix=0.00){
  1056.         $prix number_format((float)$prix,2);
  1057.         $tab explode('.',$prix);
  1058.         return $tab;
  1059.     }
  1060.     public function facturedateDiff($dateFirst,$dateLast){
  1061.         $array = array();
  1062.         if($dateFirst && $dateFirst && is_object($dateFirst->getStartAt())&& is_object($dateLast->getStartAt())){
  1063.             $date1 $dateFirst->getStartAt();
  1064.             $date2 $dateLast->getStartAt();
  1065.             $iterval $date2->diff($date1);
  1066.             $array = array();
  1067.             $beginYears =  (int)$date1->format('Y');
  1068.             $beginMounth =  (int)$date1->format('m');
  1069.             $mounthDiff = (int)$iterval->format('%m') + ((int)$iterval->format('%d') > 0) + ((int)$iterval->format('%y') * 12)  +  $beginMounth;
  1070.             $intl = new \IntlDateFormatter('fr', \IntlDateFormatter::LONG, \IntlDateFormatter::NONEnullnull'MMMM YYYY');
  1071.             for ($i=$beginMounth$i<=$mounthDiff;$i++){
  1072.                 $date = new \DateTime($beginYears.'-'.$beginMounth.'-01');
  1073.                 $array[$beginYears.'-'.$beginMounth.'-01'] = ucfirst($intl->format($date));
  1074.                 if($beginMounth 12 >=1){
  1075.                     $beginMounth 1;
  1076.                     $beginYears $beginYears 1;
  1077.                 }else{
  1078.                     $beginMounth++;
  1079.                 }
  1080.             }
  1081.             $array array_reverse($array);
  1082.         }
  1083.         return $this->twig->render('front/abonnement-pro/account/consommation/factureDateDiff.html.twig', [
  1084.             'dateFacture'=>$array
  1085.         ]);
  1086.     }
  1087.     public function getArticlesRss(){
  1088.         $arrContextOptions=array(
  1089.             "ssl"=>array(
  1090.                 "verify_peer"=>false,
  1091.                 "verify_peer_name"=>false,
  1092.             ),
  1093.         );
  1094.         $xml file_get_contents('http://blog.copees.com/category/articles/feed/',falsestream_context_create($arrContextOptions));
  1095.         $array= array();
  1096.         if($xml){
  1097.             libxml_use_internal_errors(true);
  1098.             $sxe simplexml_load_string($xml);
  1099.             if (!$sxe) {
  1100.                 return $array;
  1101.             }
  1102.             $feed = new \SimpleXMLElement($xml);
  1103.             if(isset($feed->channel->item)){
  1104.                 foreach ($feed->channel->item as $item){
  1105.                     $array[] = array(
  1106.                         'title' => $item->title,
  1107.                         'link' => $item->link,
  1108.                         'image' => isset($item->post_thumbnail->url)? $item->post_thumbnail->url :'',
  1109.                         'description' => substr ($item->description,0,strpos($item->description'<p>'1))
  1110.                     );
  1111.                 }
  1112.             }
  1113.         }
  1114.         return $array;
  1115.     }
  1116.     public function imagePdfExist($file){
  1117.         if(file_exists$this->params->get('fileImage_directory').'/'.$file)){
  1118.            return true;
  1119.         }
  1120.         return false;
  1121.     }
  1122.     public function productPdfImageExist($file){
  1123.         if(file_exists$this->params->get('productPdf_directory').'/'.$file)){
  1124.             return true;
  1125.         }
  1126.         return false;
  1127.     }
  1128.     public function fileDocClientExist($file){
  1129.         if(file_exists$this->params->get('uploads_directory').'/docClient/'.$file)){
  1130.             return true;
  1131.         }
  1132.         return false;
  1133.     }
  1134.     public function displayErreurOptionNotSelect(){
  1135.         $data $this->cart_service->checkOptionSelectReluire();
  1136.         $html '';
  1137.         if(!empty($data)){
  1138.             foreach ($data as $key => $item){
  1139.                 if(isset($item['valueReluire'])){
  1140.                     $html "<p>".$item['valueReluire'] ." ".$item['key']." </p>";
  1141.                 }else{
  1142.                     $html "<p>".$item['value'] ." ".$item['key']." </p>";
  1143.                 }
  1144.             }
  1145.         }
  1146.         return $html;
  1147.     }
  1148.     public function getNameFormat($id_format)
  1149.     {
  1150.         $format $this->em->getRepository(Attribut::class)->find($id_format);
  1151.         $string '';
  1152.         if($format){
  1153.             if(in_array($id_format,array(2,3))){
  1154.                 $string =  lcfirst($format->getName());
  1155.             }else{
  1156.                 $string =  $format->getName();
  1157.             }
  1158.         }
  1159.         return $string;
  1160.     }
  1161.     // nb_desiner
  1162.     public function getNamePapierGrammage($id_grammage)
  1163.     {
  1164.         $grammage $this->em->getRepository(Attribut::class)->find($id_grammage);
  1165.         $string '';
  1166.         if($grammage){
  1167.             $string =  $grammage->getNamePapier();
  1168.         }
  1169.         return $string;
  1170.     }
  1171.     public function getNameProduct($idProduct)
  1172.     {
  1173.         $product $this->em->getRepository(Product::class)->find((int)$idProduct);
  1174.         $string '';
  1175.         if($product){
  1176.             $string =  $product->getTypeProductName();
  1177.         }
  1178.         return $string;
  1179.     }
  1180.     public function getProductTypeById($idProduct)
  1181.     {
  1182.         $product $this->em->getRepository(Product::class)->find((int)$idProduct);
  1183.         $type '';
  1184.         if($product){
  1185.             $type =  $product->getTypeProduct();
  1186.         }
  1187.         return $type;
  1188.     }
  1189.     public function getProductById($idProduct)
  1190.     {
  1191.         $product $this->em->getRepository(Product::class)->find((int)$idProduct);
  1192.         return $product;
  1193.     }
  1194.     public function getAttribute($idAttr)
  1195.     {
  1196.         $attr $this->em->getRepository(Attribut::class)->find((int)$idAttr);
  1197.         return $attr;
  1198.     }
  1199.     public function getPrixTtcByQtyFinition($price,$finition)
  1200.     {
  1201.         if($finition== CartDetail::FINITION_GLACE){
  1202.             $price $price + ($priceCartDetail::POURCENTAGE_FINITION_GLACE);
  1203.         }else if ($finition== CartDetail::FINITION_MATE){
  1204.             $price $price + ($priceCartDetail::POURCENTAGE_FINITION_MATE);
  1205.         }else if ($finition== CartDetail::FINITION_REPOSITIONALBLE){
  1206.             $price $price + ($priceCartDetail::POURCENTAGE_FINITION_REPOSITIONALBLE);
  1207.         }else if ($finition== CartDetail::FINITION_TRANSPARENT){
  1208.             $price $price + ($priceCartDetail::POURCENTAGE_FINITION_TRANSPARENT);
  1209.         }else if ($finition== CartDetail::FINITION_SoftTouch){
  1210.             $price $price + ($priceCartDetail::POURCENTAGE_FINITION_SoftTouch);
  1211.         }else if ($finition== CartDetail::FINITION_Pelliculemat){
  1212.             $price $price + ($priceCartDetail::POURCENTAGE_FINITION_Pelliculemat);
  1213.         }else if ($finition== CartDetail::FINITION_PelliculeBrillant){
  1214.             $price $price + ($priceCartDetail::POURCENTAGE_FINITION_PelliculeBrillant);
  1215.         }
  1216.         return $price;
  1217.     }
  1218.     public function getPrixTtcByUserTemplate($id)
  1219.     {
  1220.         $userTemplate $this->em->getRepository(NbUserTemplates::class)->find($id);
  1221.         $priceProductAttr $this->em->getRepository(PriceProduct::class)->getProductAttributePriceByIdAndQty($userTemplate->getProductAttribute()->getId(), $userTemplate->getQuantite());
  1222.         if($userTemplate->getFinition() == CartDetail::FINITION_GLACE){
  1223.             $price $priceProductAttr->getPrixTtc() + $this->cart_service->getPricePourcentageAdd($priceProductAttr,$priceProductAttr->getPrixTtc()) + (($priceProductAttr->getPrixTtc() + $this->cart_service->getPricePourcentageAdd($priceProductAttr,$priceProductAttr->getPrixTtc()))* CartDetail::POURCENTAGE_FINITION_GLACE);
  1224.         }else if($userTemplate->getFinition() == CartDetail::FINITION_MATE){
  1225.             $price $priceProductAttr->getPrixTtc() + $this->cart_service->getPricePourcentageAdd($priceProductAttr,$priceProductAttr->getPrixTtc()) + (($priceProductAttr->getPrixTtc() + $this->cart_service->getPricePourcentageAdd($priceProductAttr,$priceProductAttr->getPrixTtc()))* CartDetail::POURCENTAGE_FINITION_MATE);
  1226.         }
  1227.         return $price;
  1228.     }
  1229.     // nb_desiner
  1230.     public function sortArrayByField($content$sort_by)
  1231.     {
  1232.         $array = array();
  1233.         if (is_a($content'Doctrine\ORM\PersistentCollection')) {
  1234.             $content $content->toArray();
  1235.         }
  1236.         if (!is_array($content)) {
  1237.             throw new \InvalidArgumentException('Variable passed to the sortByField filter is not an array');
  1238.         }else{
  1239.             foreach ($content as $item){
  1240.                 $array[$item[$sort_by]] = $item;
  1241.             }
  1242.         }
  1243.         if(empty($array))
  1244.             $array $content;
  1245.         uksort($array"strnatcmp");
  1246.         return $array;
  1247.     }
  1248.     public function getTitlePage($pathname){
  1249.         $pageMeta  $this->em->getRepository(Seo::class)->findOneByNameRoute($pathname);
  1250.         if($pageMeta){
  1251.             $str = !empty($pageMeta->getMetaTitle())?$pageMeta->getMetaTitle():'Copees';
  1252.         }else{
  1253.             $str 'Copees';
  1254.         }
  1255.         return $str;
  1256.     }
  1257.     public function getmetaDesciption($pathname){
  1258.         $pageMeta  $this->em->getRepository(Seo::class)->findOneByNameRoute($pathname);
  1259.         if($pageMeta){
  1260.             $str = !empty($pageMeta->getMetaDescription())?$pageMeta->getMetaDescription():'';
  1261.         }else{
  1262.             $str '';
  1263.         }
  1264.         return $str;
  1265.     }
  1266.     public function number_format($number){
  1267.         return number_format((float)$number,2);
  1268.     }
  1269.     public function getStatusCommande($status)
  1270.     {
  1271.         $string '';
  1272.         $color '';
  1273.         if($status == Stats::TERMINER){
  1274.             $string 'Terminé';
  1275.             $color 'color-green';
  1276.         }
  1277.         if($status == Stats::ENCOURT){
  1278.             $string 'En cours de préparation';
  1279.             $color 'color-orange';
  1280.         }
  1281.         if($status == Stats::TRAITEMENT_SAV){
  1282.             $string 'Traitement SAV';
  1283.             $color 'color-red';
  1284.         }
  1285.         return $string;
  1286.     }
  1287.     public function getCurrentStatusMerciFacteur($idSend)
  1288.     {
  1289.         $trakingMerciFacteur $this->merciFacteurService->currentStatusMerciFacteur($idSend);
  1290.         if($trakingMerciFacteur) {
  1291.             if (array_key_exists('statutPrintEnvoi'$trakingMerciFacteur)) {
  1292.                 return $trakingMerciFacteur['statutPrintEnvoi'];
  1293.             }
  1294.         }
  1295.     }
  1296.     public function getStatusString($status)
  1297.     {
  1298.         $string '';
  1299.         $color '';
  1300.         if($status == Stats::TERMINER){
  1301.             $string 'Payé';
  1302.             $color 'color-green';
  1303.         }
  1304.         if($status == Stats::ENCOURT){
  1305.             $string 'En cours de traitement';
  1306.             $color 'color-orange';
  1307.         }
  1308.         if($status == Stats::TRAITEMENT_SAV){
  1309.             $string 'Traitement SAV';
  1310.             $color 'color-red';
  1311.         }
  1312.         return "<span class='".$color."'>".$string."</span>";
  1313.     }
  1314.     public function getRestTemps($dateEnd,$order)
  1315.     {
  1316.         if($order->getCarrier()){
  1317.             if($order->getCarrier()->getNum() == Carrier::STUART){
  1318.                 $dateDebut = new \DateTime('now');
  1319.                 $diff $dateEnd->getTimestamp() - $dateDebut->getTimestamp();
  1320.                 if($diff ) {
  1321.                     $heurs 60 60;
  1322.                     if ($diff 60) {
  1323.                         $temps $diff 's';
  1324.                         $color 'color-red';
  1325.                     } else if ($diff $heurs) {
  1326.                         $min $diff 60;
  1327.                         if ($min 11) {
  1328.                             $color 'color-red';
  1329.                         } elseif ($min 10 && $min 45) {
  1330.                             $color 'color-orange';
  1331.                         } else {
  1332.                             $color 'color-green';
  1333.                         }
  1334.                         $temps = (int)$min 'min';
  1335.                     } else {
  1336.                         $h $diff $heurs;
  1337.                         $diffH $diff $heurs;
  1338.                         $min $diffH 60;
  1339.                         $temps = (int)$h 'h' . (($min 0) ? (int)$min '');
  1340.                         $color 'color-green';
  1341.                     }
  1342.                 }else{
  1343.                     $color =  'color-green';
  1344.                     $temps 0;
  1345.                 }
  1346.                 return "<span class='".$color."'>".$temps."</span>";
  1347.             }else{
  1348.                 return '';
  1349.             }
  1350.         }
  1351.         return '';
  1352.     }
  1353.     public function getDetailProduct($id_detail_product)
  1354.     {
  1355.         $orderrDetail $this->em->getRepository(OrderDetail::class)->find($id_detail_product);
  1356.         $product_attribute $orderrDetail->getProductAttribute();
  1357.         $array = array();
  1358.         $arrayReluire = array();
  1359.         if($product_attribute){
  1360.             if(in_array($orderrDetail->getTypeProduct(),array(Product::SIMPLE,Product::PAPIER,Product::PAPIER_POSTE))) {
  1361.                 if ($orderrDetail->getSouhaiteStr()) {
  1362.                     $array[] = $this->trans->trans('Type',[],'adminTranslate') .' '$this->trans->trans($this->cart_service->getSouhaiteStr($orderrDetail->getSouhaiteStr()),[],'productTranslate') . ' ';
  1363.                 }
  1364.             }else{
  1365. //                if ($orderrDetail->getIsTrait()) {
  1366. //                    $array[] = 'Document avec traits de coupe ' ;
  1367. //                }else{
  1368. //                    $array[] = 'Document sans traits de coupe ' ;
  1369. //                }
  1370.             }
  1371.             if($product_attribute->getFormat()){
  1372.                 if ($product_attribute->getProduct()->getTypeProduct() == Product::STICKERS_AUTOCOLLANT) {
  1373.                     $array[] = ' '.$this->trans->trans('Coupe',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getFormat()->getName(),[],'productTranslate').' ';
  1374.                 }else{
  1375.                     $array[] = ' '.$this->trans->trans('Format',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getFormat()->getName(),[],'productTranslate').' ';
  1376.                 }
  1377.             }
  1378.             if(in_array($orderrDetail->getProduct()->getTypeProduct(), [ Product::VITROPHANIE,Product::PAPIER_CADEAU,Product::ETIQUETTE_ROULEAU])){
  1379.                 $array[] = ' '.$this->trans->trans('Format',[],'adminTranslate').' '$orderrDetail->getFormatLargeur() . $this->trans->trans('cm (Largeur)',[],'adminTranslate').' | '.$orderrDetail->getFormatHauteur() .' '.$this->trans->trans('cm (Hauteur)',[],'adminTranslate'). ' ';
  1380.             }
  1381.             if($product_attribute->getGramage() && $product_attribute->getProduct()->getTypeProduct() == Product::PAPIER)
  1382.                 $array[] = ' '.$this->trans->trans('Gramage',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getGramage()->getNamePapier(),[],'productTranslate').' '.$this->trans->trans($product_attribute->getGramage()->getName(),[],'productTranslate').' ';
  1383.             else if($product_attribute->getGramage() && ($product_attribute->getProduct()->getTypeProduct() == Product::KAKEMONO or $product_attribute->getProduct()->getTypeProduct() == Product::PHOTOS  or $product_attribute->getProduct()->getTypeProduct() == Product::PHOTOS_ENCADRE))
  1384.                 $array[] = ' '.$this->trans->trans('Papier',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getGramage()->getName(),[],'productTranslate').' '.$this->trans->trans($product_attribute->getGramage()->getNamePapier(),[],'productTranslate').' ';
  1385.             else if($product_attribute->getGramage()) {
  1386.                 if ($product_attribute->getProduct()->getTypeProduct() == Product::STICKERS_AUTOCOLLANT) {
  1387.                     $array[] = ' '.$this->trans->trans('Format',[],'adminTranslate').' ' $this->trans->trans($product_attribute->getGramage()->getName(),[],'productTranslate') . ' ';
  1388.                 }else{
  1389.                     $array[] = ' '.$this->trans->trans('Gramage',[],'adminTranslate').' ' $this->trans->trans($product_attribute->getGramage()->getName(),[],'productTranslate') . ' ';
  1390.                 }
  1391.             }
  1392.             if(in_array($orderrDetail->getProduct()->getTypeProduct(), [ Product::VITROPHANIE,Product::PAPIER_CADEAU,Product::ETIQUETTE_ROULEAU])){
  1393.                 if ($product_attribute->getTypeFormat())
  1394.                     $array[] = ' '.$this->trans->trans('Coupe',[],'adminTranslate').' ' $this->trans->trans($product_attribute->getTypeFormat()->getName(),[],'productTranslate') . ' ';
  1395.             }else {
  1396.                 if ($product_attribute->getTypeFormat())
  1397.                     $array[] = ' '.$this->trans->trans('Composition',[],'adminTranslate').' ' $this->trans->trans($product_attribute->getTypeFormat()->getName(),[],'productTranslate') . ' ';
  1398.             }
  1399.             if($product_attribute->getSpecificite())
  1400.                 $array[] = ' '.$this->trans->trans('Coupe',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getSpecificite()->getName(),[],'productTranslate').' ';
  1401.             if($product_attribute->getTypeCouleur()) {
  1402.                 if (in_array($orderrDetail->getTypeProduct(), [Product::PHOTOS_ENCADRE])) {
  1403.                     $array[] = ' '.$this->trans->trans('Couleur du cadre',[],'adminTranslate').' ' $this->trans->trans($product_attribute->getTypeCouleur()->getName(),[],'productTranslate') . ' ';
  1404.                 } else {
  1405.                     $array[] = ' '.$this->trans->trans('Couleur',[],'adminTranslate').' ' $this->trans->trans($product_attribute->getTypeCouleur()->getName(),[],'productTranslate') . ' ';
  1406.                 }
  1407.             }
  1408.             if($product_attribute->getTaille())
  1409.                 $array[] = ' '.$this->trans->trans('Taille',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getTaille()->getName(),[],'productTranslate').' ';
  1410.             if($product_attribute->getZoneImpression())
  1411.                 $array[] = ' '.$this->trans->trans('Zone d’impression',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getZoneImpression()->getName(),[],'productTranslate').' ';
  1412.             if($product_attribute->getNbrCouleur()) {
  1413.                 if (in_array($orderrDetail->getTypeProduct(), [Product::PHOTOS_ENCADRE])) {
  1414.                     $array[] = ' '.$this->trans->trans('Effets',[],'adminTranslate').' ' $this->trans->trans($product_attribute->getNbrCouleur()->getName(),[],'productTranslate') . ' ';
  1415.                 } else {
  1416.                     $array[] = ' '.$this->trans->trans('Nombre de couleur du design',[],'adminTranslate').' ' $this->trans->trans($product_attribute->getNbrCouleur()->getName(),[],'productTranslate') . ' ';
  1417.                 }
  1418.             }
  1419.             if($product_attribute->getTypeImpression())
  1420.                 $array[] = ' '.$this->trans->trans('Type d\'impression',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getTypeImpression()->getName(),[],'productTranslate').' ';
  1421.             if($product_attribute->getSupportSuspension())
  1422.                 $array[] = ' '.$this->trans->trans('Support de suspension',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getSupportSuspension()->getName(),[],'productTranslate').' ';
  1423.             if($product_attribute->getTypeCarton())
  1424.                 $array[] =' '.$this->trans->trans('Type carton :',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getTypeCarton()->getName(),[],'productTranslate').' ';
  1425.             if($product_attribute->getOeille())
  1426.                 $array[] = ' '.$this->trans->trans('Oeille :',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getOeille()->getName(),[],'productTranslate').' ';
  1427.             if ($orderrDetail->getIsPlusVerification()) {
  1428.                 $array[] = ' '.$this->trans->trans('Avec option de vérification',[],'adminTranslate').' ';
  1429.             }
  1430.             if ($orderrDetail->getIsPlusBordsArrondis()) {
  1431.                 $array[] = ' '.$this->trans->trans('Bords arrondis',[],'adminTranslate').' ';
  1432.             }
  1433.             if ($orderrDetail->getIsPlusPlastification()) {
  1434.                 $array[] = ' '.$this->trans->trans('Avec Plastification',[],'adminTranslate').' ';
  1435.             }
  1436.             if ($orderrDetail->getIsEnveloppe()) {
  1437.                 $array[] = ' '.$this->trans->trans('Avec Enveloppe',[],'adminTranslate').' ';
  1438.             }
  1439.             if (!in_array($orderrDetail->getTypeProduct(), array(Product::SIMPLEProduct::PAPIERProduct::PAPIER_POSTE))) {
  1440.                 if ($orderrDetail->getFinition() == CartDetail::FINITION_GLACE) {
  1441.                     $array[] = ' '.$this->trans->trans('Finition glacée',[],'adminTranslate').' ';
  1442.                 }
  1443.                 if ($orderrDetail->getFinition() == CartDetail::FINITION_MATE) {
  1444.                     $array[] = ' '.$this->trans->trans('Finition mate',[],'adminTranslate').' ';
  1445.                 }
  1446.                 if ($orderrDetail->getFinition() == CartDetail::FINITION_REPOSITIONALBLE) {
  1447.                     $array[] = ' '.$this->trans->trans('Finition Repositionnable',[],'adminTranslate').' ';
  1448.                 }
  1449.                 if ($orderrDetail->getFinition() == CartDetail::FINITION_TRANSPARENT) {
  1450.                     $array[] = ' '.$this->trans->trans('Finition Transparent',[],'adminTranslate').' ';
  1451.                 }
  1452.                 if ($orderrDetail->getFinition() == CartDetail::FINITION_SoftTouch) {
  1453.                     $array[] = ' '.$this->trans->trans('Finition Soft Touch',[],'adminTranslate').' ';
  1454.                 }
  1455.                 if ($orderrDetail->getFinition() == CartDetail::FINITION_Pelliculemat) {
  1456.                     $array[] = ' '.$this->trans->trans('Finition Pelliculé mat',[],'adminTranslate').' ';
  1457.                 }
  1458.                 if ($orderrDetail->getFinition() == CartDetail::FINITION_PelliculeBrillant) {
  1459.                     $array[] = ' '.$this->trans->trans('Finition Pelliculé Brillant',[],'adminTranslate').' ';
  1460.                 }
  1461.             }
  1462.             if($orderrDetail->getProduct()->getIsColorLab()){
  1463.             }else {
  1464.                 if ($orderrDetail->getAccessoires()) {
  1465.                     foreach ($orderrDetail->getAccessoires() as $item) {
  1466.                         if ($item->getAccessoire()) {
  1467.                             if ($item->getAccessoire()->getTypeAccessoire() == Accessoire::COULEUR) {
  1468.                                 $array[] = $this->trans->trans($item->getAccessoire()->getName(),[],'productTranslate') . ' ';
  1469.                             }
  1470.                         }
  1471.                     }
  1472.                 }
  1473.                 if ($product_attribute->getProduct()->getTypeProduct() != Product::AFFICHE) {
  1474.                     if ($product_attribute->getRectoverso()) {
  1475.                         if ($product_attribute->getRectoverso() == ProductAttribute::RECTO) {
  1476.                             $array[] = ' '.$this->trans->trans('Recto',[],'adminTranslate').' ';
  1477.                         } else {
  1478.                             $array[] = ' '.$this->trans->trans('Recto & Verso',[],'adminTranslate').' ';
  1479.                         }
  1480.                     }
  1481.                 }
  1482.                 if ($orderrDetail->getPetitCote()) {
  1483.                     $array[] = ' '.$this->trans->trans('Petit côté',[],'adminTranslate').' ';
  1484.                 }
  1485.                 if ($orderrDetail->getGrandCote()) {
  1486.                     $array[] = ' '.$this->trans->trans('Grand côté',[],'adminTranslate').' ';
  1487.                 }
  1488.                 if ($orderrDetail->getIsReluire()) {
  1489.                     $array[] = ' '.$this->trans->trans('Reliure',[],'adminTranslate').' ';
  1490.                 }
  1491.                 if ($orderrDetail->getImprimSansMarge()) {
  1492.                     $array[] = ' '.$this->trans->trans('Imprimer sans marges',[],'adminTranslate').' ';
  1493.                 }
  1494.                 if ($orderrDetail->getIsDecoupeDoc()) {
  1495.                     $array[] = ' '.$this->trans->trans('Document avec coupe',[],'adminTranslate').' ';
  1496.                 }
  1497.                 if ($orderrDetail->getIsPlusExpert()) {
  1498.                     $array[] = ' '.$this->trans->trans('Avec Expert Copees',[],'adminTranslate').' ';
  1499.                 }
  1500.                 if ($orderrDetail->getMauvaisFormat() == '1') {
  1501.                     $array[] = ' '.$this->trans->trans('le doc sera imprimer avec un bord blancs de 5mm.',[],'adminTranslate').' ';
  1502.                 }
  1503.                 if (!in_array($orderrDetail->getTypeProduct(), array(Product::SIMPLEProduct::PAPIERProduct::PAPIER_POSTE))) {
  1504.                     if ($orderrDetail->getIsMaCrea()) {
  1505.                         $array[] = ' '.$this->trans->trans('Document importé',[],'adminTranslate').' ';
  1506.                     } else {
  1507.                         $array[] = ' '.$this->trans->trans('Document crée',[],'adminTranslate').' ';
  1508.                     }
  1509.                 }
  1510.             }
  1511.         }
  1512.         if($orderrDetail->getAccessoires()){
  1513.             foreach ($orderrDetail->getAccessoires() as $item){
  1514.                 if($item->getAccessoire()->getTypeAccessoire() == Accessoire::RELUIRE){
  1515.                     $arrayReluire[] = $this->trans->trans($item->getAccessoire()->getName(),[],'productTranslate');
  1516.                     if($item->getPetitCote()){
  1517.                         $arrayReluire[] = ' '.$this->trans->trans('Petit côté',[],'adminTranslate').' ';
  1518.                     }
  1519.                     if($item->getGrandCote()){
  1520.                         $arrayReluire[] = ' '.$this->trans->trans('Grand côté',[],'adminTranslate').' ';
  1521.                     }
  1522.                     if($item->getPapierCovertureMat()){
  1523.                         if($item->getAccessoire()->getTypeReluire() == Accessoire::TYPE_RELUIRE_POINT_METAL){
  1524.                             $arrayReluire[] = ' '.$this->trans->trans('Papier Mat 160g',[],'adminTranslate').' ';
  1525.                         }elseif($item->getAccessoire()->getTypeReluire() == Accessoire::TYPE_RELUIRE_DOS_PIQUEE){
  1526.                             $arrayReluire[] = ' '.$this->trans->trans('Papier Mat 160g',[],'adminTranslate').' ';
  1527.                         }else{
  1528.                             $arrayReluire[] = ' '.$this->trans->trans('Papier 300G Mat',[],'adminTranslate').' ';
  1529.                         }
  1530.                     }
  1531.                     if($item->getPapierCovertureBrillant()){
  1532.                         if($item->getAccessoire()->getTypeReluire() == Accessoire::TYPE_RELUIRE_POINT_METAL) {
  1533.                             $arrayReluire[] = ' '.$this->trans->trans('Papier brillant 160g',[],'adminTranslate').' ';
  1534.                         }elseif($item->getAccessoire()->getTypeReluire() == Accessoire::TYPE_RELUIRE_DOS_PIQUEE) {
  1535.                             $arrayReluire[] = ' '.$this->trans->trans('Papier brillant 160g',[],'adminTranslate').' ';
  1536.                         }else{
  1537.                             $arrayReluire[] = ' '.$this->trans->trans('Papier 300G brillant',[],'adminTranslate').' ';
  1538.                         }
  1539.                     }
  1540.                     if($item->getCouleur()){
  1541.                         $arrayReluire[] =' '.$this->trans->trans('Couleur',[],'adminTranslate').' '$this->trans->trans($item->getAccessoire()->getName(),[],'productTranslate').': '.$this->trans->trans($this->getColor($item->getCouleur()),[],'productTranslate');
  1542.                     }
  1543.                     if($item->getCouleurDos()){
  1544.                         $arrayReluire[] = ' '.$this->trans->trans('Couleur dos:',[],'adminTranslate').' '.$this->getColor($item->getCouleurDos());
  1545.                     }
  1546.                 }
  1547.             }
  1548.         }
  1549.         $str =implode(',',$array);
  1550.         $strReluire = !empty($arrayReluire)? '('.implode(',',$arrayReluire).')':'';
  1551.         return $str.$strReluire;
  1552.     }
  1553.     public function getPourcentage($a,$total){
  1554.         if($a== 0){
  1555.             return 0;
  1556.         }else{
  1557.             $poucentage $total $a ;
  1558.             return round((100 $poucentage),2);
  1559.         }
  1560.     }
  1561.     public function getValByJson($json,$key=null){
  1562.         if(!$key)
  1563.             return json_decode($json,true);
  1564.         $couleur = [];
  1565.         if($json){
  1566.             $couleur json_decode($json,true);
  1567.         }
  1568.         return (isset($couleur[$key]))?$couleur[$key]:null;
  1569.     }
  1570.     public function getPriceTotalTtc($cartId){
  1571.         $cart $this->em->getRepository(Cart::class)->find($cartId);
  1572.         $priceTtc 0;
  1573.         if($cart){
  1574.             if($cart->getIsPromo()){
  1575.                 $priceTtc ="<strike>".number_format((float)$cart->getPrixTtc(),2)."€</strike>".  number_format((float)$cart->getPrixTtcReduction(),2)." €";
  1576.              }else{
  1577.                 $priceTtc =number_format((float)$cart->getPrixTtc(),2) ." €";
  1578.             }
  1579.         }
  1580.         return  $priceTtc;
  1581.     }
  1582.     public function getPriceTotalHt($cartId){
  1583.         $cart $this->em->getRepository(Cart::class)->find($cartId);
  1584.         $priceHt 0;
  1585.         if($cart){
  1586.             if($cart->getIsPromo()){
  1587.                 $priceHt ="<strike>".number_format((float)$cart->getPrixHt(),2)."€</strike>".  number_format((float)$cart->getPrixHtReduction(),2)." €";
  1588.             }else{
  1589.                 $priceHt =number_format((float)$cart->getPrixHt(),2) ." €";
  1590.             }
  1591.         }
  1592.         return $priceHt;
  1593.     }
  1594.     public function checkColor($arrayAcc,$idAcc){
  1595.         foreach ($arrayAcc as $item){
  1596.             if($item->getAccessoire()) {
  1597.                 if ($item->getAccessoire()->getId() == $idAcc && $item->getAccessoire()->getTypeAccessoire() == Accessoire::COULEUR) {
  1598.                     return true;
  1599.                 }
  1600.             }
  1601.         }
  1602.         return false;
  1603.     }
  1604.     public function getAccessoireReluire($cartDetailId){
  1605.         $accReluire $this->em->getRepository(CartDetailAccessoire::class)->getAccessoire(Accessoire::RELUIRE,$cartDetailId);
  1606.         return $accReluire ;
  1607.     }
  1608.     public function displayColorD($cartDetailId ,$id_accessoire,$stringColor){
  1609.         $accReluire $this->em->getRepository(CartDetailAccessoire::class)->getAccessoire(Accessoire::RELUIRE,$cartDetailId);
  1610.         if($accReluire){
  1611.             if($accReluire->getAccessoire()->getId() == $id_accessoire && $accReluire->getCouleurDos() == $stringColor){
  1612.                 return true;
  1613.             }
  1614.         }
  1615.         return false ;
  1616.     }
  1617.     public function displayColorR($cartDetailId ,$id_accessoire,$stringColor){
  1618.         $accReluire $this->em->getRepository(CartDetailAccessoire::class)->getAccessoire(Accessoire::RELUIRE,$cartDetailId);
  1619.         if($accReluire){
  1620.             if($accReluire->getAccessoire()->getId() == $id_accessoire && $accReluire->getCouleur() == $stringColor){
  1621.                 return true;
  1622.             }
  1623.         }
  1624.         return false ;
  1625.     }
  1626.     public function getColor($color){
  1627.         switch ($color){
  1628.             case 'colorBlackDos':
  1629.                 $colorSting 'Noir';
  1630.                 break;
  1631.             case 'colorBlancDos':
  1632.                 $colorSting 'Blanc';
  1633.                 break;
  1634.             case 'colorBlueDos':
  1635.                 $colorSting 'Blue';
  1636.                 break;
  1637.             case 'colorGreenDos':
  1638.                 $colorSting 'Vert';
  1639.                 break;
  1640.             case 'colorRedDos':
  1641.                 $colorSting 'Rouge';
  1642.                 break;
  1643.             case 'colorYellowDos':
  1644.                 $colorSting 'Jaune';
  1645.                 break;
  1646.             case 'colorTransDos':
  1647.                 $colorSting 'Transparent';
  1648.                 break;
  1649.             case 'colorBlackR':
  1650.                 $colorSting 'Noir';
  1651.                 break;
  1652.             case 'colorBlancR':
  1653.                 $colorSting 'Blanc';
  1654.                 break;
  1655.             case 'colorBlueR':
  1656.                 $colorSting 'Blue';
  1657.                 break;
  1658.             case 'colorGreenR':
  1659.                 $colorSting 'Vert';
  1660.                 break;
  1661.             case 'colorRedR':
  1662.                 $colorSting 'Rouge';
  1663.                 break;
  1664.             case 'colorYellowR':
  1665.                 $colorSting 'Jaune';
  1666.                 break;
  1667.             case 'colorTransR':
  1668.                 $colorSting 'Transparent';
  1669.                 break;
  1670.             default:
  1671.                 $colorSting =  "";
  1672.         }
  1673.         return $colorSting ;
  1674.     }
  1675.     public function getproductOptionPapier($cartDetailId ){
  1676.         $cartDetail $this->em->getRepository(CartDetail::class)->find($cartDetailId);
  1677.         if($cartDetail){
  1678.             return $this->twig->render('front/panier/block_option_papier.html.twig', [
  1679.                 'cartDetail' => $cartDetail,
  1680.             ]);
  1681.         }
  1682.         return false ;
  1683.     }
  1684.     public function getproductOptionCarteAndFlyer($cartDetailId ){
  1685.         $cartDetail $this->em->getRepository(CartDetail::class)->find($cartDetailId);
  1686.         if($cartDetail){
  1687.             return $this->twig->render('front/panier/block_option_carte_flyer.html.twig', [
  1688.                 'cartDetail' => $cartDetail,
  1689.             ]);
  1690.         }
  1691.         return false ;
  1692.     }
  1693.     public function getproductOptionAffiche($cartDetailId ){
  1694.         $cartDetail $this->em->getRepository(CartDetail::class)->find($cartDetailId);
  1695.         if($cartDetail){
  1696.             return $this->twig->render('front/panier/block_option_affiche.html.twig', [
  1697.                 'cartDetail' => $cartDetail,
  1698.             ]);
  1699.         }
  1700.         return false ;
  1701.     }
  1702.     public function getproductOptionDistribution($distribution ){
  1703.         if(is_object($distribution)){
  1704.             return $this->twig->render('front/panier/block_distribution.html.twig', [
  1705.                 'distribution' => $distribution,
  1706.             ]);
  1707.         }
  1708.         return false ;
  1709.     }
  1710.     public function getPriceDistribution($id){
  1711.         $cart $this->em->getRepository(Cart::class)->find($id);
  1712.         $prixHt 0;
  1713.         $prixTtc 0;
  1714.         if($cart){
  1715.             if (count($cart->getDistributionCart()) > 0) {
  1716.                 foreach ($cart->getDistributionCart() as $detail) {
  1717.                     $prixHt += $detail->getPrixHt();
  1718.                     $prixTtc += $detail->getPrixTtc();
  1719.                 }
  1720.             }
  1721.         }
  1722.         return array(
  1723.             'prixHt' => $prixHt,
  1724.             'prixTtc' => $prixTtc
  1725.         ) ;
  1726.     }
  1727.     public function getInfoOrder($id){
  1728.         $order $this->em->getRepository(Orders::class)->find($id);
  1729.         if($order){
  1730.             return $this->twig->render('front/myaccount/infoOrder.html.twig', [
  1731.                 'order' => $order,
  1732.             ]);
  1733.         }
  1734.         return false ;
  1735.     }
  1736.     public function isProductPoste($id){
  1737.         $cart $this->em->getRepository(Cart::class)->find($id);
  1738.         if($cart){
  1739.             if (count($cart->getCartDetail()) > 0) {
  1740.                 foreach ($cart->getCartDetail() as $detail) {
  1741.                     if($detail->getTypeProduct() == Product::PAPIER_POSTE){
  1742.                         return true;
  1743.                     }
  1744.                 }
  1745.             }
  1746.         }
  1747.         return false ;
  1748.     }
  1749.     public function listFont(){
  1750.         $listFont $this->nbDesigner->getListFonttyle();
  1751.         ksort ($listFont);
  1752.         return $listFont;
  1753.     }
  1754.     public function getTitlePageS($pathname){
  1755.         $pageMeta  $this->em->getRepository(Seo::class)->findOneByNameRoute($pathname);
  1756.         if($pageMeta){
  1757.             $str = !empty($pageMeta->getTitre())?$pageMeta->getTitre():null;
  1758.         }else{
  1759.             $str null;
  1760.         }
  1761.         return $str;
  1762.     }
  1763.     public function getDesciptionS($pathname){
  1764.         $pageMeta  $this->em->getRepository(Seo::class)->findOneByNameRoute($pathname);
  1765.         if($pageMeta){
  1766.             $str = !empty($pageMeta->getContent())?$pageMeta->getContent():null;
  1767.         }else{
  1768.             $str null;
  1769.         }
  1770.         return $str;
  1771.     }
  1772. }
  1773.