src/Entity/Order/OrderLine.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Order;
  3. use App\Repository\OrderLineRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Doctrine\Bundle\DoctrineBundle\Attribute\AsEntityListener;
  9. use Doctrine\ORM\Events;
  10. use Doctrine\ORM\Event\PrePersistEventArgs;
  11. use App\Entity\Produit\Produit;
  12. use App\Entity\Order\OrderLineColor;
  13. use App\EventListener\OrderLineListener;
  14. #[ORM\Entity(repositoryClassOrderLineRepository::class)]
  15. #[ORM\HasLifecycleCallbacks]
  16. class OrderLine
  17. {
  18.     #[ORM\Id]
  19.     #[ORM\GeneratedValue]
  20.     #[ORM\Column]
  21.     private ?int $id null;
  22.     #[ORM\ManyToOne(inversedBy'orderLines'cascade: ['persist'])]
  23.     #[ORM\JoinColumn(nullablefalse)]
  24.     private ?Order $orderentity null;
  25.     #[ORM\Column]
  26.     private ?int $quantity null;
  27.     #[ORM\Column(length255nullable:true)]
  28.     private ?string $description null;
  29.     #[ORM\ManyToOne]
  30.     private ?Produit $produit null;
  31.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  32.     private ?string $priceHt null;
  33.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  34.     private ?string $priceTtc null;
  35.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  36.     private ?string $totalLineTtc null;
  37.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  38.     private ?string $totalLineHt null;
  39.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  40.     private ?string $vat null;
  41.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  42.     private ?string $decompte null;
  43.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  44.     private ?string $totalCarrierWithoutTaxe null;
  45.     #[ORM\Column(typeTypes::DECIMALprecision10scale2nullabletrue)]
  46.     private ?string $totalCarrierWithTaxes null;
  47.     #[ORM\OneToOne(cascade: ['persist''remove'],  orphanRemovaltrue )]
  48.     private ?OrderLineColor $orderLineColor null;
  49.     #[ORM\OneToMany(mappedBy'orderLine'targetEntityOrderLineOption::class, orphanRemovaltruecascade: ["persist""remove"],  indexBy'opt_id')]
  50.     private Collection $orderLineOptions;
  51.     #[ORM\OneToMany(mappedBy'orderLine'targetEntityOrderLineGarantie::class, orphanRemovaltruecascade: ["persist""remove"],  indexBy'garantie_id')]
  52.     private Collection $orderLineGaranties;
  53.     #[ORM\OneToOne(cascade: ['persist''remove'],  orphanRemovaltrue)]
  54.     private ?OrderLineFinition $orderLineFinition null;
  55.     public function __construct()
  56.     {
  57.         $this->orderLineColors = new ArrayCollection();
  58.         $this->orderLineOptions = new ArrayCollection();
  59.         $this->orderLineGaranties = new ArrayCollection();
  60.     }
  61.     public function getId(): ?int
  62.     {
  63.         return $this->id;
  64.     }
  65.     public function getOrderentity(): ?Order
  66.     {
  67.         return $this->orderentity;
  68.     }
  69.     public function setOrderentity(?Order $orderentity): self
  70.     {
  71.         $this->orderentity $orderentity;
  72.         return $this;
  73.     }
  74.     public function getQuantity()
  75.     {
  76.         if(empty($this->quantity)) return 0;
  77.         return $this->quantity;
  78.     }
  79.     public function setQuantity$quantity): self
  80.     {
  81.         $this->quantity $quantity;
  82.         return $this;
  83.     }
  84.     public function getDescription(): ?string
  85.     {
  86.         return $this->description;
  87.     }
  88.     public function setDescription(string $description): self
  89.     {
  90.         $this->description $description;
  91.         return $this;
  92.     }
  93.     public function getProduit(): ?Produit
  94.     {
  95.         return $this->produit;
  96.     }
  97.     public function setProduit(?Produit $produit): self
  98.     {
  99.         $this->produit $produit;
  100.         return $this;
  101.     }
  102.     public function getPriceHt(): ?string
  103.     {
  104.         return $this->priceHt;
  105.     }
  106.     public function setPriceHt(string $priceHt): self
  107.     {
  108.         $this->priceHt $priceHt;
  109.         return $this;
  110.     }
  111.     public function getPriceTtc()
  112.     {
  113.         return $this->priceTtc;
  114.     }
  115.     public function setPriceTtc($priceTtc): self
  116.     {
  117.         $this->priceTtc $priceTtc;
  118.         return $this;
  119.     }
  120.     public function getVat(): ?string
  121.     {
  122.         return $this->vat;
  123.     }
  124.     public function setVat(string $vat): self
  125.     {
  126.         $this->vat $vat;
  127.         return $this;
  128.     }
  129.     public function getDecompte(): ?string
  130.     {
  131.         return $this->decompte;
  132.     }
  133.     public function setDecompte(string $decompte): self
  134.     {
  135.         $this->decompte $decompte;
  136.         return $this;
  137.     }
  138.      public function getTotalLineHt()
  139.     {
  140.         return $this->totalLineHt;
  141.     }
  142.     public function setTotalLineHt($totalLineHt): self
  143.     {
  144.         $this->totalLineHt $totalLineHt;
  145.         return $this;
  146.     }
  147.     public function getTotalLineTtc()
  148.     {
  149.         return $this->totalLineTtc;
  150.     }
  151.     public function setTotalLineTtc($totalLineTtc): self
  152.     {
  153.         $this->totalLineTtc $totalLineTtc;
  154.         return $this;
  155.     }
  156.     public function getTotalCarrierWithoutTaxe(): ?string
  157.     {
  158.         return $this->totalCarrierWithoutTaxe;
  159.     }
  160.     public function setTotalCarrierWithoutTaxe(?string $totalCarrierWithoutTaxe): static
  161.     {
  162.         $this->totalCarrierWithoutTaxe $totalCarrierWithoutTaxe;
  163.         return $this;
  164.     }
  165.     public function getTotalCarrierWithTaxes(): ?string
  166.     {
  167.         return $this->totalCarrierWithTaxes;
  168.     }
  169.     public function setTotalCarrierWithTaxes(?string $totalCarrierWithTaxes): static
  170.     {
  171.         $this->totalCarrierWithTaxes $totalCarrierWithTaxes;
  172.         return $this;
  173.     }
  174.     public function updateTotalLine()
  175.     {
  176.         $priceTtcColor 0;
  177.         $priceHtColor 0;
  178.         $priceTtcOptions 0;
  179.         $priceHtOptions 0;
  180.         $priceTtcGaranties 0;
  181.         $priceHtGaranties 0;
  182.         $priceTtcFinition 0;
  183.         $priceHtFinition 0;
  184.          if(!empty($this->getOrderLineFinition())){
  185.             $priceTtcFinition $this->getOrderLineFinition()->getPriceTtc();
  186.             $priceHtFinition $this->getOrderLineFinition()->getPriceHt();
  187.         }
  188.         if(!empty($this->getOrderLineColor())){
  189.             $priceTtcColor $this->getOrderLineColor()->getPriceTtc();
  190.             $priceHtColor $this->getOrderLineColor()->getPriceHt();
  191.         }
  192.         $orderLine $this;
  193.         if(!empty($this->getOrderLineOptions())){
  194.             foreach($this->getOrderLineOptions() as $opt){
  195.                 $priceTtcOptions += $opt->getPriceTtc();
  196.                 $priceHtOptions += $opt->getPriceHt();
  197.             }
  198.         }
  199.          if(!empty($this->getOrderLineGaranties())){
  200.             foreach($this->getOrderLineGaranties() as $g){
  201.                 $priceTtcGaranties += $g->getPriceTtc();
  202.                 $priceHtGaranties += $g->getPriceHt();
  203.             }
  204.         }
  205.         $produit_ttc $this->getProduit()->getPriceTtc();
  206.         $produit_ht $this->getProduit()->getPriceHt();
  207.         $totalTtc $produit_ttc $priceTtcColor $priceTtcOptions $priceTtcGaranties $priceTtcFinition;
  208.         $totalHt $produit_ht $priceHtColor $priceHtOptions $priceHtGaranties $priceHtFinition;
  209.         $totalLineHt $totalHt $orderLine->getQuantity();
  210.         $totalLineTtc $totalTtc $orderLine->getQuantity();
  211.         $orderLine->setPriceHt($totalHt);
  212.         $orderLine->setPriceTtc($totalTtc);
  213.         $orderLine->setTotalLineTtc($totalLineTtc);
  214.         $orderLine->setTotalLineHt($totalLineHt);
  215.     }
  216.     public function getOrderLineColor(): ?OrderLineColor
  217.     {
  218.         return $this->orderLineColor;
  219.     }
  220.     public function setOrderLineColor(?OrderLineColor $orderLineColor): static
  221.     {
  222.         $this->orderLineColor $orderLineColor;
  223.         return $this;
  224.     }
  225.     /**
  226.      * @return Collection<int, OrderLineOption>
  227.      */
  228.     public function getOrderLineOptions(): Collection
  229.     {
  230.         return $this->orderLineOptions;
  231.     }
  232.     /**
  233.      * @return Collection<int, OrderLineOption>
  234.      */
  235.     public function setOrderLineOptions($orderLineOptions)
  236.     {
  237.         $this->orderLineOptions $orderLineOptions;
  238.         return $this;
  239.     }
  240.     public function addOrderLineOption(OrderLineOption $orderLineOption): static
  241.     {
  242.         if (!$this->orderLineOptions->contains($orderLineOption)) {
  243.             $this->orderLineOptions->add($orderLineOption);
  244.             $orderLineOption->setOrderLine($this);
  245.         }
  246.         return $this;
  247.     }
  248.     public function removeOrderLineOption(OrderLineOption $orderLineOption): static
  249.     {
  250.         if ($this->orderLineOptions->removeElement($orderLineOption)) {
  251.             // set the owning side to null (unless already changed)
  252.             if ($orderLineOption->getOrderLine() === $this) {
  253.                 $orderLineOption->setOrderLine(null);
  254.             }
  255.         }
  256.         return $this;
  257.     }
  258.     /**
  259.      * @return Collection<int, OrderLineGarantie>
  260.      */
  261.     public function getOrderLineGaranties(): Collection
  262.     {
  263.         return $this->orderLineGaranties;
  264.     }
  265.     public function addOrderLineGaranty(OrderLineGarantie $orderLineGaranty): static
  266.     {
  267.         if (!$this->orderLineGaranties->contains($orderLineGaranty)) {
  268.             $this->orderLineGaranties->add($orderLineGaranty);
  269.             $orderLineGaranty->setOrderLine($this);
  270.         }
  271.         return $this;
  272.     }
  273.     public function removeOrderLineGaranty(OrderLineGarantie $orderLineGaranty): static
  274.     {
  275.         if ($this->orderLineGaranties->removeElement($orderLineGaranty)) {
  276.             // set the owning side to null (unless already changed)
  277.             if ($orderLineGaranty->getOrderLine() === $this) {
  278.                 $orderLineGaranty->setOrderLine(null);
  279.             }
  280.         }
  281.         return $this;
  282.     }
  283.      public function getOrderLineFinition(): ?OrderLineFinition
  284.     {
  285.         return $this->orderLineFinition;
  286.     }
  287.     public function setOrderLineFinition(?OrderLineFinition $orderLineFinition): static
  288.     {
  289.         $this->orderLineFinition $orderLineFinition;
  290.         return $this;
  291.     }
  292.     public function getTotalTtcProduct(){
  293.          $priceTtcColor 0;
  294.         $priceHtColor 0;
  295.         $priceTtcOptions 0;
  296.         $priceHtOptions 0;
  297.         $priceTtcGaranties 0;
  298.         $priceHtGaranties 0;
  299.         if(!empty($this->getOrderLineColor())){
  300.             $priceTtcColor $this->getOrderLineColor()->getPriceTtc();
  301.             $priceHtColor $this->getOrderLineColor()->getPriceHt();
  302.         }
  303.         $orderLine $this;
  304.         $ht_unit $orderLine->getPriceHt();
  305.         if(!empty($this->getOrderLineOptions())){
  306.             foreach($this->getOrderLineOptions() as $opt){
  307.                 $priceTtcOptions += $opt->getPriceTtc();
  308.                 $priceHtOptions += $opt->getPriceHt();
  309.             }
  310.         }
  311.          if(!empty($this->getOrderLineGaranties())){
  312.             foreach($this->getOrderLineGaranties() as $g){
  313.                 $priceTtcGaranties += $g->getPriceTtc();
  314.                 $priceHtGaranties += $g->getPriceHt();
  315.             }
  316.         }
  317.         return $orderLine->getPriceTtc() + $priceTtcColor $priceTtcOptions  $priceTtcGaranties;
  318.     }
  319. }