src/Entity/ProductPriceScale.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductPriceScaleRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Blameable\Traits\BlameableEntity;
  8. use Gedmo\Timestampable\Traits\TimestampableEntity;
  9. use Symfony\Component\Validator\Constraints as Assert;
  10. #[ORM\Entity(repositoryClassProductPriceScaleRepository::class)]
  11. class ProductPriceScale
  12. {
  13.     use BlameableEntity//Hook blameable behaviour. Updates createdBy, updatedBy fields
  14.     use TimestampableEntity//Hook timestampable behaviour. Updates createdAt, updatedAt fields 
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue(strategy"IDENTITY")]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column]
  20.     #[Assert\NotNull()]
  21.     #[Assert\PositiveOrZero()]
  22.     private ?float $initialPrice null;
  23.     #[ORM\Column]
  24.     #[Assert\NotNull()]
  25.     #[Assert\PositiveOrZero()]
  26.     private ?float $finalPrice null;
  27.     #[ORM\Column]
  28.     #[Assert\NotNull()]
  29.     #[Assert\PositiveOrZero()]
  30.     private ?int $scaleQuantity null;
  31.     #[ORM\Column(nullabletrue)]
  32.     #[Assert\PositiveOrZero()]
  33.     private ?int $scaleQuantityAvailable null;
  34.     #[ORM\Column]
  35.     #[Assert\NotNull()]
  36.     #[Assert\PositiveOrZero()]
  37.     private ?int $totalMinQuantity null;
  38.     #[ORM\Column]
  39.     #[Assert\NotNull()]
  40.     #[Assert\PositiveOrZero()]
  41.     private ?int $totalMaxQuantity null;
  42.     #[ORM\Column]
  43.     #[Assert\NotNull()]
  44.     #[Assert\PositiveOrZero()]
  45.     private ?float $referredPoints null;
  46.     #[ORM\Column]
  47.     #[Assert\NotNull()]
  48.     #[Assert\PositiveOrZero()]
  49.     private ?float $extraReferredPoints null;
  50.     #[ORM\Column]
  51.     #[Assert\NotNull()]
  52.     private ?bool $sellProductIfNotComplete true;
  53.     #[ORM\ManyToOne(inversedBy'priceScales')]
  54.     #[ORM\JoinColumn(nullablefalse)]
  55.     private ?Product $product null;
  56.     #[ORM\OneToMany(mappedBy'productPriceScale'targetEntityOrderDetail::class)]
  57.     private Collection $orderDetails;
  58.     public function __construct()
  59.     {
  60.         $this->orderDetails = new ArrayCollection();
  61.     }
  62.     public function getId(): ?int
  63.     {
  64.         return $this->id;
  65.     }
  66.     public function getInitialPrice(): ?float
  67.     {
  68.         return $this->initialPrice;
  69.     }
  70.     public function setInitialPrice(float $initialPrice): self
  71.     {
  72.         $this->initialPrice $initialPrice;
  73.         return $this;
  74.     }
  75.     public function getFinalPrice(): ?float
  76.     {
  77.         return $this->finalPrice;
  78.     }
  79.     public function setFinalPrice(float $finalPrice): self
  80.     {
  81.         $this->finalPrice $finalPrice;
  82.         return $this;
  83.     }
  84.     public function getScaleQuantity(): ?int
  85.     {
  86.         return $this->scaleQuantity;
  87.     }
  88.     public function setScaleQuantity(int $scaleQuantity): self
  89.     {
  90.         $this->scaleQuantity $scaleQuantity;
  91.         return $this;
  92.     }
  93.     public function getScaleQuantityAvailable(): ?int
  94.     {
  95.         return $this->scaleQuantityAvailable;
  96.     }
  97.     public function setScaleQuantityAvailable(?int $scaleQuantityAvailable): self
  98.     {
  99.         $this->scaleQuantityAvailable $scaleQuantityAvailable;
  100.         return $this;
  101.     }
  102.     public function getTotalMinQuantity(): ?int
  103.     {
  104.         return $this->totalMinQuantity;
  105.     }
  106.     public function setTotalMinQuantity(int $totalMinQuantity): self
  107.     {
  108.         $this->totalMinQuantity $totalMinQuantity;
  109.         return $this;
  110.     }
  111.     public function getTotalMaxQuantity(): ?int
  112.     {
  113.         return $this->totalMaxQuantity;
  114.     }
  115.     public function setTotalMaxQuantity(int $totalMaxQuantity): self
  116.     {
  117.         $this->totalMaxQuantity $totalMaxQuantity;
  118.         return $this;
  119.     }
  120.     public function getReferredPoints(): ?float
  121.     {
  122.         return $this->referredPoints;
  123.     }
  124.     public function setReferredPoints(float $referredPoints): self
  125.     {
  126.         $this->referredPoints $referredPoints;
  127.         return $this;
  128.     }
  129.     public function getExtraReferredPoints(): ?float
  130.     {
  131.         return $this->extraReferredPoints;
  132.     }
  133.     public function setExtraReferredPoints(float $extraReferredPoints): self
  134.     {
  135.         $this->extraReferredPoints $extraReferredPoints;
  136.         return $this;
  137.     }
  138.     public function isSellProductIfNotComplete(): ?bool
  139.     {
  140.         return $this->sellProductIfNotComplete;
  141.     }
  142.     public function setSellProductIfNotComplete(bool $sellProductIfNotComplete): self
  143.     {
  144.         $this->sellProductIfNotComplete $sellProductIfNotComplete;
  145.         return $this;
  146.     }
  147.     public function getProduct(): ?Product
  148.     {
  149.         return $this->product;
  150.     }
  151.     public function setProduct(?Product $product): self
  152.     {
  153.         $this->product $product;
  154.         return $this;
  155.     }
  156.     /**
  157.      * @return Collection<int, OrderDetail>
  158.      */
  159.     public function getOrderDetails(): Collection
  160.     {
  161.         return $this->orderDetails;
  162.     }
  163.     public function addOrderDetail(OrderDetail $orderDetail): self
  164.     {
  165.         if (!$this->orderDetails->contains($orderDetail)) {
  166.             $this->orderDetails->add($orderDetail);
  167.             $orderDetail->setProductPriceScale($this);
  168.         }
  169.         return $this;
  170.     }
  171.     public function removeOrderDetail(OrderDetail $orderDetail): self
  172.     {
  173.         if ($this->orderDetails->removeElement($orderDetail)) {
  174.             // set the owning side to null (unless already changed)
  175.             if ($orderDetail->getProductPriceScale() === $this) {
  176.                 $orderDetail->setProductPriceScale(null);
  177.             }
  178.         }
  179.         return $this;
  180.     }
  181. }