|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <?php
-
- namespace Lc\CaracoleBundle\Model\PointSale;
-
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\ORM\Mapping as ORM;
- use Lc\CaracoleBundle\Doctrine\Extension\FilterMultipleMerchantsInterface;
- use Lc\CaracoleBundle\Doctrine\Extension\OrderAmountMinTrait;
- use Lc\CaracoleBundle\Doctrine\Extension\OrderAmountMinInterface;
- use Lc\CaracoleBundle\Model\Address\AddressInterface;
- use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
- use Lc\CaracoleBundle\Model\User\UserPointSaleInterface;
- use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity;
- use App\Entity\File\File;
-
- /**
- * @ORM\MappedSuperclass()
- */
- abstract class PointSaleModel extends AbstractFullEntity implements FilterMultipleMerchantsInterface,
- OrderAmountMinInterface, PointSaleInterface
- {
- use OrderAmountMinTrait;
-
- /**
- * @ORM\ManyToMany(targetEntity="Lc\CaracoleBundle\Model\Merchant\MerchantInterface", inversedBy="pointSales")
- */
- protected $merchants;
-
- /**
- * @ORM\Column(type="string", length=63, nullable=true)
- */
- protected $code;
-
- /**
- * @ORM\Column(type="float")
- */
- protected $deliveryPrice;
-
- /**
- * @ORM\Column(type="boolean")
- */
- protected $isPublic;
-
- /**
- * @ORM\OneToOne(targetEntity="Lc\CaracoleBundle\Model\Address\AddressInterface", inversedBy="pointSale", cascade={"persist", "remove"})
- * @ORM\JoinColumn(nullable=false)
- */
- protected $address;
-
- /**
- * @ORM\OneToMany(targetEntity="Lc\CaracoleBundle\Model\User\UserPointSaleInterface", mappedBy="pointSale", orphanRemoval=true)
- */
- protected $userPointSales;
-
- /**
- * @ORM\ManyToOne(targetEntity=File::class, cascade={"persist", "remove"})
- */
- protected $image;
-
- /**
- * @ORM\OneToMany(targetEntity="Lc\CaracoleBundle\Model\PointSale\PointSaleSectionInterface", mappedBy="pointSale", cascade={"persist"})
- */
- protected $pointSaleSections;
-
- public function __construct()
- {
- $this->merchants = new ArrayCollection();
- $this->userPointSales = new ArrayCollection();
- $this->pointSaleSections = new ArrayCollection();
- }
-
- public function __toString()
- {
- return $this->getTitle();
- }
-
- /**
- * @return Collection|MerchantInterface[]
- */
- public function getMerchants(): Collection
- {
- return $this->merchants;
- }
-
- public function addMerchant(MerchantInterface $merchant): self
- {
- if (!$this->merchants->contains($merchant)) {
- $this->merchants[] = $merchant;
- }
-
- return $this;
- }
-
- public function removeMerchant(MerchantInterface $merchant): self
- {
- if ($this->merchants->contains($merchant)) {
- $this->merchants->removeElement($merchant);
- }
-
- return $this;
- }
-
- public function getCode(): ?string
- {
- return $this->code;
- }
-
- public function setCode(?string $code): self
- {
- $this->code = $code;
-
- return $this;
- }
-
- public function getDeliveryPrice(): ?float
- {
- return $this->deliveryPrice;
- }
-
- public function setDeliveryPrice(float $deliveryPrice): self
- {
- $this->deliveryPrice = $deliveryPrice;
-
- return $this;
- }
-
- public function getIsPublic(): ?bool
- {
- return $this->isPublic;
- }
-
- public function setIsPublic(bool $isPublic): self
- {
- $this->isPublic = $isPublic;
-
- return $this;
- }
-
- public function getAddress(): ?AddressInterface
- {
- return $this->address;
- }
-
- public function setAddress(AddressInterface $address): self
- {
- $this->address = $address;
-
- return $this;
- }
-
- /**
- * @return Collection|UserPointSaleInterface[]
- */
- public function getUserPointSales(): Collection
- {
- return $this->userPointSales;
- }
-
- public function addUserPointSale(UserPointSaleInterface $userPointSale): self
- {
- if (!$this->userPointSales->contains($userPointSale)) {
- $this->userPointSales[] = $userPointSale;
- $userPointSale->setPointSale($this);
- }
-
- return $this;
- }
-
- public function removeUserPointSale(UserPointSaleInterface $userPointSale): self
- {
- if ($this->userPointSales->contains($userPointSale)) {
- $this->userPointSales->removeElement($userPointSale);
- // set the owning side to null (unless already changed)
- if ($userPointSale->getPointSale() === $this) {
- $userPointSale->setPointSale(null);
- }
- }
-
- return $this;
- }
-
- public function getImage(): ?File
- {
- return $this->image;
- }
-
- public function setImage(?File $image): self
- {
- $this->image = $image;
-
- return $this;
- }
-
- /**
- * @return Collection|PointSaleSectionInterface[]
- */
- public function getPointSaleSections(): Collection
- {
- return $this->pointSaleSections;
- }
-
- public function addPointSaleSection(PointSaleSectionInterface $pointSaleSection): self
- {
- if (!$this->pointSaleSections->contains($pointSaleSection)) {
- $this->pointSaleSections[] = $pointSaleSection;
- $pointSaleSection->setPointSale($this);
- }
-
- return $this;
- }
-
- public function removePointSaleSection(PointSaleSectionInterface $pointSaleSection): self
- {
- if ($this->pointSaleSections->removeElement($pointSaleSection)) {
- // set the owning side to null (unless already changed)
- if ($pointSaleSection->getPointSale() === $this) {
- $pointSaleSection->setPointSale(null);
- }
- }
-
- return $this;
- }
- }
|