src/Entity/FO/Parametrage.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity\FO;
  3. use App\Entity\Utilisateur\Utilisateur;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Mapping\Annotation as Gedmo;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use App\Annotations\SecuredEntity;
  8. /**
  9.  * Parametrage
  10.  *
  11.  * @ORM\Table("societe__parametrage")
  12.  * @ORM\Entity(repositoryClass="App\Repository\FO\ParametrageRepository")
  13.  * @SecuredEntity(name="Compte Bancaire", group="REGLAGES")
  14.  */
  15. class Parametrage
  16. {
  17.     /**
  18.      * @ORM\Column(name="id", type="integer")
  19.      * @ORM\Id
  20.      * @ORM\GeneratedValue(strategy="AUTO")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @ORM\Column(name="couleur", type="string", length=255, nullable=true)
  25.      */
  26.     private $couleur;
  27.     /**
  28.      * @ORM\Column(name="regles_declinaison", type="text", nullable=true)
  29.      */
  30.     private $reglesDeclinaison;
  31.     /**
  32.      * @ORM\Column(name="couleurLien", type="string", length=255, nullable=true)
  33.      */
  34.     private $couleurLien;
  35.     /**
  36.      * @ORM\Column(name="texte_mail_devis", type="text", nullable=true)
  37.      *
  38.     */
  39.     private $texteMailDevis;
  40.     /**
  41.      * @var string
  42.      *
  43.      * @ORM\Column(name="texte_1_pdf_commande", type="text", nullable=true)
  44.      *
  45.      */
  46.     private $textePdf1Commande;
  47.     /**
  48.      * @var string
  49.      *
  50.      * @ORM\Column(name="texte_2_pdf_commande", type="text", nullable=true)
  51.      *
  52.      */
  53.     private $textePdf2Commande;
  54.     /**
  55.      * @var string
  56.      *
  57.      * @ORM\Column(name="texte_1_pdf_devis", type="text", nullable=true)
  58.      *
  59.      */
  60.     private $textePdf1Devis;
  61.     /**
  62.      * @var string
  63.      *
  64.      * @ORM\Column(name="texte_2_pdf_devis", type="text", nullable=true)
  65.      *
  66.      */
  67.     private $textePdf2Devis;
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="texte_1_pdf_bl", type="text", nullable=true)
  72.      *
  73.      */
  74.     private $textePdf1Bl;
  75.     /**
  76.      * @var string
  77.      *
  78.      * @ORM\Column(name="texte_2_pdf_bl", type="text", nullable=true)
  79.      *
  80.      */
  81.     private $textePdf2Bl;
  82.     /**
  83.      * @var string
  84.      *
  85.      * @ORM\Column(name="texte_1_pdf_facture", type="text", nullable=true)
  86.      *
  87.      */
  88.     private $textePdf1Facture;
  89.     /**
  90.      * @var string
  91.      *
  92.      * @ORM\Column(name="texte_2_pdf_facture", type="text", nullable=true)
  93.      *
  94.      */
  95.     private $textePdf2Facture;
  96.     /**
  97.      * @ORM\Column(name="texte_mail_commande_fournisseur", type="text", nullable=true)
  98.      *
  99.     */
  100.     private $texteMailCommandeFournisseur;
  101.     /**
  102.      * @ORM\Column(name="texte_mail_commande", type="text", nullable=true)
  103.      *
  104.     */
  105.     private $texteMailCommande;
  106.     /**
  107.      * @ORM\Column(name="texte_mail_facture", type="text", nullable=true)
  108.      *
  109.     */
  110.     private $texteMailFacture;
  111.     /**
  112.      * @ORM\Column(name="texte_mail_bl", type="text", nullable=true)
  113.      *
  114.     */
  115.     private $texteMailBl;
  116.     /**
  117.      * @ORM\Column(name="bp_auto", type="boolean", nullable=true)
  118.      */
  119.     private $bpAuto;
  120.     /**
  121.      * @ORM\Column(name="popin_prix", type="boolean", nullable=true)
  122.      */
  123.     private $popinPrix;
  124.     /**
  125.      * @ORM\Column(name="popin_frais_port", type="boolean", nullable=true)
  126.      */
  127.     private $popinFraisPort;
  128.     /**
  129.      * @ORM\Column(name="popin_solde", type="boolean", nullable=true)
  130.      */
  131.     private $popinSolde;
  132.     /**
  133.      * @ORM\Column(name="email_condition_echeance", type="boolean", nullable=true)
  134.      */
  135.     private $emailConditionEcheance;
  136.     /**
  137.      * @ORM\Column(name="adresse_email_condition_echeance", type="string", length=255, nullable=true)
  138.      */
  139.     private $adresseEmailConditionEcheance;
  140.     /**
  141.      * @ORM\Column(name="adresse_email_technique", type="string", length=255, nullable=true)
  142.      */
  143.     private $adresseEmailTechnique;
  144.     /**
  145.      * @ORM\Column(name="gls_login", type="string", length=255, nullable=true)
  146.      */
  147.     private $glsLogin;
  148.     /**
  149.      * @ORM\Column(name="gls_password", type="string", length=255, nullable=true)
  150.      */
  151.     private $glsPassword;
  152.     /**
  153.      * @ORM\Column(name="colissimo_login", type="string", length=255, nullable=true)
  154.      */
  155.     private $colissimoLogin;
  156.     /**
  157.      * @ORM\Column(name="colissimo_password", type="string", length=255, nullable=true)
  158.      */
  159.     private $colissimoPassword;
  160.     /**
  161.      * @ORM\Column(name="chronopost_login", type="string", length=255, nullable=true)
  162.      */
  163.     private $chronopostLogin;
  164.     /**
  165.      * @ORM\Column(name="chronopost_password", type="string", length=255, nullable=true)
  166.      */
  167.     private $chronopostPassword;
  168.     /**
  169.      * @ORM\Column(name="gls_customer_id", type="string", length=255, nullable=true)
  170.      */
  171.     private $glsCustomerId;
  172.     /**
  173.      * @ORM\Column(name="gls_contact_id", type="string", length=255, nullable=true)
  174.      */
  175.     private $glsContactId;
  176.     /**
  177.      * @ORM\Column(name="gls_test", type="boolean", nullable=true, options={"default": true})
  178.      */
  179.     private $glsTest;
  180.     /**
  181.      * @ORM\Column(name="tnt_user_name", type="string", length=255, nullable=true)
  182.      */
  183.     private $tntUserName;
  184.     /**
  185.      * @ORM\Column(name="tnt_password", type="string", length=255, nullable=true)
  186.      */
  187.     private $tntPassword;
  188.     /**
  189.      * @ORM\Column(name="tnt_compte", type="string", length=255, nullable=true)
  190.      */
  191.     private $tntCompte;
  192.     /**
  193.      * @ORM\Column(name="tnt_test", type="boolean", nullable=true)
  194.      */
  195.     private $tntTest;
  196.     /**
  197.      * @ORM\Column(name="imprimante_etiquette", type="string", length=255, nullable=true)
  198.      */
  199.     private $imprimanteEtiquette;
  200.     /**
  201.      * @ORM\Column(name="imprimante_flag", type="string", length=255, nullable=true)
  202.      */
  203.     private $imprimanteFlag;
  204.     /**
  205.      * @ORM\Column(name="ciblex_compte", type="string", length=255, nullable=true)
  206.      */
  207.     private $ciblexCompte;
  208.     /**
  209.      * @ORM\Column(name="ciblex_contrat", type="string", length=255, nullable=true)
  210.      */
  211.     private $ciblexContrat;
  212.     /**
  213.      * @ORM\Column(name="ciblex_cle", type="string", length=255, nullable=true)
  214.      */
  215.     private $ciblexCle;
  216.     /**
  217.      * @ORM\Column(name="ciblex_id", type="string", length=255, nullable=true)
  218.      */
  219.     private $ciblexId;
  220.     /**
  221.      * @ORM\Column(name="ciblex_test", type="boolean", nullable=true)
  222.      */
  223.     private $ciblexTest;
  224.     /**
  225.      * @ORM\Column(name="delivengo_identifiant", type="string", length=255, nullable=true)
  226.      */
  227.     private $delivengoIdentifiant;
  228.     /**
  229.      * @ORM\Column(name="nb_jours_avant_suppression_fichiers_import", type="integer", nullable=true)
  230.      */
  231.     private $nbJoursAvantSuppressionFichiersImport;
  232.     /**
  233.      * @ORM\Column(name="nb_jours_avant_suppression_fichiers_export", type="integer", nullable=true)
  234.      */
  235.     private $nbJoursAvantSuppressionFichiersExport;
  236.     public function getId(): int
  237.     {
  238.         return $this->id;
  239.     }
  240.     public function setCouleur(?string $couleur): Parametrage
  241.     {
  242.         $this->couleur $couleur;
  243.         return $this;
  244.     }
  245.     public function getCouleur(): ?string
  246.     {
  247.         return $this->couleur;
  248.     }
  249.     public function setCouleurLien(?string $couleurLien): Parametrage
  250.     {
  251.         $this->couleurLien $couleurLien;
  252.         return $this;
  253.     }
  254.     public function getCouleurLien(): ?string
  255.     {
  256.         return $this->couleurLien;
  257.     }
  258.     public function setUtilisateur(?Utilisateur $utilisateur): Parametrage
  259.     {
  260.         $this->utilisateur $utilisateur;
  261.         return $this;
  262.     }
  263.     public function getUtilisateur(): ?Utilisateur
  264.     {
  265.         return $this->utilisateur;
  266.     }
  267.     public function setAfficherDonneesImport(bool $afficherDonneesImport): Parametrage
  268.     {
  269.         $this->afficherDonneesImport $afficherDonneesImport;
  270.         return $this;
  271.     }
  272.     public function getAfficherDonneesImport(): bool
  273.     {
  274.         return $this->afficherDonneesImport;
  275.     }
  276.     public function setTexteMailDevis(?string $texteMailDevis): Parametrage
  277.     {
  278.         $this->texteMailDevis $texteMailDevis;
  279.         return $this;
  280.     }
  281.     public function getTexteMailDevis(): ?string
  282.     {
  283.         return $this->texteMailDevis;
  284.     }
  285.     public function setTexteMailCommande(?string $texteMailCommande): Parametrage
  286.     {
  287.         $this->texteMailCommande $texteMailCommande;
  288.         return $this;
  289.     }
  290.     public function getTexteMailCommande(): ?string
  291.     {
  292.         return $this->texteMailCommande;
  293.     }
  294.     public function setTexteMailFacture(?string $texteMailFacture): Parametrage
  295.     {
  296.         $this->texteMailFacture $texteMailFacture;
  297.         return $this;
  298.     }
  299.     public function getTexteMailFacture(): ?string
  300.     {
  301.         return $this->texteMailFacture;
  302.     }
  303.     public function setTexteMailBl(?string $texteMailBl): Parametrage
  304.     {
  305.         $this->texteMailBl $texteMailBl;
  306.         return $this;
  307.     }
  308.     public function getTexteMailBl(): ?string
  309.     {
  310.         return $this->texteMailBl;
  311.     }
  312.     public function setBpAuto(?bool $bpAuto): Parametrage
  313.     {
  314.         $this->bpAuto $bpAuto;
  315.         return $this;
  316.     }
  317.     public function getBpAuto(): ?bool
  318.     {
  319.         return $this->bpAuto;
  320.     }
  321.     public function setEmailConditionEcheance(?bool $emailConditionEcheance): Parametrage
  322.     {
  323.         $this->emailConditionEcheance $emailConditionEcheance;
  324.         return $this;
  325.     }
  326.     public function getEmailConditionEcheance(): ?bool
  327.     {
  328.         return $this->emailConditionEcheance;
  329.     }
  330.     public function setAdresseEmailConditionEcheance(?string $adresseEmailConditionEcheance): Parametrage
  331.     {
  332.         $this->adresseEmailConditionEcheance $adresseEmailConditionEcheance;
  333.         return $this;
  334.     }
  335.     public function getAdresseEmailConditionEcheance(): ?string
  336.     {
  337.         return $this->adresseEmailConditionEcheance;
  338.     }
  339.     public function setTexteMailCommandeFournisseur(?string $texteMailCommandeFournisseur): Parametrage
  340.     {
  341.         $this->texteMailCommandeFournisseur $texteMailCommandeFournisseur;
  342.         return $this;
  343.     }
  344.     public function getTexteMailCommandeFournisseur(): ?string
  345.     {
  346.         return $this->texteMailCommandeFournisseur;
  347.     }
  348.     public function setPopinPrix(?bool $popinPrix): Parametrage
  349.     {
  350.         $this->popinPrix $popinPrix;
  351.         return $this;
  352.     }
  353.     public function getPopinPrix(): ?bool
  354.     {
  355.         return $this->popinPrix;
  356.     }
  357.     public function setPopinSolde(?bool $popinSolde): Parametrage
  358.     {
  359.         $this->popinSolde $popinSolde;
  360.         return $this;
  361.     }
  362.     public function getPopinSolde(): ?bool
  363.     {
  364.         return $this->popinSolde;
  365.     }
  366.     public function setPopinFraisPort(?bool $popinFraisPort): Parametrage
  367.     {
  368.         $this->popinFraisPort $popinFraisPort;
  369.         return $this;
  370.     }
  371.     public function getPopinFraisPort(): ?bool
  372.     {
  373.         return $this->popinFraisPort;
  374.     }
  375.     public function setReglesDeclinaison(?string $reglesDeclinaison): Parametrage
  376.     {
  377.         $this->reglesDeclinaison $reglesDeclinaison;
  378.         return $this;
  379.     }
  380.     public function getReglesDeclinaison(): string
  381.     {
  382.         return $this->reglesDeclinaison;
  383.     }
  384.     public function getReglesDeclinaisonUnserialize(): ?array
  385.     {
  386.         return unserialize($this->reglesDeclinaison);
  387.     }
  388.     public function setTntUserName(?string $tntUserName): Parametrage
  389.     {
  390.         $this->tntUserName $tntUserName;
  391.         return $this;
  392.     }
  393.     public function getTntUserName(): ?string
  394.     {
  395.         return $this->tntUserName;
  396.     }
  397.     public function setTntPassword(?string $tntPassword): Parametrage
  398.     {
  399.         $this->tntPassword $tntPassword;
  400.         return $this;
  401.     }
  402.     public function getTntPassword(): ?string
  403.     {
  404.         return $this->tntPassword;
  405.     }
  406.     public function setTntCompte(?string $tntCompte): Parametrage
  407.     {
  408.         $this->tntCompte $tntCompte;
  409.         return $this;
  410.     }
  411.     public function getTntCompte(): ?string
  412.     {
  413.         return $this->tntCompte;
  414.     }
  415.     public function setTntTest(?bool $tntTest): Parametrage
  416.     {
  417.         $this->tntTest $tntTest;
  418.         return $this;
  419.     }
  420.     public function getTntTest(): ?bool
  421.     {
  422.         return $this->tntTest;
  423.     }
  424.     public function setAdresseEmailTechnique(?string $adresseEmailTechnique): Parametrage
  425.     {
  426.         $this->adresseEmailTechnique $adresseEmailTechnique;
  427.         return $this;
  428.     }
  429.     public function getAdresseEmailTechnique(): ?string
  430.     {
  431.         return $this->adresseEmailTechnique;
  432.     }
  433.     public function setGlsLogin(?string $glsLogin): Parametrage
  434.     {
  435.         $this->glsLogin $glsLogin;
  436.         return $this;
  437.     }
  438.     public function getGlsLogin(): ?string
  439.     {
  440.         return $this->glsLogin;
  441.     }
  442.     public function setGlsPassword(?string $glsPassword): Parametrage
  443.     {
  444.         $this->glsPassword $glsPassword;
  445.         return $this;
  446.     }
  447.     public function getGlsPassword(): ?string
  448.     {
  449.         return $this->glsPassword;
  450.     }
  451.     public function setGlsCustomerId(?string $glsCustomerId): Parametrage
  452.     {
  453.         $this->glsCustomerId $glsCustomerId;
  454.         return $this;
  455.     }
  456.     public function getGlsCustomerId(): ?string
  457.     {
  458.         return $this->glsCustomerId;
  459.     }
  460.     public function setGlsContactId(?string $glsContactId): Parametrage
  461.     {
  462.         $this->glsContactId $glsContactId;
  463.         return $this;
  464.     }
  465.     public function getGlsContactId(): ?string
  466.     {
  467.         return $this->glsContactId;
  468.     }
  469.     public function setGlsTest(?bool $glsTest): Parametrage
  470.     {
  471.         $this->glsTest $glsTest;
  472.         return $this;
  473.     }
  474.     public function getGlsTest(): ?bool
  475.     {
  476.         return $this->glsTest;
  477.     }
  478.     public function setColissimoLogin(?string $colissimoLogin): Parametrage
  479.     {
  480.         $this->colissimoLogin $colissimoLogin;
  481.         return $this;
  482.     }
  483.     public function getColissimoLogin(): ?string
  484.     {
  485.         return $this->colissimoLogin;
  486.     }
  487.     public function setColissimoPassword(?string $colissimoPassword): Parametrage
  488.     {
  489.         $this->colissimoPassword $colissimoPassword;
  490.         return $this;
  491.     }
  492.     public function getColissimoPassword(): ?string
  493.     {
  494.         return $this->colissimoPassword;
  495.     }
  496.     public function setChronopostLogin(?string $chronopostLogin): Parametrage
  497.     {
  498.         $this->chronopostLogin $chronopostLogin;
  499.         return $this;
  500.     }
  501.     public function getChronopostLogin(): ?string
  502.     {
  503.         return $this->chronopostLogin;
  504.     }
  505.     public function setChronopostPassword(?string $chronopostPassword): Parametrage
  506.     {
  507.         $this->chronopostPassword $chronopostPassword;
  508.         return $this;
  509.     }
  510.     public function getChronopostPassword(): ?string
  511.     {
  512.         return $this->chronopostPassword;
  513.     }
  514.     public function setDelivengoIdentifiant(?string $delivengoIdentifiant): Parametrage
  515.     {
  516.         $this->delivengoIdentifiant $delivengoIdentifiant;
  517.         return $this;
  518.     }
  519.     public function getDelivengoIdentifiant(): ?string
  520.     {
  521.         return $this->delivengoIdentifiant;
  522.     }
  523.     public function isBpAuto(): ?bool
  524.     {
  525.         return $this->bpAuto;
  526.     }
  527.     public function isPopinPrix(): ?bool
  528.     {
  529.         return $this->popinPrix;
  530.     }
  531.     public function isPopinFraisPort(): ?bool
  532.     {
  533.         return $this->popinFraisPort;
  534.     }
  535.     public function isPopinSolde(): ?bool
  536.     {
  537.         return $this->popinSolde;
  538.     }
  539.     public function isEmailConditionEcheance(): ?bool
  540.     {
  541.         return $this->emailConditionEcheance;
  542.     }
  543.     public function isGlsTest(): ?bool
  544.     {
  545.         return $this->glsTest;
  546.     }
  547.     public function isTntTest(): ?bool
  548.     {
  549.         return $this->tntTest;
  550.     }
  551.     public function getCiblexCompte(): ?string
  552.     {
  553.         return $this->ciblexCompte;
  554.     }
  555.     public function setCiblexCompte(?string $ciblexCompte): self
  556.     {
  557.         $this->ciblexCompte $ciblexCompte;
  558.         return $this;
  559.     }
  560.     public function getCiblexContrat(): ?string
  561.     {
  562.         return $this->ciblexContrat;
  563.     }
  564.     public function setCiblexContrat(?string $ciblexContrat): self
  565.     {
  566.         $this->ciblexContrat $ciblexContrat;
  567.         return $this;
  568.     }
  569.     public function getCiblexCle(): ?string
  570.     {
  571.         return $this->ciblexCle;
  572.     }
  573.     public function setCiblexCle(?string $ciblexCle): self
  574.     {
  575.         $this->ciblexCle $ciblexCle;
  576.         return $this;
  577.     }
  578.     public function getCiblexId(): ?string
  579.     {
  580.         return $this->ciblexId;
  581.     }
  582.     public function setCiblexId(?string $ciblexId): self
  583.     {
  584.         $this->ciblexId $ciblexId;
  585.         return $this;
  586.     }
  587.     public function isCiblexTest(): ?bool
  588.     {
  589.         return $this->ciblexTest;
  590.     }
  591.     public function setCiblexTest(?bool $ciblexTest): self
  592.     {
  593.         $this->ciblexTest $ciblexTest;
  594.         return $this;
  595.     }
  596.     public function getImprimanteEtiquette(): ?string
  597.     {
  598.         return $this->imprimanteEtiquette;
  599.     }
  600.     public function setImprimanteEtiquette(?string $imprimanteEtiquette): self
  601.     {
  602.         $this->imprimanteEtiquette $imprimanteEtiquette;
  603.         return $this;
  604.     }
  605.     public function getImprimanteFlag(): ?string
  606.     {
  607.         return $this->imprimanteFlag;
  608.     }
  609.     public function setImprimanteFlag(?string $imprimanteFlag): self
  610.     {
  611.         $this->imprimanteFlag $imprimanteFlag;
  612.         return $this;
  613.     }
  614.     public function getTextePdf1Commande(): ?string
  615.     {
  616.         return $this->textePdf1Commande;
  617.     }
  618.     public function setTextePdf1Commande(?string $textePdf1Commande): self
  619.     {
  620.         $this->textePdf1Commande $textePdf1Commande;
  621.         return $this;
  622.     }
  623.     public function getTextePdf2Commande(): ?string
  624.     {
  625.         return $this->textePdf2Commande;
  626.     }
  627.     public function setTextePdf2Commande(?string $textePdf2Commande): self
  628.     {
  629.         $this->textePdf2Commande $textePdf2Commande;
  630.         return $this;
  631.     }
  632.     public function getTextePdf1Devis(): ?string
  633.     {
  634.         return $this->textePdf1Devis;
  635.     }
  636.     public function setTextePdf1Devis(?string $textePdf1Devis): self
  637.     {
  638.         $this->textePdf1Devis $textePdf1Devis;
  639.         return $this;
  640.     }
  641.     public function getTextePdf2Devis(): ?string
  642.     {
  643.         return $this->textePdf2Devis;
  644.     }
  645.     public function setTextePdf2Devis(?string $textePdf2Devis): self
  646.     {
  647.         $this->textePdf2Devis $textePdf2Devis;
  648.         return $this;
  649.     }
  650.     public function getTextePdf1Bl(): ?string
  651.     {
  652.         return $this->textePdf1Bl;
  653.     }
  654.     public function setTextePdf1Bl(?string $textePdf1Bl): self
  655.     {
  656.         $this->textePdf1Bl $textePdf1Bl;
  657.         return $this;
  658.     }
  659.     public function getTextePdf2Bl(): ?string
  660.     {
  661.         return $this->textePdf2Bl;
  662.     }
  663.     public function setTextePdf2Bl(?string $textePdf2Bl): self
  664.     {
  665.         $this->textePdf2Bl $textePdf2Bl;
  666.         return $this;
  667.     }
  668.     public function getTextePdf1Facture(): ?string
  669.     {
  670.         return $this->textePdf1Facture;
  671.     }
  672.     public function setTextePdf1Facture(?string $textePdf1Facture): self
  673.     {
  674.         $this->textePdf1Facture $textePdf1Facture;
  675.         return $this;
  676.     }
  677.     public function getTextePdf2Facture(): ?string
  678.     {
  679.         return $this->textePdf2Facture;
  680.     }
  681.     public function setTextePdf2Facture(?string $textePdf2Facture): self
  682.     {
  683.         $this->textePdf2Facture $textePdf2Facture;
  684.         return $this;
  685.     }
  686.     public function getNbJoursAvantSuppressionFichiersImport(): ?int
  687.     {
  688.         return $this->nbJoursAvantSuppressionFichiersImport;
  689.     }
  690.     public function setNbJoursAvantSuppressionFichiersImport(?int $nbJoursAvantSuppressionFichiersImport): self
  691.     {
  692.         $this->nbJoursAvantSuppressionFichiersImport $nbJoursAvantSuppressionFichiersImport;
  693.         return $this;
  694.     }
  695.     public function getNbJoursAvantSuppressionFichiersExport(): ?int
  696.     {
  697.         return $this->nbJoursAvantSuppressionFichiersExport;
  698.     }
  699.     public function setNbJoursAvantSuppressionFichiersExport(?int $nbJoursAvantSuppressionFichiersExport): self
  700.     {
  701.         $this->nbJoursAvantSuppressionFichiersExport $nbJoursAvantSuppressionFichiersExport;
  702.         return $this;
  703.     }
  704. }