src/Entity/ProduitCarrier.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\Order\Order;
  4. use App\Entity\Carrier\Carrier;
  5. use App\Entity\Produit\Produit;
  6. use App\Repository\ProduitCarrierRepository;
  7. use Doctrine\Common\Collections\ArrayCollection;
  8. use Doctrine\Common\Collections\Collection;
  9. use Doctrine\DBAL\Types\Types;
  10. use Doctrine\ORM\Mapping as ORM;
  11. #[ORM\Entity(repositoryClassProduitCarrierRepository::class)]
  12. class ProduitCarrier
  13. {
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue]
  16.     #[ORM\Column]
  17.     private ?int $id null;
  18.     #[ORM\Column(type'decimal'precision10scale2nullable:true)]
  19.     private $priceHt;
  20.     #[ORM\Column(type'decimal'precision10scale2nullable:true)]
  21.     private $priceTtc;
  22.     #[ORM\Column(type'decimal'precision10scale2nullable:true)]
  23.     private $taxRate;
  24.     #[ORM\ManyToOne(inversedBy'produitCarriers')]
  25.     private ?Produit $produit null;
  26.     #[ORM\ManyToOne(inversedBy'produitCarriers')]
  27.     private ?Carrier $carrier null;
  28.     public function __toString(){
  29.         return $this->getCarrier()->getName();
  30.     }
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.    
  36.     public function getProduit(): ?Produit
  37.     {
  38.         return $this->produit;
  39.     }
  40.     public function setProduit(?Produit $produit): static
  41.     {
  42.         $this->produit $produit;
  43.         return $this;
  44.     }
  45.     public function getCarrier(): ?Carrier
  46.     {
  47.         return $this->carrier;
  48.     }
  49.     public function setCarrier(?Carrier $carrier): static
  50.     {
  51.         $this->carrier $carrier;
  52.         return $this;
  53.     }
  54.      
  55.     public function getPrice(): ?string
  56.     {
  57.         return $this->priceTtc;
  58.     }
  59.      public function getPriceHt()
  60.     {
  61.         return $this->priceHt;
  62.     }
  63.     public function setPriceHt($priceHt): self
  64.     {
  65.         $this->priceHt $priceHt;
  66.         return $this;
  67.     }
  68.     public function getPriceTtc()
  69.     {
  70.         return $this->priceTtc;
  71.     }
  72.     public function setPriceTtc($priceTtc): self
  73.     {
  74.         $this->priceTtc $priceTtc;
  75.         return $this;
  76.     }
  77.     public function getTaxRate()
  78.     {
  79.         return $this->taxRate;
  80.     }
  81.     public function setTaxRate($taxRate): self
  82.     {
  83.         $this->taxRate $taxRate;
  84.         return $this;
  85.     }
  86. }