src/Entity/OrderEshop.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\File\File;
  4. use App\Repository\OrderRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity
  10.  * @ORM\HasLifecycleCallbacks
  11.  */
  12. class OrderEshop extends Order
  13. {
  14.     /**
  15.      * @ORM\Column(type="string", length=32, nullable=true)
  16.      */
  17.     private $companyName;
  18.     /**
  19.      * @ORM\Column(type="text", nullable=true)
  20.      */
  21.     private $goldAndSilverApiResponse;
  22.     /**
  23.      * @ORM\OneToMany(targetEntity=EshopBasket::class, mappedBy="eshopOrder")
  24.      */
  25.     private $eshopBaskets;
  26.     /**
  27.      * @ORM\OneToMany(targetEntity=OrderEshopItem::class, mappedBy="orderEshop", orphanRemoval=true, cascade={"persist"})
  28.      */
  29.     private $orderEshopItems;
  30.     /**
  31.      * @ORM\Column(type="float", nullable=true)
  32.      */
  33.     private $totalPriceExclVat;
  34.     /**
  35.      * @ORM\Column(type="float", nullable=true)
  36.      */
  37.     private $totalPriceVat;
  38.     /**
  39.      * @ORM\Column(type="float", nullable=true)
  40.      */
  41.     private $totalPriceInclVat;
  42.     /**
  43.      * @ORM\Column(type="float", nullable=true)
  44.      */
  45.     private $deliveryPrice;
  46.     /**
  47.      * @ORM\Column(type="string", length=255, nullable=true)
  48.      */
  49.     private $deliveryLabel;
  50.     /**
  51.      * @ORM\Column(type="float", nullable=true)
  52.      */
  53.     private $paymentPrice;
  54.     /**
  55.      * @ORM\Column(type="string", length=255, nullable=true)
  56.      */
  57.     private $paymentLabel;
  58.     public function __construct()
  59.     {
  60.         parent::__construct();
  61.         $this->eshopBaskets = new ArrayCollection();
  62.         $this->orderEshopItems = new ArrayCollection();
  63.     }
  64.     public function getGoldAndSilverApiResponse(): ?string
  65.     {
  66.         return $this->goldAndSilverApiResponse;
  67.     }
  68.     public function setGoldAndSilverApiResponse(?string $goldAndSilverApiResponse): self
  69.     {
  70.         $this->goldAndSilverApiResponse $goldAndSilverApiResponse;
  71.         return $this;
  72.     }
  73.     /**
  74.      * @return Collection<int, EshopBasket>
  75.      */
  76.     public function getEshopBaskets(): Collection
  77.     {
  78.         return $this->eshopBaskets;
  79.     }
  80.     public function addEshopBasket(EshopBasket $eshopBasket): self
  81.     {
  82.         if (!$this->eshopBaskets->contains($eshopBasket)) {
  83.             $this->eshopBaskets[] = $eshopBasket;
  84.             $eshopBasket->setEshopOrder($this);
  85.         }
  86.         return $this;
  87.     }
  88.     public function removeEshopBasket(EshopBasket $eshopBasket): self
  89.     {
  90.         if ($this->eshopBaskets->removeElement($eshopBasket)) {
  91.             // set the owning side to null (unless already changed)
  92.             if ($eshopBasket->getEshopOrder() === $this) {
  93.                 $eshopBasket->setEshopOrder(null);
  94.             }
  95.         }
  96.         return $this;
  97.     }
  98.     /**
  99.      * @return Collection<int, OrderEshopItem>
  100.      */
  101.     public function getOrderEshopItems(): Collection
  102.     {
  103.         return $this->orderEshopItems;
  104.     }
  105.     public function addOrderEshopItem(OrderEshopItem $orderEshopItem): self
  106.     {
  107.         if (!$this->orderEshopItems->contains($orderEshopItem)) {
  108.             $this->orderEshopItems[] = $orderEshopItem;
  109.             $orderEshopItem->setOrderEshop($this);
  110.         }
  111.         return $this;
  112.     }
  113.     public function removeOrderEshopItem(OrderEshopItem $orderEshopItem): self
  114.     {
  115.         if ($this->orderEshopItems->removeElement($orderEshopItem)) {
  116.             // set the owning side to null (unless already changed)
  117.             if ($orderEshopItem->getOrderEshop() === $this) {
  118.                 $orderEshopItem->setOrderEshop(null);
  119.             }
  120.         }
  121.         return $this;
  122.     }
  123.     /**
  124.      * @return mixed
  125.      */
  126.     public function getCompanyName()
  127.     {
  128.         return $this->companyName;
  129.     }
  130.     /**
  131.      * @param mixed $companyName
  132.      */
  133.     public function setCompanyName($companyName): self
  134.     {
  135.         $this->companyName $companyName;
  136.         return $this;
  137.     }
  138.     public function getTotalPriceExclVat(): ?float
  139.     {
  140.         return $this->totalPriceExclVat;
  141.     }
  142.     public function setTotalPriceExclVat(?float $totalPriceExclVat): self
  143.     {
  144.         $this->totalPriceExclVat $totalPriceExclVat;
  145.         return $this;
  146.     }
  147.     public function getTotalPriceVat(): ?float
  148.     {
  149.         return $this->totalPriceVat;
  150.     }
  151.     public function setTotalPriceVat(?float $totalPriceVat): self
  152.     {
  153.         $this->totalPriceVat $totalPriceVat;
  154.         return $this;
  155.     }
  156.     public function getTotalPriceInclVat(): ?float
  157.     {
  158.         return $this->totalPriceInclVat;
  159.     }
  160.     public function setTotalPriceInclVat(?float $totalPriceInclVat): self
  161.     {
  162.         $this->totalPriceInclVat $totalPriceInclVat;
  163.         return $this;
  164.     }
  165.     public function getDeliveryPrice(): ?float
  166.     {
  167.         return $this->deliveryPrice;
  168.     }
  169.     public function setDeliveryPrice(?float $deliveryPrice): self
  170.     {
  171.         $this->deliveryPrice $deliveryPrice;
  172.         return $this;
  173.     }
  174.     public function getDeliveryLabel(): ?string
  175.     {
  176.         return $this->deliveryLabel;
  177.     }
  178.     public function setDeliveryLabel(?string $deliveryLabel): self
  179.     {
  180.         $this->deliveryLabel $deliveryLabel;
  181.         return $this;
  182.     }
  183.     public function getPaymentPrice(): ?float
  184.     {
  185.         return $this->paymentPrice;
  186.     }
  187.     public function setPaymentPrice(?float $paymentPrice): self
  188.     {
  189.         $this->paymentPrice $paymentPrice;
  190.         return $this;
  191.     }
  192.     public function getPaymentLabel(): ?string
  193.     {
  194.         return $this->paymentLabel;
  195.     }
  196.     public function setPaymentLabel(?string $paymentLabel): self
  197.     {
  198.         $this->paymentLabel $paymentLabel;
  199.         return $this;
  200.     }
  201. }