<?php
namespace App\Twig;
use App\Entity\AbonnementPay;
use App\Entity\AbonnementPro;
use App\Entity\Accessoire;
use App\Entity\AccueilElement;
use App\Entity\Attribut;
use App\Entity\AttributLang;
use App\Entity\BandeauHomePage;
use App\Entity\BandeauRose;
use App\Entity\BesoinProductFavoris;
use App\Entity\BesoinProductPage;
use App\Entity\BesoinProductPageBannier;
use App\Entity\BesoinProductPageCategory;
use App\Entity\BesoinProductPageHeader;
use App\Entity\BesoinProductPageHeaderLang;
use App\Entity\BesoinProductPageHeaderMobile;
use App\Entity\BesoinProductPagePreferenceCategory;
use App\Entity\BesoinProductPagePreferenceCategorySous;
use App\Entity\CaptchaCus;
use App\Entity\CaptchaCus2;
use App\Entity\Carrier;
use App\Entity\Cart;
use App\Entity\CartDetail;
use App\Entity\CartDetailAccessoire;
use App\Entity\CompteAbonnementPro;
use App\Entity\CompteAbonnementProCommandes;
use App\Entity\CompteAbonnementProCommandesFactures;
use App\Entity\ConfigProductDescription;
use App\Entity\ConfigWording;
use App\Entity\Customer;
use App\Entity\FavoriLiseuse;
use App\Entity\FilesClientCrelloCategory;
use App\Entity\FormatCatSouhaite;
use App\Entity\LanguageCountry;
use App\Entity\MenuBurger;
use App\Entity\MenuVerticalAcceuil;
use App\Entity\NbUserTemplates;
use App\Entity\NosCrea;
use App\Entity\OrderDetail;
use App\Entity\Orders;
use App\Entity\PriceProduct;
use App\Entity\Product;
use App\Entity\ProductAttribute;
use App\Entity\ProductCountry;
use App\Entity\ProductLang;
use App\Entity\Seo;
use App\Entity\Stats;
use App\Entity\TabAbonnement;
use App\Entity\TabAbonnementCategory;
use App\Entity\TemplatesPage;
use App\Entity\TemplatesPageCategory;
use App\Form\AccueilElementType;
use App\Form\CaptchaCus2Type;
use App\Form\CaptchaCusType;
use App\Services\CartService;
use App\Services\Liseuse;
use App\Services\MenuBurgerService;
use App\Services\MerciFacteur;
use App\Services\NbDesigner;
use App\Services\OrderService;
use App\Services\StripeConnect;
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\Routing\RouterInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
use Twig\Extension\AbstractExtension;
use Twig\TwigFilter;
use Twig\TwigFunction;
use Twig\Environment;
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
class AppExtension extends AbstractExtension
{
private $twig;
private $liseuse_service;
private $nbDesigner;
private $merciFacteurService;
private $params;
private $order_service;
private $session;
private $router;
public function __construct(
Environment $twig,
Liseuse $liseuse_service,
EntityManagerInterface $em,
NbDesigner $nbDesigner,
MerciFacteur $merciFacteur,
ParameterBagInterface $params,
CartService $cart_service,
OrderService $order_service,
FormFactoryInterface $form,
MenuBurgerService $menuService,
SessionInterface $session,
RouterInterface $router,
StripeConnect $stripeConnect,
TranslatorInterface $trans
) {
$this->twig = $twig;
$this->em = $em;
$this->liseuse_service = $liseuse_service;
$this->nbDesigner = $nbDesigner;
$this->merciFacteurService = $merciFacteur;
$this->cart_service = $cart_service;
$this->params = $params;
$this->order_service = $order_service;
$this->form = $form;
$this->session = $session;
$this->menuService = $menuService;
$this->router = $router;
$this->stripeConnect = $stripeConnect;
$this->trans = $trans;
}
public function getFunctions()
{
return [
new TwigFunction('getRestTemps', [$this, 'getRestTemps']),
new TwigFunction('getDetailProduct', [$this, 'getDetailProduct']),
new TwigFunction('getStatusString', [$this, 'getStatusString']),
new TwigFunction('getPourcentage', [$this, 'getPourcentage']),
new TwigFunction('getValByJson', [$this, 'getValByJson']),
new TwigFunction('getPriceTotalTtc', [$this, 'getPriceTotalTtc']),
new TwigFunction('getPriceTotalHt', [$this, 'getPriceTotalHt']),
new TwigFunction('checkColor', [$this, 'checkColor']),
new TwigFunction('getAccessoireReluire', [$this, 'getAccessoireReluire']),
new TwigFunction('displayColorD', [$this, 'displayColorD']),
new TwigFunction('displayColorR', [$this, 'displayColorR']),
new TwigFunction('getproductOptionPapier', [$this, 'getproductOptionPapier']),
new TwigFunction('getproductOptionCarteAndFlyer', [$this, 'getproductOptionCarteAndFlyer']),
new TwigFunction('getproductOptionDistribution', [$this, 'getproductOptionDistribution']),
new TwigFunction('getColor', [$this, 'getColor']),
new TwigFunction('number_format', [$this, 'number_format']),
new TwigFunction('getInfoOrder', [$this, 'getInfoOrder']),
new TwigFunction('getStatusCommande', [$this, 'getStatusCommande']),
new TwigFunction('isProductPoste', [$this, 'isProductPoste']),
new TwigFunction('getTitlePage', [$this, 'getTitlePage']),
new TwigFunction('getmetaDesciption', [$this, 'getmetaDesciption']),
new TwigFunction('listFont', [$this, 'listFont']),
new TwigFunction('getPriceDistribution', [$this, 'getPriceDistribution']),
new TwigFunction('getCurrentStatusMerciFacteur', [$this, 'getCurrentStatusMerciFacteur']),
new TwigFunction('getNameFormat', [$this, 'getNameFormat']),
new TwigFunction('displayErreurOptionNotSelect', [$this, 'displayErreurOptionNotSelect']),
new TwigFunction('getNamePapierGrammage', [$this, 'getNamePapierGrammage']),
new TwigFunction('getNameProduct', [$this, 'getNameProduct']),
new TwigFunction('getPrixTtcByQtyFinition', [$this, 'getPrixTtcByQtyFinition']),
new TwigFunction('getPrixTtcByUserTemplate', [$this, 'getPrixTtcByUserTemplate']),
new TwigFunction('getTitlePageS', [$this, 'getTitlePageS']),
new TwigFunction('getDesciptionS', [$this, 'getDesciptionS']),
new TwigFunction('getArticlesRss', [$this, 'getArticlesRss']),
new TwigFunction('getproductOptionAffiche', [$this, 'getproductOptionAffiche']),
new TwigFunction('imagePdfExist', [$this, 'imagePdfExist']),
new TwigFunction('productPdfImageExist', [$this, 'productPdfImageExist']),
new TwigFunction('facturedateDiff', [$this, 'facturedateDiff']),
new TwigFunction('formatPrixSpecifique', [$this, 'formatPrixSpecifique']),
new TwigFunction('getFactureAbonnementByItemCommande', [$this, 'getFactureAbonnementByItemCommande']),
new TwigFunction('getMenuAbonnement', [$this, 'getMenuAbonnement']),
new TwigFunction('checkIsAbonnementEntreprise', [$this, 'checkIsAbonnementEntreprise']),
new TwigFunction('checkIsAbonnementPro', [$this, 'checkIsAbonnementPro']),
new TwigFunction('checkIsAbonnementProCart', [$this, 'checkIsAbonnementProCart']),
new TwigFunction('getNameAbonnementPro', [$this, 'getNameAbonnementPro']),
new TwigFunction('getNameAbonnementProString', [$this, 'getNameAbonnementProString']),
new TwigFunction('getRetribution', [$this, 'getRetribution']),
new TwigFunction('getIntervalDate', [$this, 'getIntervalDate']),
new TwigFunction('getPriceDifference', [$this, 'getPriceDifference']),
new TwigFunction('checkAbonnementImpay', [$this, 'checkAbonnementImpay']),
new TwigFunction('getAfterPoucentage', [$this, 'getAfterPoucentage']),
new TwigFunction('getPriceProductAfterPoucentage', [$this, 'getPriceProductAfterPoucentage']),
new TwigFunction('checkabonnementPlus', [$this, 'checkabonnementPlus']),
new TwigFunction('getPriceLivraison30Min', [$this, 'getPriceLivraison30Min']),
new TwigFunction('getProductByType', [$this, 'getProductByType']),
new TwigFunction('getNbrOrderValide', [$this, 'getNbrOrderValide']),
new TwigFunction('getBrowser', [$this, 'getBrowser']),
new TwigFunction('getProductsWithoutPapier', [$this, 'getProductsWithoutPapier']),
new TwigFunction('getProductsWithoutPapierAndNotColorLab', [$this, 'getProductsWithoutPapierAndNotColorLab']),
new TwigFunction('getDistinctCarrierOrderDetail', [$this, 'getDistinctCarrierOrderDetail']),
new TwigFunction('getDistinctCarrierOrderDetailMultipleAdresse', [$this, 'getDistinctCarrierOrderDetailMultipleAdresse']),
new TwigFunction('getNbrCart', [$this, 'getNbrCart']),
new TwigFunction('getGramagePapier', [$this, 'getGramagePapier']),
new TwigFunction('getAbreviation', [$this, 'getAbreviation']),
new TwigFunction('getCharteGraphiqueB2bData', [$this, 'getCharteGraphiqueB2bData']),
new TwigFunction('getCommandesByUserAndByCompte', [$this, 'getCommandesByUserAndByCompte']),
new TwigFunction('getCategoryFileCrello', [$this, 'getCategoryFileCrello']),
new TwigFunction('getNotifOrderB2bNotRead', [$this, 'getNotifOrderB2bNotRead']),
new TwigFunction('getNotifB2bNotRead', [$this, 'getNotifB2bNotRead']),
new TwigFunction('fileDocClientExist', [$this, 'fileDocClientExist']),
new TwigFunction('checkIsComptableAboPro', [$this, 'checkIsComptableAboPro']),
new TwigFunction('captchaCus', [$this, 'captchaCus']),
new TwigFunction('captchaCus2', [$this, 'captchaCus2']),
new TwigFunction('getPrixDistribution', [$this, 'getPrixDistribution']),
new TwigFunction('gePriceCartWithAbonnementPro', [$this, 'gePriceCartWithAbonnementPro']),
new TwigFunction('checkIsAbonnementProIsActive', [$this, 'checkIsAbonnementProIsActive']),
new TwigFunction('getAllCompteAbonnementProDistinct', [$this, 'getAllCompteAbonnementProDistinct']),
new TwigFunction('getCompteAbonnementProByIds', [$this, 'getCompteAbonnementProByIds']),
new TwigFunction('getProductsPromo', [$this, 'getProductsPromo']),
new TwigFunction('getProductsNew', [$this, 'getProductsNew']),
new TwigFunction('getProductsLuxe', [$this, 'getProductsLuxe']),
new TwigFunction('getProductsPanier', [$this, 'getProductsPanier']),
new TwigFunction('getProductsMoment', [$this, 'getProductsMoment']),
new TwigFunction('getAttrSoon', [$this, 'getAttrSoon']),
new TwigFunction('getPriceTextByFormatAndProduct', [$this, 'getPriceTextByFormatAndProduct']),
new TwigFunction('getAttrbyFormatAndProduct', [$this, 'getAttrbyFormatAndProduct']),
new TwigFunction('getProductTypeById', [$this, 'getProductTypeById']),
new TwigFunction('getProductById', [$this, 'getProductById']),
new TwigFunction('getAttribute', [$this, 'getAttribute']),
new TwigFunction('getElemenTabAbonnement', [$this, 'getElemenTabAbonnement']),
new TwigFunction('configsLabelPopGabarit', [$this, 'configsLabelPopGabarit']),
new TwigFunction('getAllActiveByCategoryBesoinProduct', [$this, 'getAllActiveByCategoryBesoinProduct']),
new TwigFunction('getAllActiveByCategoryBesoinProductMerchPack', [$this, 'getAllActiveByCategoryBesoinProductMerchPack']),
new TwigFunction('getAllActiveByCategoryTemplatesPage', [$this, 'getAllActiveByCategoryTemplatesPage']),
new TwigFunction('getAllCategoryActiveTemplatesPage', [$this, 'getAllCategoryActiveTemplatesPage']),
new TwigFunction('getAllActiveByPreferenceCategorySousBesoinProduct', [$this, 'getAllActiveByPreferenceCategorySousBesoinProduct']),
new TwigFunction('getAllActiveByPreferenceCategoryBesoinProduct', [$this, 'getAllActiveByPreferenceCategoryBesoinProduct']),
new TwigFunction('getAllCategoryActiveBesoinProduct', [$this, 'getAllCategoryActiveBesoinProduct']),
new TwigFunction('getAllCategoryActiveBesoinProductMerchPack', [$this, 'getAllCategoryActiveBesoinProductMerchPack']),
new TwigFunction('getTypeUserAndAboTagGoogle', [$this, 'getTypeUserAndAboTagGoogle']),
new TwigFunction('getCustomerByUser', [$this, 'getCustomerByUser']),
new TwigFunction('getMerchPackByProductImage', [$this, 'getMerchPackByProductImage']),
new TwigFunction('getFavorisIcone', [$this, 'getFavorisIcone']),
new TwigFunction('getFavorisProduct', [$this, 'getFavorisProduct']),
new TwigFunction('getMenuBurgerFront', [$this, 'getMenuBurgerFront']),
new TwigFunction('getMenuVerticalFront', [$this, 'getMenuVerticalFront']),
new TwigFunction('getAccueilElement', [$this, 'getAccueilElement']),
new TwigFunction('getPourcentageParPaysAndProduct', [$this, 'getPourcentageParPaysAndProduct']),
new TwigFunction('getDisponibiliteParPaysAndProduct', [$this, 'getDisponibiliteParPaysAndProduct']),
new TwigFunction('getDisponibiliteProductPerCountrySession', [$this, 'getDisponibiliteProductPerCountrySession']),
new TwigFunction('getDisponibiliteProductPapierPerCountrySession', [$this, 'getDisponibiliteProductPapierPerCountrySession']),
new TwigFunction('getCountrySession', [$this, 'getCountrySession']),
new TwigFunction('routeExists', [$this, 'routeExists']),
new TwigFunction('getPourcentageRate', [$this, 'getPourcentageRate']),
new TwigFunction('checkAttributeNonAffiche', [$this, 'checkAttributeNonAffiche']),
new TwigFunction('getBandeauDescription', [$this, 'getBandeauDescription']),
new TwigFunction('getBandeauRoseBTC', [$this, 'getBandeauRoseBTC']),
new TwigFunction('getBandeauRoseBTB', [$this, 'getBandeauRoseBTB']),
new TwigFunction('getBandeauRoseABP', [$this, 'getBandeauRoseABP']),
new TwigFunction('getAllProduct', [$this, 'getAllProduct']),
new TwigFunction('getCompteB2cByIds', [$this, 'getCompteB2cByIds']),
new TwigFunction('getNotifB2cNotRead', [$this, 'getNotifB2cNotRead']),
new TwigFunction('getConfigWording', [$this, 'getConfigWording']),
new TwigFunction('checkWalletB2bCart', [$this, 'checkWalletB2bCart']),
new TwigFunction('besoinProductHeader', [$this, 'besoinProductHeader']),
new TwigFunction('besoinProductHeaderMobile', [$this, 'besoinProductHeaderMobile']),
new TwigFunction('getCardByPaiementIntent', [$this, 'getCardByPaiementIntent']),
new TwigFunction('getDetailFavoris', [$this, 'getDetailFavoris']),
new TwigFunction('getImagesBanniere', [$this, 'getImagesBanniere']),
new TwigFunction('getDescriptionAttributeLang', [$this, 'getDescriptionAttributeLang']),
new TwigFunction('getImageProductLang', [$this, 'getImageProductLang']),
new TwigFunction('getImageBesoinProductHeaderLang', [$this, 'getImageBesoinProductHeaderLang']),
new TwigFunction('ceilFunction', [$this, 'ceilFunction']),
new TwigFunction('catLiseuseConfig', [$this, 'catLiseuseConfig']),
new TwigFunction('getTotalPromoByVal', [$this, 'getTotalPromoByVal']),
new TwigFunction('triTableQuantity', [$this, 'triTableQuantity']),
];
}
public function ceilFunction($number){
if($number){
return ceil($number);
}
return 0;
}
private function cmpDefault($a, $b) {
return strcmp($a['isDefault'], $b['isDefault']);
}
private function cmpId($a, $b) {
return ($a['id'] < $b['id']) ? -1 : 1;
}
public function triTableQuantity($qtys){
$isDefault = false;
if($qtys){
// foreach ($qtys as $qty){
// if($qty['isDefault']){
// $isDefault = true;
// break;
// }
// }
// if($isDefault){
// usort($qtys, array($this, "cmpDefault"));
// }else{
// usort($qtys, array($this, "cmpId"));
// }
usort($qtys, array($this, "cmpId"));
}
return $qtys;
}
public function getTotalPromoByVal($cart,$val){
$val = $this->cart_service->getTotalPromoByVal($cart,$val);
return $val ;
}
public function catLiseuseConfig(){
$array = [];
$cat1 = $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_DOC);
$cat2 = $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_BROCHURE);
$cat3 = $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_lIVRES);
$cat4 = $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_CATALOGES);
$cat5 = $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_LIVRETS);
$cat6 = $this->liseuse_service->getConfigByCatIdsLiseuse(CartDetail::SOUHAITE_RAPORT);
$array[CartDetail::SOUHAITE_DOC]['cat'] = CartDetail::SOUHAITE_DOC;
$array[CartDetail::SOUHAITE_DOC]['value'] = $cat1;
$array[CartDetail::SOUHAITE_BROCHURE]['cat'] = CartDetail::SOUHAITE_BROCHURE;
$array[CartDetail::SOUHAITE_BROCHURE]['value'] = $cat2;
$array[CartDetail::SOUHAITE_lIVRES]['cat'] = CartDetail::SOUHAITE_lIVRES;
$array[CartDetail::SOUHAITE_lIVRES]['value'] = $cat3;
$array[CartDetail::SOUHAITE_CATALOGES]['cat'] = CartDetail::SOUHAITE_CATALOGES;
$array[CartDetail::SOUHAITE_CATALOGES]['value'] = $cat4;
$array[CartDetail::SOUHAITE_LIVRETS]['cat'] = CartDetail::SOUHAITE_LIVRETS;
$array[CartDetail::SOUHAITE_LIVRETS]['value'] = $cat5;
$array[CartDetail::SOUHAITE_RAPORT]['cat'] = CartDetail::SOUHAITE_RAPORT;
$array[CartDetail::SOUHAITE_RAPORT]['value'] = $cat6;
return json_encode($array) ;
}
public function getImageBesoinProductHeaderLang($idBesoinProduct){
$attrLang = null;
$countryCode = $this->session->get('countryCodeCopees');
if(!$countryCode){
$countryCode = 'FR';
}
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
if($country){
$attrLang = $this->em->getRepository(BesoinProductPageHeaderLang::class)->findOneBy(['besoinProductPageHeader'=>$idBesoinProduct,'language'=>$country->getId()]);
}
if(!$attrLang){
$attrLang = $this->em->getRepository(BesoinProductPageHeader::class)->find($idBesoinProduct);
}
return $attrLang;
}
public function getImageProductLang($idProduct){
$attrLang = null;
$countryCode = $this->session->get('countryCodeCopees');
if(!$countryCode){
$countryCode = 'FR';
}
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
if($country){
$attrLang = $this->em->getRepository(ProductLang::class)->findOneBy(['product'=>$idProduct,'language'=>$country->getId()]);
}
if(!$attrLang){
$attrLang = $this->em->getRepository(Product::class)->find($idProduct);
}
return $attrLang;
}
public function getDescriptionAttributeLang($idAttribute){
$attrLang = null;
$countryCode = $this->session->get('countryCodeCopees');
if(!$countryCode){
$countryCode = 'FR';
}
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
if($country){
$attrLang = $this->em->getRepository(AttributLang::class)->findOneBy(['attribute'=>$idAttribute,'language'=>$country->getId()]);
}
if(!$attrLang){
$attrLang = $this->em->getRepository(Attribut::class)->find($idAttribute);
}
return $attrLang;
}
public function getImagesBanniere(){
$bannieres = $this->em->getRepository(BesoinProductPageBannier::class)->findOneBy([]);
return $bannieres;
}
public function getDetailFavoris($token)
{
$favori = $this->em->getRepository(FavoriLiseuse::class)->findOneBy(['token'=>$token]);
$product_attribute = $favori->getProductAttribute();
$array = array();
$arrayReluire = array();
if($product_attribute) {
if ($product_attribute->getFormat()) {
$array[] = $this->trans->trans($product_attribute->getFormat()->getName(), [], 'productTranslate') . ' ';
}
if ($favori->getIsReluire()) {
$array[] = $this->trans->trans('Reliée', [], 'productTranslate') . ' ';
} else {
$array[] = $this->trans->trans('Non reliée', [], 'productTranslate') . ' ';
}
if ($favori->getAccecoireColor()) {
if ($favori->getAccecoireColor()->getTypeAccessoire() == Accessoire::COULEUR) {
$array[] = $this->trans->trans($favori->getAccecoireColor()->getName(), [], 'productTranslate') . ' ';
}
}
if ($product_attribute->getProduct()->getTypeProduct() == Product::PAPIER) {
if ($product_attribute->getRectoverso()) {
if ($product_attribute->getRectoverso() == ProductAttribute::RECTO) {
$array[] = ' ' . $this->trans->trans('Recto', [], 'adminTranslate') . ' ';
} else {
$array[] = ' ' . $this->trans->trans('Recto-Verso', [], 'adminTranslate') . ' ';
}
}
}
if ($product_attribute->getGramage() && $product_attribute->getProduct()->getTypeProduct() == Product::PAPIER) {
$array[] = $this->trans->trans($product_attribute->getGramage()->getNamePapier(), [], 'productTranslate'). ' ';
}
}
$str =implode(',',$array);
$strReluire = !empty($arrayReluire)? '('.implode(',',$arrayReluire).')':'';
return $str.$strReluire;
}
public function getCardByPaiementIntent($paymentIntentId){
$method = $this->stripeConnect->getCardByPaiementIntent($paymentIntentId);
return $method;
}
public function getDisponibiliteProductPerCountrySession($product){
$countryCode = $this->session->get('countryCodeCopees');
if(!$countryCode){
$countryCode = 'FR';
}
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
if($country){
$productCountry = $this->em->getRepository(ProductCountry::class)->getProductCountryByTypeProductAndCountry($product, $country->getId());
if ($productCountry) {
if ($productCountry->getIsEnabled()) {
return true;
}
}
}
return false;
}
public function getDisponibiliteProductPapierPerCountrySession($typeProduct){
$product = $this->em->getRepository(Product::class)->findOneBy(['typeProduct'=>$typeProduct]);
if($product) {
$countryCode = $this->session->get('countryCodeCopees');
if (!$countryCode) {
$countryCode = 'FR';
}
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode' => $countryCode]);
if ($country) {
$productCountry = $this->em->getRepository(ProductCountry::class)->getProductCountryByTypeProductAndCountry($product, $country->getId());
if ($productCountry) {
if ($productCountry->getIsEnabled()) {
return true;
}
}
}
}
return false;
}
public function getCountrySession(){
$countryCode = $this->session->get('countryCodeCopees');
if(!$countryCode){
$countryCode = 'FR';
}
$country = $this->em->getRepository(LanguageCountry::class)->findOneBy(['countryCode'=>$countryCode]);
if($country){
return $country->getCountryName();
}
return '';
}
public function getDisponibiliteParPaysAndProduct($productId,$countryId){
$product = $this->em->getRepository(Product::class)->find($productId);
$country = $this->em->getRepository(LanguageCountry::class)->find($countryId);
if($country && $product){
$productCountry = $this->em->getRepository(ProductCountry::class)->findOneBy(['country'=>$countryId,'product'=>$productId]);
if($productCountry){
return $productCountry->getIsEnabled();
}
}
return false;
}
public function getPourcentageParPaysAndProduct($productId,$countryId){
$product = $this->em->getRepository(Product::class)->find($productId);
$country = $this->em->getRepository(LanguageCountry::class)->find($countryId);
if($country && $product){
$productCountry = $this->em->getRepository(ProductCountry::class)->findOneBy(['country'=>$countryId,'product'=>$productId]);
if($productCountry){
return $productCountry->getPourcentagePrix();
}
}
return 0;
}
function besoinProductHeader()
{
$blocs = $this->em->getRepository(BesoinProductPageHeader::class)->getAllActive();
return $blocs;
}
function besoinProductHeaderMobile()
{
$blocs = $this->em->getRepository(BesoinProductPageHeaderMobile::class)->getAllActive();
return $blocs;
}
function checkWalletB2bCart($cart)
{
$walletsPrix = $this->cart_service->checkWalletB2bCart($cart);
return $walletsPrix;
}
function getAllProduct()
{
$products = $this->em->getRepository(Product::class)->findAllProductNotDelete();
return $products;
}
public function getConfigWording($typeW){
$configWording = $this->em->getRepository(ConfigWording::class)->findOneBy(['typeW'=>$typeW]);
return $configWording;
}
public function getNotifB2cNotRead($user){
$notifs = $this->cart_service->getNotifB2cNotRead($user);
return $notifs;
}
function getBandeauRoseABP()
{
$bandeau = $this->em->getRepository(BandeauRose::class)->findOneBy(['numBandeau'=>BandeauRose::BANDEAU_ABP]);
return $bandeau;
}
function getBandeauRoseBTC()
{
$bandeau = $this->em->getRepository(BandeauRose::class)->findOneBy(['numBandeau'=>BandeauRose::BANDEAU_B2C]);
return $bandeau;
}
function getBandeauRoseBTB()
{
$bandeau = $this->em->getRepository(BandeauRose::class)->findOneBy(['numBandeau'=>BandeauRose::BANDEAU_B2B]);
return $bandeau;
}
function getBandeauDescription()
{
$bandeau = $this->em->getRepository(BandeauHomePage::class)->findOneBy([]);
return $bandeau;
}
function checkAttributeNonAffiche($attrs)
{
$bool = false;
foreach ($attrs as $attr){
if($attr && isset($attr['id'])){
if($attr['isDisplayNone']){
$bool = true;
}
}
}
return $bool;
}
function getPourcentageRate($rate)
{
if($rate > 0){
return $rate/5 *100 ;
}else{
return 0;
}
}
function routeExists($name)
{
return (null === $this->router->getRouteCollection()->get($name)) ? false : true;
}
public function getMenuBurgerFront(){
$menuObjects = $this->em->getRepository(MenuBurger::class)->findBy([],['sort'=>'asc']);
$menus = [];
if($menuObjects){
$menus = $this->menuService->groupMenuTab($menuObjects);
}
return $menus ;
}
public function getMenuVerticalFront(){
$menuObjects = $this->em->getRepository(MenuVerticalAcceuil::class)->findBy([],['sort'=>'asc']);
$menus = [];
if($menuObjects){
$menus = $this->menuService->groupMenuVerticalTab($menuObjects);
}
return $menus ;
}
public function getAccueilElement(){
$objects = $this->em->getRepository(AccueilElement::class)->findBy([],['sort'=>'asc']);
return $objects ;
}
public function getFavorisIcone($id,$user){
$product = $this->em->getRepository(BesoinProductPage::class)->find($id);
if($product && $user){
$favoris = $this->em->getRepository(BesoinProductFavoris::class)->findOneBy(['besoinProductPage'=>$product->getId(),'user'=>$user->getId()]) ;
if($favoris){
return "<span class='infoBulleHeart' style='' data-id='".$product->getId()."'><i class='fa-solid fa-heart' style='color:red;'></i></span>";
}else{
return "<span class='infoBulleHeart' style='' data-id='".$product->getId()."'><i class='fa-regular fa-heart'></i></span>";
}
}
return '';
}
public function getFavorisProduct($user){
if( $user){
$favoris = $this->em->getRepository(BesoinProductFavoris::class)->findBy(['user'=>$user->getId()]) ;
return $favoris;
}
return false;
}
public function getMerchPackByProductImage($request,$id){
$product = $this->em->getRepository(BesoinProductPage::class)->find($id);
$image = null;
if($product){
$baseurl = $request->getScheme() . '://' . $request->getHttpHost() . $request->getBasePath();
$image = $baseurl.'/imageSite/'.$product->getFileBesoinProduct();
$dataImage = $this->session->get('dataImageMerchPack');
if(is_array($dataImage)){
if(array_key_exists($product->getId(),$dataImage) && $product->getNbrMerchPack() && !empty($product->getNbrMerchPack())){
$image = $dataImage[$product->getId()];
}
}
}
return $image;
}
public function getCustomerByUser($user){
$customer = $this->em->getRepository(Customer::class)->findOneBy(['user'=>$user->getId()]);
return $customer;
}
public function getAllActiveByCategoryBesoinProduct($catId){
$products = $this->em->getRepository(BesoinProductPage::class)->getAllActiveByCategory($catId);
return $products;
}
public function getAllActiveByCategoryTemplatesPage($catId){
$products = $this->em->getRepository(TemplatesPage::class)->getAllActiveByCategory($catId);
return $products;
}
public function getAllCategoryActiveTemplatesPage(){
$categorys = $this->em->getRepository(TemplatesPageCategory::class)->getAllActive();
return $categorys;
}
public function getAllActiveByCategoryBesoinProductMerchPack($catId){
$products = $this->em->getRepository(BesoinProductPage::class)->getAllActiveByCategoryMerchPack($catId);
return $products;
}
public function getAllActiveByPreferenceCategorySousBesoinProduct($catId){
$products = $this->em->getRepository(BesoinProductPagePreferenceCategorySous::class)->getAllActiveByCategory($catId);
return $products;
}
public function getAllActiveByPreferenceCategoryBesoinProduct(){
$products = $this->em->getRepository(BesoinProductPagePreferenceCategory::class)->getAllActive();
return $products;
}
public function getAllCategoryActiveBesoinProduct(){
$categorys = $this->em->getRepository(BesoinProductPageCategory::class)->getAllActive();
return $categorys;
}
public function getAllCategoryActiveBesoinProductMerchPack(){
$categorys = $this->em->getRepository(BesoinProductPageCategory::class)->getAllActiveMerchPack();
return $categorys;
}
public function getElemenTabAbonnement(){
$category = $this->em->getRepository(TabAbonnementCategory::class)->findBy([],['sort'=>'asc']);
$tabAbonnementWithoutCategory = $this->em->getRepository(TabAbonnement::class)->getLigneWithoutCategory();
$response =
[
'category' => $category,
'tabAbonnementWithoutCategory' => $tabAbonnementWithoutCategory
];
return $response;
}
public function getPriceTextByFormatAndProduct($typeProduit,$typeFormat){
$attr = $this->em->getRepository(Attribut::class)->findOneBy(['typeFormat'=>$typeFormat,'typeProduct'=>$typeProduit]);
if($attr){
return $attr->getBesoinProductTextPrix();
}else{
return '';
}
}
public function getAttrbyFormatAndProduct($typeProduit,$typeFormat)
{
$attr = $this->em->getRepository(Attribut::class)->findOneBy(['typeFormat'=>$typeFormat,'typeProduct'=>$typeProduit]);
return $attr;
}
public function getProductsPanier(){
$cart = $this->cart_service->getCartWithSession();
if($cart && $cart->getCartDetail() && count($cart->getCartDetail())>0){
$result = $cart->getCartDetail();
}else{
$result = null;
}
return $this->twig->render('front/accueil/besoin-product-bloc/moment.html.twig', [
'products' => $result,
]);
}
public function getAttrSoon($attrType,$productType){
$result = $this->em->getRepository(Attribut::class)->getAttrSoon($attrType,$productType);
return $result;
}
public function getProductsMoment(){
$creas = $this->em->getRepository(NosCrea::class)->findBy([]);
return $this->twig->render('front/accueil/besoin-product-bloc/moment.html.twig', [
'products' => $creas,
]);
}
public function getProductsPromo(){
$result = $this->em->getRepository(Product::class)->findBy(['besoinProductIsPromo'=>true]);
return $this->twig->render('front/accueil/besoin-product-bloc/promo.html.twig', [
'products' => $result,
]);
}
public function getProductsNew(){
$result = $this->em->getRepository(Product::class)->findBy(['besoinProductIsNew'=>true]);
return $this->twig->render('front/accueil/besoin-product-bloc/new.html.twig', [
'products' => $result,
]);
}
public function getProductsLuxe(){
$result = $this->em->getRepository(Product::class)->findBy(['besoinProductIsLuxe'=>true]);
return $this->twig->render('front/accueil/besoin-product-bloc/luxe.html.twig', [
'products' => $result,
]);
}
public function getCompteAbonnementProByIds($ids){
$result = $this->em->getRepository(CompteAbonnementPro::class)->findBy(['id'=>json_decode($ids)]);
return $result;
}
public function getCompteB2cByIds($ids){
$result = $this->em->getRepository(Customer::class)->findBy(['id'=>json_decode($ids)]);
return $result;
}
public function getAllCompteAbonnementProDistinct(){
$result = $this->em->getRepository(CompteAbonnementPro::class)->getAllCompteAbonnementProDistinct();
return $result;
}
public function checkIsAbonnementProIsActive($user){
$result = $this->cart_service->checkIsAbonnementProIsActive($user);
return $result;
}
public function gePriceCartWithAbonnementPro($typeAbonnement,$cart){
$array = $this->cart_service->gePriceCartWithAbonnementPro($typeAbonnement,$cart);
return $array;
}
public function getPrixDistribution($distribution){
$prix = 0;
if(is_object($distribution)){
$persone = (int)$distribution->getNbrPersonne();
$prixQty = $distribution->getQty()->getPrixTtc();
if($persone == 1){
$prix = $prixQty;
}else if($persone == 2){
$prix = $prixQty + ($prixQty * 30)/100;
}else if($persone == 3){
$prix = $prixQty + ($prixQty * 40)/100;
}else if($persone == 4){
$prix = $prixQty + ($prixQty * 50)/100;
}else{
$prix = $prixQty;
}
}
return $prix ;
}
public function captchaCus(){
$form = $this->form->create(CaptchaCusType::class, new CaptchaCus());
return [
'formCaptcha' => $form->createView(),
]
;
}
public function captchaCus2(){
$form = $this->form->create(CaptchaCus2Type::class, new CaptchaCus2());
return [
'formCaptcha' => $form->createView(),
]
;
}
public function checkIsComptableAboPro($user){
if(is_object($user)){
$abo = $this->cart_service->checkAbonenementProSansAbonnementCopeesPlus($user);
if($abo) {
$customer = $this->em->getRepository(Customer::class)->findOneBy(['user' => $user->getId()]);
if ($customer && $customer->getRolAbo() == Customer::role_abo_comptabilite) {
return true;
}
}
}
return false;
}
public function getNotifOrderB2bNotRead($user){
$notifs = $this->cart_service->getNotifOrderB2bNotRead($user);
return $notifs;
}
public function getNotifB2bNotRead($user){
$notifs = $this->cart_service->getNotifB2bNotRead($user);
return $notifs;
}
public function getCommandesByUserAndByCompte($id,$idCustomer){
$compte = $this->em->getRepository(CompteAbonnementPro::class)->find($id);
$customer = $this->em->getRepository(Customer::class)->find($idCustomer);
$commandes = $this->em->getRepository(CompteAbonnementProCommandes::class)->getCommandesByUserAndByCompte($customer->getUser(),$compte);
return $commandes;
}
public function getCharteGraphiqueB2bData($user){
$data = $this->cart_service->getCharteGraphiqueB2bData($user);
return $data;
}
public function getAbreviation($user=null,$email=null){
$name = '';
$nameAB = 'X';
$class = '';
if($user){
$name = ucwords($user->getFirstname()).' '.ucwords($user->getLastname());
$nameAB = substr($user->getFirstname(), 0, 1) ;
$class = 'bg-light-primary';
}else{
if(!empty($email)) {
$name = $email;
$nameAB = substr($email, 0, 1);
$class = 'bg-light-primary';
}
}
return ['name' => $name,'nameAB' => strtoupper($nameAB),'class' => $class];
}
public function getFilters()
{
return array(
new \Twig_SimpleFilter('convertPrice', array($this, 'convertPrice')),
new \Twig_SimpleFilter('sortArrayByField', array($this, 'sortArrayByField')),
new \Twig_SimpleFilter('addslashes', 'addslashes'),
);
}
public function getNbrCart(){
$cart = $this->cart_service->getCartWithSession();
if($cart){
$nbr = count($cart->getCartDetail()) + count($cart->getDistributionCart());
}else{
$nbr = 0;
}
return $nbr;
}
public function getGramagePapier(){
$gramage = $this->cart_service->getGramagePapier();
return $gramage;
}
public function getProductsWithoutPapier(){
$products = $this->em->getRepository(Product::class)->getProductsWithoutPapier();
return $products;
}
public function getProductsWithoutPapierAndNotColorLab(){
$products = $this->em->getRepository(Product::class)->getProductsWithoutPapierAndNotColorLab();
return $products;
}
public function getCategoryFileCrello($user){
$cat = [];
if(is_object($user)){
$cat = $this->em->getRepository(FilesClientCrelloCategory::class)->findBy(['user'=>$user->getId(),'isDefault'=> null]);
}
return $cat;
}
public function configsLabelPopGabarit($tag){
$config = $this->em->getRepository(ConfigProductDescription::class)->findOneBy(array('tagId'=>$tag));
if ($config){
$text = $config->getDescription();
}else{
$text = '';
}
return $text;
}
public function getDistinctCarrierOrderDetail($order){
$distinctCarrierOrderDetail = $this->order_service->getDistinctCarrierOrderDetail($order);
return $distinctCarrierOrderDetail;
}
public function getDistinctCarrierOrderDetailMultipleAdresse($order){
$distinctCarrierOrderDetail = $this->order_service->getDistinctCarrierOrderDetailMultipleAdresse($order);
return $distinctCarrierOrderDetail;
}
public function getBrowser($request){
$user_agent = $request->headers->get('User-Agent');
$t = strtolower($user_agent);
$t = " " . $t;
if (strpos($t, 'opera' ) || strpos($t, 'opr/') ) return 'Opera' ;
elseif (strpos($t, 'edge' ) ) return 'Edge' ;
elseif (strpos($t, 'chrome' ) ) return 'Chrome' ;
elseif (strpos($t, 'safari' ) ) return 'Safari' ;
elseif (strpos($t, 'firefox' ) ) return 'Firefox' ;
elseif (strpos($t, 'msie' ) || strpos($t, 'trident/7')) return 'Internet Explorer';
else 'Unkown';
}
public function getNbrOrderValide(){
$result = $this->em->getRepository(Orders::class)->getOrderValide();
return ['nembre_space' => $this->space(count($result)-13951, 3, true),'nembre'=>count($result)-13951];
}
private function space($str, $step, $reverse = false) {
if ($reverse)
return strrev(chunk_split(strrev($str), $step, ' '));
return chunk_split($str, $step, ' ');
}
public function getProductByType($typeProduct){
$result = $this->em->getRepository(Product::class)->findOneBy(array('typeProduct'=>$typeProduct));
return $result;
}
public function getPriceLivraison30Min($idImprimeur,$data){
$result = $this->cart_service->getPriceLivraison30Min($idImprimeur,$data);
return $result;
}
public function checkabonnementPlus($user){
if(is_object($user) ){
$subscription = $this->em->getRepository(AbonnementPay::class)->getActive($user);
return $subscription ? true:false;
}
return false;
}
public function getAfterPoucentage($id,$price){
$productPrice = $this->em->getRepository(PriceProduct::class)->find($id);
$val = $this->cart_service->getPricePourcentageAdd($productPrice,$price);
return $val + $price;
}
public function getPriceProductAfterPoucentage($product,$price){
$val = $this->cart_service->getPriceProductPourcentageAdd($product,$price);
return $val + $price;
}
public function checkAbonnementImpay($user){
return $this->cart_service->checkFactureImpayeByCompte($user);
}
public function getPriceDifference($myAbonnementId,$typeAbonnement,$typeCompteAbonnement){
$tab = $this->cart_service->getPriceDifference($myAbonnementId,$typeAbonnement,$typeCompteAbonnement);
$prix = explode('.',$tab['newPriceTtc']);
$oldPrix =$tab['oldPriceTtc'];
return[
'prix1'=>$prix[0],
'prix2'=>isset($prix[1])? $prix[1] :'00',
'oldPrix'=>str_replace('.',',',$oldPrix)
];
}
public function getIntervalDate($origin ,$target ){
$mois = 0;
if(is_object($origin) && is_object($target)){
$interval = $origin->diff($target);
$mois = $interval->m ;
$mois = $interval->d > 20 ? $mois + 1 : $mois;
$years = $interval->y;
if($years > 0){
$mois = $years *12 +$mois;
}
}
return $mois;
}
public function getRetribution($order){
if(is_object($order)){
if($order->getRetributionPourcentage()){
return $order->getRetributionPourcentage();
}else{
return round($order->getPrixTransfer() * 100 / $order->getPrixTtc());
}
}
return '-';
}
public function checkIsAbonnementPro($user){
if(is_object($user)){
return $this->cart_service->checkAbonenementProSansAbonnementCopeesPlus($user);
}
return false;
}
public function checkIsAbonnementProCart(){
$cart = $this->cart_service->getCartWithSession();
if($cart){
return $this->cart_service->checkIsAbonnementProCart($cart->getId());
}
return false;
}
public function getMenuAbonnement($user,$route){
if(is_object($user)){
$abonnement = $this->cart_service->checkIsAbonnementPro($user);
// check abonnement in cart
$cart = $this->cart_service->getCartWithSession();
$isAbonnementProInCart = false;
if($cart){
$isAbonnementProInCart = $this->cart_service->checkIsAbonnementProCart($cart->getId());
}
if($abonnement['is_abonnemen_pro'] || $isAbonnementProInCart) { // check is admin in compte abonnement
$compteAbonnement = $abonnement['compte_abonnement_object'];
return $this->twig->render('front/abonnement-pro/account/menu.html.twig', [
'compteAbonnement' => $compteAbonnement,
'is_admin' => isset($abonnement['is_admin'])?$abonnement['is_admin']:$isAbonnementProInCart?true:false,
'route' => $route,
'user' => $user,
'isAbonnementProInCart' => $isAbonnementProInCart,
'cart' => $cart
]);
}
}
return '';
}
public function getNameAbonnementPro($user){
if(is_object($user)){
$abonnement = $this->cart_service->checkIsAbonnementPro($user);
// check abonnement in cart
$cart = $this->cart_service->getCartWithSession();
$isAbonnementProInCart = false;
if($cart){
$isAbonnementProInCart = $this->cart_service->checkIsAbonnementProCart($cart->getId());
}
if($abonnement['is_abonnemen_pro'] || $isAbonnementProInCart) { // check is admin in compte abonnement
$compteAbonnement = $abonnement['compte_abonnement_object'];
return $this->twig->render('front/abonnement-pro/account/name-abos.html.twig', [
'compteAbonnement' => $compteAbonnement,
'isAbonnementProInCart' => $isAbonnementProInCart,
'cart' => $cart
]);
}else{
return $user->getFirstname();
}
}
return '';
}
public function getNameAbonnementProString($user){
if(is_object($user)){
$abonnement = $this->cart_service->checkIsAbonnementPro($user);
// check abonnement in cart
$cart = $this->cart_service->getCartWithSession();
$isAbonnementProInCart = false;
if($cart){
$isAbonnementProInCart = $this->cart_service->checkIsAbonnementProCart($cart->getId());
}
if($abonnement['is_abonnemen_pro'] || $isAbonnementProInCart) { // check is admin in compte abonnement
$compteAbonnement = $abonnement['compte_abonnement_object'];
if($isAbonnementProInCart){
return $cart->getAbonnementProCart()->getAbonnement()->getName();
}else{
return $compteAbonnement->getAbonnement()->getName();
}
}
}
return '';
}
public function getTypeUserAndAboTagGoogle($user){
$data = [
'user_type' => 'btoc',
'subscription_type' => '',
];
if(is_object($user)){
$abonnement = $this->cart_service->checkIsAbonnementPro($user);
// check abonnement in cart
$cart = $this->cart_service->getCartWithSession();
$isAbonnementProInCart = false;
if($cart){
$isAbonnementProInCart = $this->cart_service->checkIsAbonnementProCart($cart->getId());
}
if($abonnement['is_abonnemen_pro'] || $isAbonnementProInCart) { // check is admin in compte abonnement
$compteAbonnement = $abonnement['compte_abonnement_object'];
$data['user_type'] = 'btob';
if($isAbonnementProInCart){
if($cart->getAbonnementProCart()->getAbonnement()) {
if ($cart->getAbonnementProCart()->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_ENTREPRISE or $cart->getAbonnementProCart()->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_TEAM) {
$data['subscription_type'] = 'business';
} else {
$data['subscription_type'] = 'plus';
}
}
}else{
if($compteAbonnement->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_ENTREPRISE or $compteAbonnement->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_TEAM){
$data['subscription_type'] = 'business';
}else{
$data['subscription_type'] = 'plus';
}
}
}
}
return $data;
}
public function checkIsAbonnementEntreprise($user){
if(is_object($user)){
$abonnement = $this->cart_service->checkIsAbonnementPro($user);
if($abonnement['is_abonnemen_pro']) { // check is admin in compte abonnement
$compteAbonnement = $abonnement['compte_abonnement_object'];
if($compteAbonnement->getAbonnement()->getTypeAbonnement() == AbonnementPro::TYPE_ENTREPRISE){
return true;
}
}
}
return false;
}
public function getFactureAbonnementByItemCommande($commande){
$facture = $this->em->getRepository(CompteAbonnementProCommandesFactures::class)->findByCommande($commande);
return $facture;
}
public function formatPrixSpecifique($prix=0.00){
$prix = number_format((float)$prix,2);
$tab = explode('.',$prix);
return $tab;
}
public function facturedateDiff($dateFirst,$dateLast){
$array = array();
if($dateFirst && $dateFirst && is_object($dateFirst->getStartAt())&& is_object($dateLast->getStartAt())){
$date1 = $dateFirst->getStartAt();
$date2 = $dateLast->getStartAt();
$iterval = $date2->diff($date1);
$array = array();
$beginYears = (int)$date1->format('Y');
$beginMounth = (int)$date1->format('m');
$mounthDiff = (int)$iterval->format('%m') + ((int)$iterval->format('%d') > 0 ? 1 : 0) + ((int)$iterval->format('%y') * 12) + $beginMounth;
$intl = new \IntlDateFormatter('fr', \IntlDateFormatter::LONG, \IntlDateFormatter::NONE, null, null, 'MMMM YYYY');
for ($i=$beginMounth; $i<=$mounthDiff;$i++){
$date = new \DateTime($beginYears.'-'.$beginMounth.'-01');
$array[$beginYears.'-'.$beginMounth.'-01'] = ucfirst($intl->format($date));
if($beginMounth / 12 >=1){
$beginMounth = 1;
$beginYears = $beginYears + 1;
}else{
$beginMounth++;
}
}
$array = array_reverse($array);
}
return $this->twig->render('front/abonnement-pro/account/consommation/factureDateDiff.html.twig', [
'dateFacture'=>$array
]);
}
public function getArticlesRss(){
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$xml = file_get_contents('http://blog.copees.com/category/articles/feed/',false, stream_context_create($arrContextOptions));
$array= array();
if($xml){
libxml_use_internal_errors(true);
$sxe = simplexml_load_string($xml);
if (!$sxe) {
return $array;
}
$feed = new \SimpleXMLElement($xml);
if(isset($feed->channel->item)){
foreach ($feed->channel->item as $item){
$array[] = array(
'title' => $item->title,
'link' => $item->link,
'image' => isset($item->post_thumbnail->url)? $item->post_thumbnail->url :'',
'description' => substr ($item->description,0,strpos($item->description, '<p>', 1))
);
}
}
}
return $array;
}
public function imagePdfExist($file){
if(file_exists( $this->params->get('fileImage_directory').'/'.$file)){
return true;
}
return false;
}
public function productPdfImageExist($file){
if(file_exists( $this->params->get('productPdf_directory').'/'.$file)){
return true;
}
return false;
}
public function fileDocClientExist($file){
if(file_exists( $this->params->get('uploads_directory').'/docClient/'.$file)){
return true;
}
return false;
}
public function displayErreurOptionNotSelect(){
$data = $this->cart_service->checkOptionSelectReluire();
$html = '';
if(!empty($data)){
foreach ($data as $key => $item){
if(isset($item['valueReluire'])){
$html = "<p>".$item['valueReluire'] ." ".$item['key']." </p>";
}else{
$html = "<p>".$item['value'] ." ".$item['key']." </p>";
}
}
}
return $html;
}
public function getNameFormat($id_format)
{
$format = $this->em->getRepository(Attribut::class)->find($id_format);
$string = '';
if($format){
if(in_array($id_format,array(2,3))){
$string = lcfirst($format->getName());
}else{
$string = $format->getName();
}
}
return $string;
}
// nb_desiner
public function getNamePapierGrammage($id_grammage)
{
$grammage = $this->em->getRepository(Attribut::class)->find($id_grammage);
$string = '';
if($grammage){
$string = $grammage->getNamePapier();
}
return $string;
}
public function getNameProduct($idProduct)
{
$product = $this->em->getRepository(Product::class)->find((int)$idProduct);
$string = '';
if($product){
$string = $product->getTypeProductName();
}
return $string;
}
public function getProductTypeById($idProduct)
{
$product = $this->em->getRepository(Product::class)->find((int)$idProduct);
$type = '';
if($product){
$type = $product->getTypeProduct();
}
return $type;
}
public function getProductById($idProduct)
{
$product = $this->em->getRepository(Product::class)->find((int)$idProduct);
return $product;
}
public function getAttribute($idAttr)
{
$attr = $this->em->getRepository(Attribut::class)->find((int)$idAttr);
return $attr;
}
public function getPrixTtcByQtyFinition($price,$finition)
{
if($finition== CartDetail::FINITION_GLACE){
$price = $price + ($price* CartDetail::POURCENTAGE_FINITION_GLACE);
}else if ($finition== CartDetail::FINITION_MATE){
$price = $price + ($price* CartDetail::POURCENTAGE_FINITION_MATE);
}else if ($finition== CartDetail::FINITION_REPOSITIONALBLE){
$price = $price + ($price* CartDetail::POURCENTAGE_FINITION_REPOSITIONALBLE);
}else if ($finition== CartDetail::FINITION_TRANSPARENT){
$price = $price + ($price* CartDetail::POURCENTAGE_FINITION_TRANSPARENT);
}else if ($finition== CartDetail::FINITION_SoftTouch){
$price = $price + ($price* CartDetail::POURCENTAGE_FINITION_SoftTouch);
}else if ($finition== CartDetail::FINITION_Pelliculemat){
$price = $price + ($price* CartDetail::POURCENTAGE_FINITION_Pelliculemat);
}else if ($finition== CartDetail::FINITION_PelliculeBrillant){
$price = $price + ($price* CartDetail::POURCENTAGE_FINITION_PelliculeBrillant);
}
return $price;
}
public function getPrixTtcByUserTemplate($id)
{
$userTemplate = $this->em->getRepository(NbUserTemplates::class)->find($id);
$priceProductAttr = $this->em->getRepository(PriceProduct::class)->getProductAttributePriceByIdAndQty($userTemplate->getProductAttribute()->getId(), $userTemplate->getQuantite());
if($userTemplate->getFinition() == CartDetail::FINITION_GLACE){
$price = $priceProductAttr->getPrixTtc() + $this->cart_service->getPricePourcentageAdd($priceProductAttr,$priceProductAttr->getPrixTtc()) + (($priceProductAttr->getPrixTtc() + $this->cart_service->getPricePourcentageAdd($priceProductAttr,$priceProductAttr->getPrixTtc()))* CartDetail::POURCENTAGE_FINITION_GLACE);
}else if($userTemplate->getFinition() == CartDetail::FINITION_MATE){
$price = $priceProductAttr->getPrixTtc() + $this->cart_service->getPricePourcentageAdd($priceProductAttr,$priceProductAttr->getPrixTtc()) + (($priceProductAttr->getPrixTtc() + $this->cart_service->getPricePourcentageAdd($priceProductAttr,$priceProductAttr->getPrixTtc()))* CartDetail::POURCENTAGE_FINITION_MATE);
}
return $price;
}
// nb_desiner
public function sortArrayByField($content, $sort_by)
{
$array = array();
if (is_a($content, 'Doctrine\ORM\PersistentCollection')) {
$content = $content->toArray();
}
if (!is_array($content)) {
throw new \InvalidArgumentException('Variable passed to the sortByField filter is not an array');
}else{
foreach ($content as $item){
$array[$item[$sort_by]] = $item;
}
}
if(empty($array))
$array = $content;
uksort($array, "strnatcmp");
return $array;
}
public function getTitlePage($pathname){
$pageMeta = $this->em->getRepository(Seo::class)->findOneByNameRoute($pathname);
if($pageMeta){
$str = !empty($pageMeta->getMetaTitle())?$pageMeta->getMetaTitle():'Copees';
}else{
$str = 'Copees';
}
return $str;
}
public function getmetaDesciption($pathname){
$pageMeta = $this->em->getRepository(Seo::class)->findOneByNameRoute($pathname);
if($pageMeta){
$str = !empty($pageMeta->getMetaDescription())?$pageMeta->getMetaDescription():'';
}else{
$str = '';
}
return $str;
}
public function number_format($number){
return number_format((float)$number,2);
}
public function getStatusCommande($status)
{
$string = '';
$color = '';
if($status == Stats::TERMINER){
$string = 'Terminé';
$color = 'color-green';
}
if($status == Stats::ENCOURT){
$string = 'En cours de préparation';
$color = 'color-orange';
}
if($status == Stats::TRAITEMENT_SAV){
$string = 'Traitement SAV';
$color = 'color-red';
}
return $string;
}
public function getCurrentStatusMerciFacteur($idSend)
{
$trakingMerciFacteur = $this->merciFacteurService->currentStatusMerciFacteur($idSend);
if($trakingMerciFacteur) {
if (array_key_exists('statutPrintEnvoi', $trakingMerciFacteur)) {
return $trakingMerciFacteur['statutPrintEnvoi'];
}
}
}
public function getStatusString($status)
{
$string = '';
$color = '';
if($status == Stats::TERMINER){
$string = 'Payé';
$color = 'color-green';
}
if($status == Stats::ENCOURT){
$string = 'En cours de traitement';
$color = 'color-orange';
}
if($status == Stats::TRAITEMENT_SAV){
$string = 'Traitement SAV';
$color = 'color-red';
}
return "<span class='".$color."'>".$string."</span>";
}
public function getRestTemps($dateEnd,$order)
{
if($order->getCarrier()){
if($order->getCarrier()->getNum() == Carrier::STUART){
$dateDebut = new \DateTime('now');
$diff = $dateEnd->getTimestamp() - $dateDebut->getTimestamp();
if($diff > 0 ) {
$heurs = 60 * 60;
if ($diff < 60) {
$temps = $diff . 's';
$color = 'color-red';
} else if ($diff < $heurs) {
$min = $diff / 60;
if ($min < 11) {
$color = 'color-red';
} elseif ($min > 10 && $min < 45) {
$color = 'color-orange';
} else {
$color = 'color-green';
}
$temps = (int)$min . 'min';
} else {
$h = $diff / $heurs;
$diffH = $diff % $heurs;
$min = $diffH / 60;
$temps = (int)$h . 'h' . (($min > 0) ? (int)$min : '');
$color = 'color-green';
}
}else{
$color = 'color-green';
$temps = 0;
}
return "<span class='".$color."'>".$temps."</span>";
}else{
return '';
}
}
return '';
}
public function getDetailProduct($id_detail_product)
{
$orderrDetail = $this->em->getRepository(OrderDetail::class)->find($id_detail_product);
$product_attribute = $orderrDetail->getProductAttribute();
$array = array();
$arrayReluire = array();
if($product_attribute){
if(in_array($orderrDetail->getTypeProduct(),array(Product::SIMPLE,Product::PAPIER,Product::PAPIER_POSTE))) {
if ($orderrDetail->getSouhaiteStr()) {
$array[] = $this->trans->trans('Type',[],'adminTranslate') .' '. $this->trans->trans($this->cart_service->getSouhaiteStr($orderrDetail->getSouhaiteStr()),[],'productTranslate') . ' ';
}
}else{
// if ($orderrDetail->getIsTrait()) {
// $array[] = 'Document avec traits de coupe ' ;
// }else{
// $array[] = 'Document sans traits de coupe ' ;
// }
}
if($product_attribute->getFormat()){
if ($product_attribute->getProduct()->getTypeProduct() == Product::STICKERS_AUTOCOLLANT) {
$array[] = ' '.$this->trans->trans('Coupe',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getFormat()->getName(),[],'productTranslate').' ';
}else{
$array[] = ' '.$this->trans->trans('Format',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getFormat()->getName(),[],'productTranslate').' ';
}
}
if(in_array($orderrDetail->getProduct()->getTypeProduct(), [ Product::VITROPHANIE,Product::PAPIER_CADEAU,Product::ETIQUETTE_ROULEAU])){
$array[] = ' '.$this->trans->trans('Format',[],'adminTranslate').' '. $orderrDetail->getFormatLargeur() . $this->trans->trans('cm (Largeur)',[],'adminTranslate').' | '.$orderrDetail->getFormatHauteur() .' '.$this->trans->trans('cm (Hauteur)',[],'adminTranslate'). ' ';
}
if($product_attribute->getGramage() && $product_attribute->getProduct()->getTypeProduct() == Product::PAPIER)
$array[] = ' '.$this->trans->trans('Gramage',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getGramage()->getNamePapier(),[],'productTranslate').' '.$this->trans->trans($product_attribute->getGramage()->getName(),[],'productTranslate').' ';
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))
$array[] = ' '.$this->trans->trans('Papier',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getGramage()->getName(),[],'productTranslate').' '.$this->trans->trans($product_attribute->getGramage()->getNamePapier(),[],'productTranslate').' ';
else if($product_attribute->getGramage()) {
if ($product_attribute->getProduct()->getTypeProduct() == Product::STICKERS_AUTOCOLLANT) {
$array[] = ' '.$this->trans->trans('Format',[],'adminTranslate').' ' . $this->trans->trans($product_attribute->getGramage()->getName(),[],'productTranslate') . ' ';
}else{
$array[] = ' '.$this->trans->trans('Gramage',[],'adminTranslate').' ' . $this->trans->trans($product_attribute->getGramage()->getName(),[],'productTranslate') . ' ';
}
}
if(in_array($orderrDetail->getProduct()->getTypeProduct(), [ Product::VITROPHANIE,Product::PAPIER_CADEAU,Product::ETIQUETTE_ROULEAU])){
if ($product_attribute->getTypeFormat())
$array[] = ' '.$this->trans->trans('Coupe',[],'adminTranslate').' ' . $this->trans->trans($product_attribute->getTypeFormat()->getName(),[],'productTranslate') . ' ';
}else {
if ($product_attribute->getTypeFormat())
$array[] = ' '.$this->trans->trans('Composition',[],'adminTranslate').' ' . $this->trans->trans($product_attribute->getTypeFormat()->getName(),[],'productTranslate') . ' ';
}
if($product_attribute->getSpecificite())
$array[] = ' '.$this->trans->trans('Coupe',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getSpecificite()->getName(),[],'productTranslate').' ';
if($product_attribute->getTypeCouleur()) {
if (in_array($orderrDetail->getTypeProduct(), [Product::PHOTOS_ENCADRE])) {
$array[] = ' '.$this->trans->trans('Couleur du cadre',[],'adminTranslate').' ' . $this->trans->trans($product_attribute->getTypeCouleur()->getName(),[],'productTranslate') . ' ';
} else {
$array[] = ' '.$this->trans->trans('Couleur',[],'adminTranslate').' ' . $this->trans->trans($product_attribute->getTypeCouleur()->getName(),[],'productTranslate') . ' ';
}
}
if($product_attribute->getTaille())
$array[] = ' '.$this->trans->trans('Taille',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getTaille()->getName(),[],'productTranslate').' ';
if($product_attribute->getZoneImpression())
$array[] = ' '.$this->trans->trans('Zone d’impression',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getZoneImpression()->getName(),[],'productTranslate').' ';
if($product_attribute->getNbrCouleur()) {
if (in_array($orderrDetail->getTypeProduct(), [Product::PHOTOS_ENCADRE])) {
$array[] = ' '.$this->trans->trans('Effets',[],'adminTranslate').' ' . $this->trans->trans($product_attribute->getNbrCouleur()->getName(),[],'productTranslate') . ' ';
} else {
$array[] = ' '.$this->trans->trans('Nombre de couleur du design',[],'adminTranslate').' ' . $this->trans->trans($product_attribute->getNbrCouleur()->getName(),[],'productTranslate') . ' ';
}
}
if($product_attribute->getTypeImpression())
$array[] = ' '.$this->trans->trans('Type d\'impression',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getTypeImpression()->getName(),[],'productTranslate').' ';
if($product_attribute->getSupportSuspension())
$array[] = ' '.$this->trans->trans('Support de suspension',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getSupportSuspension()->getName(),[],'productTranslate').' ';
if($product_attribute->getTypeCarton())
$array[] =' '.$this->trans->trans('Type carton :',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getTypeCarton()->getName(),[],'productTranslate').' ';
if($product_attribute->getOeille())
$array[] = ' '.$this->trans->trans('Oeille :',[],'adminTranslate').' '.$this->trans->trans($product_attribute->getOeille()->getName(),[],'productTranslate').' ';
if ($orderrDetail->getIsPlusVerification()) {
$array[] = ' '.$this->trans->trans('Avec option de vérification',[],'adminTranslate').' ';
}
if ($orderrDetail->getIsPlusBordsArrondis()) {
$array[] = ' '.$this->trans->trans('Bords arrondis',[],'adminTranslate').' ';
}
if ($orderrDetail->getIsPlusPlastification()) {
$array[] = ' '.$this->trans->trans('Avec Plastification',[],'adminTranslate').' ';
}
if ($orderrDetail->getIsEnveloppe()) {
$array[] = ' '.$this->trans->trans('Avec Enveloppe',[],'adminTranslate').' ';
}
if (!in_array($orderrDetail->getTypeProduct(), array(Product::SIMPLE, Product::PAPIER, Product::PAPIER_POSTE))) {
if ($orderrDetail->getFinition() == CartDetail::FINITION_GLACE) {
$array[] = ' '.$this->trans->trans('Finition glacée',[],'adminTranslate').' ';
}
if ($orderrDetail->getFinition() == CartDetail::FINITION_MATE) {
$array[] = ' '.$this->trans->trans('Finition mate',[],'adminTranslate').' ';
}
if ($orderrDetail->getFinition() == CartDetail::FINITION_REPOSITIONALBLE) {
$array[] = ' '.$this->trans->trans('Finition Repositionnable',[],'adminTranslate').' ';
}
if ($orderrDetail->getFinition() == CartDetail::FINITION_TRANSPARENT) {
$array[] = ' '.$this->trans->trans('Finition Transparent',[],'adminTranslate').' ';
}
if ($orderrDetail->getFinition() == CartDetail::FINITION_SoftTouch) {
$array[] = ' '.$this->trans->trans('Finition Soft Touch',[],'adminTranslate').' ';
}
if ($orderrDetail->getFinition() == CartDetail::FINITION_Pelliculemat) {
$array[] = ' '.$this->trans->trans('Finition Pelliculé mat',[],'adminTranslate').' ';
}
if ($orderrDetail->getFinition() == CartDetail::FINITION_PelliculeBrillant) {
$array[] = ' '.$this->trans->trans('Finition Pelliculé Brillant',[],'adminTranslate').' ';
}
}
if($orderrDetail->getProduct()->getIsColorLab()){
}else {
if ($orderrDetail->getAccessoires()) {
foreach ($orderrDetail->getAccessoires() as $item) {
if ($item->getAccessoire()) {
if ($item->getAccessoire()->getTypeAccessoire() == Accessoire::COULEUR) {
$array[] = $this->trans->trans($item->getAccessoire()->getName(),[],'productTranslate') . ' ';
}
}
}
}
if ($product_attribute->getProduct()->getTypeProduct() != Product::AFFICHE) {
if ($product_attribute->getRectoverso()) {
if ($product_attribute->getRectoverso() == ProductAttribute::RECTO) {
$array[] = ' '.$this->trans->trans('Recto',[],'adminTranslate').' ';
} else {
$array[] = ' '.$this->trans->trans('Recto & Verso',[],'adminTranslate').' ';
}
}
}
if ($orderrDetail->getPetitCote()) {
$array[] = ' '.$this->trans->trans('Petit côté',[],'adminTranslate').' ';
}
if ($orderrDetail->getGrandCote()) {
$array[] = ' '.$this->trans->trans('Grand côté',[],'adminTranslate').' ';
}
if ($orderrDetail->getIsReluire()) {
$array[] = ' '.$this->trans->trans('Reliure',[],'adminTranslate').' ';
}
if ($orderrDetail->getImprimSansMarge()) {
$array[] = ' '.$this->trans->trans('Imprimer sans marges',[],'adminTranslate').' ';
}
if ($orderrDetail->getIsDecoupeDoc()) {
$array[] = ' '.$this->trans->trans('Document avec coupe',[],'adminTranslate').' ';
}
if ($orderrDetail->getIsPlusExpert()) {
$array[] = ' '.$this->trans->trans('Avec Expert Copees',[],'adminTranslate').' ';
}
if ($orderrDetail->getMauvaisFormat() == '1') {
$array[] = ' '.$this->trans->trans('le doc sera imprimer avec un bord blancs de 5mm.',[],'adminTranslate').' ';
}
if (!in_array($orderrDetail->getTypeProduct(), array(Product::SIMPLE, Product::PAPIER, Product::PAPIER_POSTE))) {
if ($orderrDetail->getIsMaCrea()) {
$array[] = ' '.$this->trans->trans('Document importé',[],'adminTranslate').' ';
} else {
$array[] = ' '.$this->trans->trans('Document crée',[],'adminTranslate').' ';
}
}
}
}
if($orderrDetail->getAccessoires()){
foreach ($orderrDetail->getAccessoires() as $item){
if($item->getAccessoire()->getTypeAccessoire() == Accessoire::RELUIRE){
$arrayReluire[] = $this->trans->trans($item->getAccessoire()->getName(),[],'productTranslate');
if($item->getPetitCote()){
$arrayReluire[] = ' '.$this->trans->trans('Petit côté',[],'adminTranslate').' ';
}
if($item->getGrandCote()){
$arrayReluire[] = ' '.$this->trans->trans('Grand côté',[],'adminTranslate').' ';
}
if($item->getPapierCovertureMat()){
if($item->getAccessoire()->getTypeReluire() == Accessoire::TYPE_RELUIRE_POINT_METAL){
$arrayReluire[] = ' '.$this->trans->trans('Papier Mat 160g',[],'adminTranslate').' ';
}elseif($item->getAccessoire()->getTypeReluire() == Accessoire::TYPE_RELUIRE_DOS_PIQUEE){
$arrayReluire[] = ' '.$this->trans->trans('Papier Mat 160g',[],'adminTranslate').' ';
}else{
$arrayReluire[] = ' '.$this->trans->trans('Papier 300G Mat',[],'adminTranslate').' ';
}
}
if($item->getPapierCovertureBrillant()){
if($item->getAccessoire()->getTypeReluire() == Accessoire::TYPE_RELUIRE_POINT_METAL) {
$arrayReluire[] = ' '.$this->trans->trans('Papier brillant 160g',[],'adminTranslate').' ';
}elseif($item->getAccessoire()->getTypeReluire() == Accessoire::TYPE_RELUIRE_DOS_PIQUEE) {
$arrayReluire[] = ' '.$this->trans->trans('Papier brillant 160g',[],'adminTranslate').' ';
}else{
$arrayReluire[] = ' '.$this->trans->trans('Papier 300G brillant',[],'adminTranslate').' ';
}
}
if($item->getCouleur()){
$arrayReluire[] =' '.$this->trans->trans('Couleur',[],'adminTranslate').' '. $this->trans->trans($item->getAccessoire()->getName(),[],'productTranslate').': '.$this->trans->trans($this->getColor($item->getCouleur()),[],'productTranslate');
}
if($item->getCouleurDos()){
$arrayReluire[] = ' '.$this->trans->trans('Couleur dos:',[],'adminTranslate').' '.$this->getColor($item->getCouleurDos());
}
}
}
}
$str =implode(',',$array);
$strReluire = !empty($arrayReluire)? '('.implode(',',$arrayReluire).')':'';
return $str.$strReluire;
}
public function getPourcentage($a,$total){
if($a== 0){
return 0;
}else{
$poucentage = $total / $a ;
return round((100 / $poucentage),2);
}
}
public function getValByJson($json,$key=null){
if(!$key)
return json_decode($json,true);
$couleur = [];
if($json){
$couleur = json_decode($json,true);
}
return (isset($couleur[$key]))?$couleur[$key]:null;
}
public function getPriceTotalTtc($cartId){
$cart = $this->em->getRepository(Cart::class)->find($cartId);
$priceTtc = 0;
if($cart){
if($cart->getIsPromo()){
$priceTtc ="<strike>".number_format((float)$cart->getPrixTtc(),2)."€</strike>". number_format((float)$cart->getPrixTtcReduction(),2)." €";
}else{
$priceTtc =number_format((float)$cart->getPrixTtc(),2) ." €";
}
}
return $priceTtc;
}
public function getPriceTotalHt($cartId){
$cart = $this->em->getRepository(Cart::class)->find($cartId);
$priceHt = 0;
if($cart){
if($cart->getIsPromo()){
$priceHt ="<strike>".number_format((float)$cart->getPrixHt(),2)."€</strike>". number_format((float)$cart->getPrixHtReduction(),2)." €";
}else{
$priceHt =number_format((float)$cart->getPrixHt(),2) ." €";
}
}
return $priceHt;
}
public function checkColor($arrayAcc,$idAcc){
foreach ($arrayAcc as $item){
if($item->getAccessoire()) {
if ($item->getAccessoire()->getId() == $idAcc && $item->getAccessoire()->getTypeAccessoire() == Accessoire::COULEUR) {
return true;
}
}
}
return false;
}
public function getAccessoireReluire($cartDetailId){
$accReluire = $this->em->getRepository(CartDetailAccessoire::class)->getAccessoire(Accessoire::RELUIRE,$cartDetailId);
return $accReluire ;
}
public function displayColorD($cartDetailId ,$id_accessoire,$stringColor){
$accReluire = $this->em->getRepository(CartDetailAccessoire::class)->getAccessoire(Accessoire::RELUIRE,$cartDetailId);
if($accReluire){
if($accReluire->getAccessoire()->getId() == $id_accessoire && $accReluire->getCouleurDos() == $stringColor){
return true;
}
}
return false ;
}
public function displayColorR($cartDetailId ,$id_accessoire,$stringColor){
$accReluire = $this->em->getRepository(CartDetailAccessoire::class)->getAccessoire(Accessoire::RELUIRE,$cartDetailId);
if($accReluire){
if($accReluire->getAccessoire()->getId() == $id_accessoire && $accReluire->getCouleur() == $stringColor){
return true;
}
}
return false ;
}
public function getColor($color){
switch ($color){
case 'colorBlackDos':
$colorSting = 'Noir';
break;
case 'colorBlancDos':
$colorSting = 'Blanc';
break;
case 'colorBlueDos':
$colorSting = 'Blue';
break;
case 'colorGreenDos':
$colorSting = 'Vert';
break;
case 'colorRedDos':
$colorSting = 'Rouge';
break;
case 'colorYellowDos':
$colorSting = 'Jaune';
break;
case 'colorTransDos':
$colorSting = 'Transparent';
break;
case 'colorBlackR':
$colorSting = 'Noir';
break;
case 'colorBlancR':
$colorSting = 'Blanc';
break;
case 'colorBlueR':
$colorSting = 'Blue';
break;
case 'colorGreenR':
$colorSting = 'Vert';
break;
case 'colorRedR':
$colorSting = 'Rouge';
break;
case 'colorYellowR':
$colorSting = 'Jaune';
break;
case 'colorTransR':
$colorSting = 'Transparent';
break;
default:
$colorSting = "";
}
return $colorSting ;
}
public function getproductOptionPapier($cartDetailId ){
$cartDetail = $this->em->getRepository(CartDetail::class)->find($cartDetailId);
if($cartDetail){
return $this->twig->render('front/panier/block_option_papier.html.twig', [
'cartDetail' => $cartDetail,
]);
}
return false ;
}
public function getproductOptionCarteAndFlyer($cartDetailId ){
$cartDetail = $this->em->getRepository(CartDetail::class)->find($cartDetailId);
if($cartDetail){
return $this->twig->render('front/panier/block_option_carte_flyer.html.twig', [
'cartDetail' => $cartDetail,
]);
}
return false ;
}
public function getproductOptionAffiche($cartDetailId ){
$cartDetail = $this->em->getRepository(CartDetail::class)->find($cartDetailId);
if($cartDetail){
return $this->twig->render('front/panier/block_option_affiche.html.twig', [
'cartDetail' => $cartDetail,
]);
}
return false ;
}
public function getproductOptionDistribution($distribution ){
if(is_object($distribution)){
return $this->twig->render('front/panier/block_distribution.html.twig', [
'distribution' => $distribution,
]);
}
return false ;
}
public function getPriceDistribution($id){
$cart = $this->em->getRepository(Cart::class)->find($id);
$prixHt = 0;
$prixTtc = 0;
if($cart){
if (count($cart->getDistributionCart()) > 0) {
foreach ($cart->getDistributionCart() as $detail) {
$prixHt += $detail->getPrixHt();
$prixTtc += $detail->getPrixTtc();
}
}
}
return array(
'prixHt' => $prixHt,
'prixTtc' => $prixTtc
) ;
}
public function getInfoOrder($id){
$order = $this->em->getRepository(Orders::class)->find($id);
if($order){
return $this->twig->render('front/myaccount/infoOrder.html.twig', [
'order' => $order,
]);
}
return false ;
}
public function isProductPoste($id){
$cart = $this->em->getRepository(Cart::class)->find($id);
if($cart){
if (count($cart->getCartDetail()) > 0) {
foreach ($cart->getCartDetail() as $detail) {
if($detail->getTypeProduct() == Product::PAPIER_POSTE){
return true;
}
}
}
}
return false ;
}
public function listFont(){
$listFont = $this->nbDesigner->getListFonttyle();
ksort ($listFont);
return $listFont;
}
public function getTitlePageS($pathname){
$pageMeta = $this->em->getRepository(Seo::class)->findOneByNameRoute($pathname);
if($pageMeta){
$str = !empty($pageMeta->getTitre())?$pageMeta->getTitre():null;
}else{
$str = null;
}
return $str;
}
public function getDesciptionS($pathname){
$pageMeta = $this->em->getRepository(Seo::class)->findOneByNameRoute($pathname);
if($pageMeta){
$str = !empty($pageMeta->getContent())?$pageMeta->getContent():null;
}else{
$str = null;
}
return $str;
}
}