src/Entity/OrderDetail.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Blameable\Traits\BlameableEntity;
  5. use Gedmo\Timestampable\Traits\TimestampableEntity;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use App\Repository\OrderDetailRepository;
  8. #[ORM\Entity(repositoryClassOrderDetailRepository::class)]
  9. class OrderDetail 
  10. {
  11.     use BlameableEntity//Hook blameable behaviour. Updates createdBy, updatedBy fields
  12.     use TimestampableEntity//Hook timestampable behaviour. Updates createdAt, updatedAt fields 
  13.     
  14.     #[ORM\Id]
  15.     #[ORM\GeneratedValue(strategy"IDENTITY")]
  16.     #[ORM\Column]
  17.     private ?int $id null;
  18.     #[ORM\ManyToOne(inversedBy'orderDetails')]
  19.     #[ORM\JoinColumn(nullablefalse)]
  20.     private ?Order $header null;
  21.     #[ORM\ManyToOne(inversedBy'orderDetails')]
  22.     private ?Product $product null;
  23.     #[ORM\ManyToOne(inversedBy'orderDetails')]
  24.     private ?ProductPriceScale $productPriceScale null;
  25.     #[ORM\Column]
  26.     #[Assert\NotNull()]
  27.     #[Assert\PositiveOrZero()]
  28.     private ?int $quantity null;
  29.     #[ORM\Column]
  30.     #[Assert\NotNull()]
  31.     #[Assert\PositiveOrZero()]
  32.     private ?float $originalPrice null;
  33.     #[ORM\Column(nullabletrue)]
  34.     #[Assert\PositiveOrZero()]
  35.     private ?float $finalPrice null;
  36.     #[ORM\Column]
  37.     #[Assert\NotNull()]
  38.     #[Assert\PositiveOrZero()]
  39.     private ?float $ivaPercentage null;
  40.     #[ORM\OneToOne(mappedBy'originOrderDetail'cascade: ['persist''remove'])]
  41.     private ?UserShared $originUserShared null;
  42.     #[ORM\ManyToOne(inversedBy'destitationOrderDetails')]
  43.     private ?UserShared $destinationUserShared null;
  44.     #[ORM\Column(nullabletrue)]
  45.     private ?bool $buy_not_enought null;
  46.     #[ORM\Column(nullabletrue)]
  47.     private ?bool $better_price null;
  48.     #[ORM\Column(nullabletrue)]
  49.     private ?bool $isIndividualPurchase null;
  50.     public function __toString()
  51.     {
  52.         return ($this->header $this->header->getId() : "") . "_" $this->id;
  53.     }
  54.     public function getId(): ?int
  55.     {
  56.         return $this->id;
  57.     }
  58.     public function getHeader(): ?Order
  59.     {
  60.         return $this->header;
  61.     }
  62.     public function setHeader(?Order $header): self
  63.     {
  64.         $this->header $header;
  65.         return $this;
  66.     }
  67.     public function getProduct(): ?Product
  68.     {
  69.         return $this->product;
  70.     }
  71.     public function setProduct(?Product $product): self
  72.     {
  73.         $this->product $product;
  74.         return $this;
  75.     }
  76.     public function getProductPriceScale(): ?ProductPriceScale
  77.     {
  78.         return $this->productPriceScale;
  79.     }
  80.     public function setProductPriceScale(?ProductPriceScale $productPriceScale): self
  81.     {
  82.         $this->productPriceScale $productPriceScale;
  83.         return $this;
  84.     }
  85.     public function getQuantity(): ?int
  86.     {
  87.         return $this->quantity;
  88.     }
  89.     public function setQuantity(int $quantity): self
  90.     {
  91.         $this->quantity $quantity;
  92.         return $this;
  93.     }
  94.     public function getOriginalPrice(): ?float
  95.     {
  96.         return $this->originalPrice;
  97.     }
  98.     public function setOriginalPrice(float $originalPrice): self
  99.     {
  100.         $this->originalPrice $originalPrice;
  101.         return $this;
  102.     }
  103.     public function getFinalPrice(): ?float
  104.     {
  105.         return $this->finalPrice;
  106.     }
  107.     public function setFinalPrice(?float $finalPrice): self
  108.     {
  109.         $this->finalPrice $finalPrice;
  110.         return $this;
  111.     }
  112.     public function getIvaPercentage(): ?float
  113.     {
  114.         return $this->ivaPercentage;
  115.     }
  116.     public function setIvaPercentage(float $ivaPercentage): self
  117.     {
  118.         $this->ivaPercentage $ivaPercentage;
  119.         return $this;
  120.     }    
  121.     public function getOriginUserShared(): ?UserShared
  122.     {
  123.         return $this->originUserShared;
  124.     }
  125.     public function setOriginUserShared(UserShared $originUserShared): self
  126.     {
  127.         // set the owning side of the relation if necessary
  128.         if ($originUserShared->getOriginOrderDetail() !== $this) {
  129.             $originUserShared->setOriginOrderDetail($this);
  130.         }
  131.         $this->originUserShared $originUserShared;
  132.         return $this;
  133.     }
  134.     public function getDestinationUserShared(): ?UserShared
  135.     {
  136.         return $this->destinationUserShared;
  137.     }
  138.     public function setDestinationUserShared(?UserShared $destinationUserShared): self
  139.     {
  140.         $this->destinationUserShared $destinationUserShared;
  141.         return $this;
  142.     }
  143.     public function isBuyNotEnought(): ?bool
  144.     {
  145.         return $this->buy_not_enought;
  146.     }
  147.     public function setBuyNotEnought(?bool $buy_not_enought): self
  148.     {
  149.         $this->buy_not_enought $buy_not_enought;
  150.         return $this;
  151.     }
  152.     public function isBetterPrice(): ?bool
  153.     {
  154.         return $this->better_price;
  155.     }
  156.     public function setBetterPrice(?bool $better_price): self
  157.     {
  158.         $this->better_price $better_price;
  159.         return $this;
  160.     }
  161.     public function isIndividualPurchase(): ?bool
  162.     {
  163.         return $this->isIndividualPurchase;
  164.     }
  165.     public function setIsIndividualPurchase(bool $isIndividualPurchase): self
  166.     {
  167.         $this->isIndividualPurchase $isIndividualPurchase;
  168.         return $this;
  169.     }   
  170.     public function getDeliveryDate()
  171.     {
  172.         $product $this->getProduct(); 
  173.         $firstOrderForProduct = (!$product->hasBeenPurchasedRecently($this->header->getId()) && $product->getSharedShippingDuration());
  174.         $deliveryDate = ($firstOrderForProduct
  175.             date_modify(new \DateTime('now'), "+{$product->getSharedShippingDuration()}weekdays")
  176.             : $product->getShippingDate()
  177.         )->format('d-m-Y');
  178.         
  179.         return $deliveryDate;
  180.     }
  181.     public function getSaving(): float
  182.     {
  183.         $_product   $this->getProduct();
  184.         $finalPrice $this->getFinalPrice() > $this->getFinalPrice() : $this->getOriginalPrice();
  185.         $group      $this->getHeader()->getBuyingGroup();
  186.         $saving 0;
  187.         if ($group) {
  188.             $originalUnitPrice $_product->getOriginalPrice() / $_product->getUnitsPerBoxGrouped();
  189.             $unitPrice         $finalPrice $_product->getUnitsPerBoxGrouped();
  190.             $saving            = ($_product->getUnitsPerBoxGrouped() > 0)
  191.                 ? (100 - (100 $unitPrice $originalUnitPrice))
  192.                 : (100 - (100 $finalPrice $_product->getOriginalPrice()));
  193.         } else {
  194.             $originalUnitPrice $_product->getOriginalPrice() / $_product->getUnitsPerBox();
  195.             $unitPrice         $finalPrice $_product->getUnitsPerBox();
  196.             $saving            = ($_product->getUnitsPerBox() > 0)
  197.                  ? (100 - (100 $unitPrice $originalUnitPrice))
  198.                  : (100 - (100 $finalPrice $_product->getOriginalPrice()));
  199.         }
  200.         return $saving;
  201.     }
  202. }