src/Entity/Client.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ClientRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. /**
  8.  * @ORM\Entity(repositoryClass=ClientRepository::class)
  9.  */
  10. class Client
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $raisonSociale;
  22.     /*
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $Siret;
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $idClientMBEHub;
  30.     /**
  31.      * @ORM\Column(type="string", length=255)
  32.      */
  33.     private $nomContact;
  34.     /**
  35.      * @ORM\Column(type="string", length=255)
  36.      */
  37.     private $prenomContact;
  38.     /**
  39.      * @ORM\Column(type="string", length=255, nullable=true)
  40.      */
  41.     private $emailContact;
  42.     /**
  43.      * @ORM\Column(type="string", length=255, nullable=true)
  44.      */
  45.     private $telephoneContact;
  46.     /**
  47.      * @ORM\Column(type="boolean", options={"default":"0"})
  48.      */
  49.     private $assuranceDefaut;
  50.     /**
  51.      * @ORM\Column(type="boolean", options={"default":"0"})
  52.      */
  53.     private $emballageDefaut;
  54.     /**
  55.      * @ORM\Column(type="string", length=255)
  56.      */
  57.     private $codePostal;
  58.     /**
  59.      * @ORM\Column(type="string", length=255)
  60.      */
  61.     private $ville;
  62.     /**
  63.      * @ORM\Column(type="string", length=255)
  64.      */
  65.     private $adresse;
  66.     /**
  67.      * @ORM\OneToMany(targetEntity=Commande::class, mappedBy="client", orphanRemoval=true)
  68.      */    
  69.     private $commandes;
  70.     /**
  71.      * @ORM\OneToOne(targetEntity=User::class, mappedBy="client", cascade={"persist", "remove"})
  72.      */
  73.     private $user;
  74.     /**
  75.      * @ORM\Column(type="string", length=255)
  76.      */
  77.     private $eori;
  78.     /**
  79.      * @ORM\Column(type="boolean", nullable=true, options={"default" : 0})
  80.      */
  81.     private $fastPickup
  82.     public function __construct()
  83.     {
  84.         $this->commandes = new ArrayCollection();
  85.     }
  86.     public function getId(): ?int
  87.     {
  88.         return $this->id;
  89.     }
  90.     public function getRaisonSociale(): ?string
  91.     {
  92.         return $this->raisonSociale;
  93.     }
  94.     public function setRaisonSociale(string $raisonSociale): self
  95.     {
  96.         $this->raisonSociale $raisonSociale;
  97.         return $this;
  98.     }
  99.     public function getSiret(): ?string
  100.     {
  101.         return $this->Siret;
  102.     }
  103.     public function setSiret(string $Siret): self
  104.     {
  105.         $this->Siret $Siret;
  106.         return $this;
  107.     }
  108.     public function getIdClientMBEHub(): ?string
  109.     {
  110.         return $this->idClientMBEHub;
  111.     }
  112.     public function setIdClientMBEHub(?string $idClientMBEHub): self
  113.     {
  114.         $this->idClientMBEHub $idClientMBEHub;
  115.         return $this;
  116.     }
  117.     public function getNomContact(): ?string
  118.     {
  119.         return $this->nomContact;
  120.     }
  121.     public function setNomContact(string $nomContact): self
  122.     {
  123.         $this->nomContact $nomContact;
  124.         return $this;
  125.     }
  126.     public function getPrenomContact(): ?string
  127.     {
  128.         return $this->prenomContact;
  129.     }
  130.     public function setPrenomContact(?string $prenomContact): self
  131.     {
  132.         $this->prenomContact $prenomContact;
  133.         return $this;
  134.     }
  135.     public function getEmailContact(): ?string
  136.     {
  137.         return $this->emailContact;
  138.     }
  139.     public function setEmailContact(string $emailContact): self
  140.     {
  141.         $this->emailContact $emailContact;
  142.         return $this;
  143.     }
  144.     public function getTelephoneContact(): ?string
  145.     {
  146.         return $this->telephoneContact;
  147.     }
  148.     public function setTelephoneContact(?string $telephoneContact): self
  149.     {
  150.         $this->telephoneContact $telephoneContact;
  151.         return $this;
  152.     }
  153.     public function isAssuranceDefaut(): ?bool
  154.     {
  155.         return $this->assuranceDefaut;
  156.     }
  157.     public function setAssuranceDefaut(bool $assuranceDefaut): self
  158.     {
  159.         $this->assuranceDefaut $assuranceDefaut;
  160.         return $this;
  161.     }
  162.     public function isEmballageDefaut(): ?bool
  163.     {
  164.         return $this->emballageDefaut;
  165.     }
  166.     public function setEmballageDefaut(bool $emballageDefaut): self
  167.     {
  168.         $this->emballageDefaut $emballageDefaut;
  169.         return $this;
  170.     }
  171.     public function getCodePostal(): ?string
  172.     {
  173.         return $this->codePostal;
  174.     }
  175.     public function setCodePostal(string $codePostal): self
  176.     {
  177.         $this->codePostal $codePostal;
  178.         return $this;
  179.     }
  180.     public function getVille(): ?string
  181.     {
  182.         return $this->ville;
  183.     }
  184.     public function setVille(string $ville): self
  185.     {
  186.         $this->ville $ville;
  187.         return $this;
  188.     }
  189.     public function getAdresse(): ?string
  190.     {
  191.         return $this->adresse;
  192.     }
  193.     public function setAdresse(string $adresse): self
  194.     {
  195.         $this->adresse $adresse;
  196.         return $this;
  197.     }
  198.     /**
  199.      * @return Collection<int, Commande>
  200.      */
  201.     public function getCommandes(): Collection
  202.     {
  203.         return $this->commandes;
  204.     }
  205.     public function addCommande(Commande $commande): self
  206.     {
  207.         if (!$this->commandes->contains($commande)) {
  208.             $this->commandes[] = $commande;
  209.             $commande->setClient($this);
  210.         }
  211.         return $this;
  212.     }
  213.     public function removeCommande(Commande $commande): self
  214.     {
  215.         if ($this->commandes->removeElement($commande)) {
  216.             // set the owning side to null (unless already changed)
  217.             if ($commande->getClient() === $this) {
  218.                 $commande->setClient(null);
  219.             }
  220.         }
  221.         return $this;
  222.     }    
  223.     public function getUser(): ?User
  224.     {
  225.         return $this->user;
  226.     }
  227.  
  228.     public function setUser(User $user): self
  229.     {
  230.         // set the owning side of the relation if necessary
  231.         if ($user->getClient() !== $this) {
  232.             $user->setClient($this);
  233.         }
  234.         $this->user $user;
  235.         return $this;
  236.     }
  237.     public function getEori(): ?string
  238.     {
  239.         return $this->eori;
  240.     }
  241.     public function setEori(string $eori): self
  242.     {
  243.         $this->eori $eori;
  244.         return $this;
  245.     }
  246.     public function isFastPickup(): ?bool
  247.     {
  248.         return $this->fastPickup;
  249.     }
  250.     public function setFastPickup(?bool $fastPickup): self
  251.     {
  252.         $this->fastPickup $fastPickup;
  253.         return $this;
  254.     }      
  255. }