src/Entity/Products.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductsRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Component\Serializer\Annotation\Groups;
  8. use Symfony\Component\Validator\Constraints as Assert;
  9. /**
  10.  * @ORM\Entity(repositoryClass=ProductsRepository::class)
  11.  */
  12. class Products
  13. {
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      * @Groups({"show_product"})
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      * @Groups({"show_product"})
  24.      * @Assert\NotBlank
  25.      * @Assert\Length(min=3)
  26.      */
  27.     private $name;
  28.     /**
  29.      * @ORM\Column(type="text", length=65535)
  30.      * @Groups({"show_product"})
  31.      * @Assert\NotBlank
  32.      * @Assert\Length(min=3)
  33.      */
  34.     private $description;
  35.     /**
  36.      * @ORM\Column(type="string", length=255)
  37.      * @Groups({"show_product"})
  38.      * @Assert\NotBlank
  39.      * @Assert\Length(min=3)
  40.      */
  41.     private $photo;
  42.     /**
  43.      * @ORM\Column(type="string", length=255)
  44.      * @Groups({"show_product"})
  45.      * @Assert\NotBlank
  46.      * @Assert\Length(min=3)
  47.      */
  48.     private $label;
  49.     /**
  50.      * @ORM\Column(type="string", length=255)
  51.      * @Groups({"show_product"})
  52.      * @Assert\NotBlank
  53.      * @Assert\Length(min=3)
  54.      */
  55.     private $ref;
  56.     /**
  57.      * @ORM\Column(type="decimal", precision=6, scale=2)
  58.      * @Groups({"show_product"})
  59.      * @Assert\NotBlank
  60.      * @Assert\Length(min=3)
  61.      */
  62.     private $price;
  63.     /**
  64.      * @ORM\Column(type="integer")
  65.      * @Groups({"show_product"})
  66.      * @Assert\NotBlank
  67.      * @Assert\Length(min=1)
  68.      */
  69.     private $status;
  70.     /**
  71.      * @ORM\Column(type="integer")
  72.      * @Groups({"show_product"})
  73.      * @Assert\NotBlank
  74.      */
  75.     private $stock;
  76.     /**
  77.      * @ORM\ManyToOne(targetEntity=Categories::class, inversedBy="parentcat")
  78.      * @ORM\JoinColumn(nullable=false)
  79.      * @Groups({"show_product"})
  80.      * @Assert\NotBlank
  81.      */
  82.     private $catprod;
  83.     /**
  84.      * @ORM\ManyToOne(targetEntity=Employees::class, inversedBy="products")
  85.      * @ORM\JoinColumn(nullable=false)
  86.      *  @Groups({"show_product"})
  87.      * @Assert\NotBlank
  88.      * @Assert\Length(min=3)
  89.      */
  90.     private $emp;
  91.     /**
  92.      * @ORM\OneToMany(targetEntity=OrdersDetails::class, mappedBy="product")
  93.      */
  94.     private $ordersDetails;
  95.     public function __construct()
  96.     {
  97.         $this->ordersDetails = new ArrayCollection();
  98.     }
  99.     public function getId(): ?int
  100.     {
  101.         return $this->id;
  102.     }
  103.     public function getName(): ?string
  104.     {
  105.         return $this->name;
  106.     }
  107.     public function setName(string $name): self
  108.     {
  109.         $this->name $name;
  110.         return $this;
  111.     }
  112.     public function getDescription(): ?string
  113.     {
  114.         return $this->description;
  115.     }
  116.     public function setDescription(string $description): self
  117.     {
  118.         $this->description $description;
  119.         return $this;
  120.     }
  121.     public function getPhoto(): ?string
  122.     {
  123.         return $this->photo;
  124.     }
  125.     public function setPhoto(string $photo): self
  126.     {
  127.         $this->photo $photo;
  128.         return $this;
  129.     }
  130.     public function getLabel(): ?string
  131.     {
  132.         return $this->label;
  133.     }
  134.     public function setLabel(string $label): self
  135.     {
  136.         $this->label $label;
  137.         return $this;
  138.     }
  139.     public function getRef(): ?string
  140.     {
  141.         return $this->ref;
  142.     }
  143.     public function setRef(string $ref): self
  144.     {
  145.         $this->ref $ref;
  146.         return $this;
  147.     }
  148.     public function getPrice(): ?string
  149.     {
  150.         return $this->price;
  151.     }
  152.     public function setPrice(string $price): self
  153.     {
  154.         $this->price $price;
  155.         return $this;
  156.     }
  157.     public function getStatus(): ?int
  158.     {
  159.         return $this->status;
  160.     }
  161.     public function setStatus(int $status): self
  162.     {
  163.         $this->status $status;
  164.         return $this;
  165.     }
  166.     public function getStock(): ?int
  167.     {
  168.         return $this->stock;
  169.     }
  170.     public function setStock(int $stock): self
  171.     {
  172.         $this->stock $stock;
  173.         return $this;
  174.     }
  175.     public function getCatprod(): ?Categories
  176.     {
  177.         return $this->catprod;
  178.     }
  179.     public function setCatprod(?Categories $catprod): self
  180.     {
  181.         $this->catprod $catprod;
  182.         return $this;
  183.     }
  184.     public function getEmp(): ?employees
  185.     {
  186.         return $this->emp;
  187.     }
  188.     public function setEmp(?employees $emp): self
  189.     {
  190.         $this->emp $emp;
  191.         return $this;
  192.     }
  193.     /**
  194.      * @return Collection<int, OrdersDetails>
  195.      */
  196.     public function getOrdersDetails(): Collection
  197.     {
  198.         return $this->ordersDetails;
  199.     }
  200.     public function addOrdersDetail(OrdersDetails $ordersDetail): self
  201.     {
  202.         if (!$this->ordersDetails->contains($ordersDetail)) {
  203.             $this->ordersDetails[] = $ordersDetail;
  204.             $ordersDetail->setProduct($this);
  205.         }
  206.         return $this;
  207.     }
  208.     public function removeOrdersDetail(OrdersDetails $ordersDetail): self
  209.     {
  210.         if ($this->ordersDetails->removeElement($ordersDetail)) {
  211.             // set the owning side to null (unless already changed)
  212.             if ($ordersDetail->getProduct() === $this) {
  213.                 $ordersDetail->setProduct(null);
  214.             }
  215.         }
  216.         return $this;
  217.     }
  218. }