src/Entity/Produit/Garantie.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Produit;
  3. use App\Entity\Order\OrderLineGarantie;
  4. use App\Repository\GarantieRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use App\Entity\Produit\Produit;
  9. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  10. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  11. #[ORM\Entity(repositoryClassGarantieRepository::class)]
  12. class Garantie implements TranslatableInterface
  13. {
  14.     use TranslatableTrait;
  15.     #[Assert\Valid]
  16.     protected $translations;
  17.     #[ORM\Id]
  18.     #[ORM\GeneratedValue]
  19.     #[ORM\Column(type'integer')]
  20.     private $id;
  21.     #[ORM\ManyToMany(targetEntityProduit::class, mappedBy'garantie')]
  22.     private $produits;
  23.      #[ORM\Column(type'decimal'precision10scale2nullable:true)]
  24.     private $priceHt;
  25.     #[ORM\Column(type'decimal'precision10scale2nullable:true)]
  26.     private $priceTtc;
  27.     #[ORM\Column(type'decimal'precision10scale2nullable:true)]
  28.     private $taxRate;
  29.     #[ORM\OneToMany(mappedBy'garantie'targetEntityOrderLineGarantie::class)]
  30.     private Collection $orderLineGaranties;
  31.     public function __construct()
  32.     {
  33.         $this->produits = new ArrayCollection();
  34.         $this->orderLineGaranties = new ArrayCollection();
  35.     }
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.  
  41.     public function getPrice(): ?string
  42.     {
  43.         return $this->priceTtc;
  44.     }
  45.      public function getPriceHt()
  46.     {
  47.         return $this->priceHt;
  48.     }
  49.     public function setPriceHt($priceHt): self
  50.     {
  51.         $this->priceHt $priceHt;
  52.         return $this;
  53.     }
  54.     public function getPriceTtc()
  55.     {
  56.         return $this->priceTtc;
  57.     }
  58.     public function setPriceTtc($priceTtc): self
  59.     {
  60.         $this->priceTtc $priceTtc;
  61.         return $this;
  62.     }
  63.     public function getTaxRate()
  64.     {
  65.         return $this->taxRate;
  66.     }
  67.     public function setTaxRate($taxRate): self
  68.     {
  69.         $this->taxRate $taxRate;
  70.         return $this;
  71.     }
  72.     /**
  73.      * @return Collection<int, Produit>
  74.      */
  75.     public function getProduits(): Collection
  76.     {
  77.         return $this->produits;
  78.     }
  79.     public function addProduit(Produit $produit): self
  80.     {
  81.         if (!$this->produits->contains($produit)) {
  82.             $this->produits[] = $produit;
  83.             $produit->addGarantie($this);
  84.         }
  85.         return $this;
  86.     }
  87.     public function removeProduit(Produit $produit): self
  88.     {
  89.         if ($this->produits->removeElement($produit)) {
  90.             $produit->removeGarantie($this);
  91.         }
  92.         return $this;
  93.     }
  94.      public function getName(): ?string
  95.     {
  96.         if($this->translate()->getName()) {
  97.             return $this->translate()->getName();
  98.         }
  99.         return '';
  100.     }
  101.      /**
  102.       * @return Collection<int, OrderLineGarantie>
  103.       */
  104.      public function getOrderLineGaranties(): Collection
  105.      {
  106.          return $this->orderLineGaranties;
  107.      }
  108.      public function addOrderLineGaranty(OrderLineGarantie $orderLineGaranty): static
  109.      {
  110.          if (!$this->orderLineGaranties->contains($orderLineGaranty)) {
  111.              $this->orderLineGaranties->add($orderLineGaranty);
  112.              $orderLineGaranty->setGarantie($this);
  113.          }
  114.          return $this;
  115.      }
  116.      public function removeOrderLineGaranty(OrderLineGarantie $orderLineGaranty): static
  117.      {
  118.          if ($this->orderLineGaranties->removeElement($orderLineGaranty)) {
  119.              // set the owning side to null (unless already changed)
  120.              if ($orderLineGaranty->getGarantie() === $this) {
  121.                  $orderLineGaranty->setGarantie(null);
  122.              }
  123.          }
  124.          return $this;
  125.      }
  126.      public function __toString(){
  127.         return $this->translate()->getName();
  128.      }
  129. }