|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <?php
-
- namespace Lc\ShopBundle\Model;
-
- use App\Entity\User;
- use App\Entity\UserPointSale;
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\ORM\Mapping as ORM;
- use Lc\ShopBundle\Context\FilterMultipleMerchantsInterface;
- use Lc\ShopBundle\Context\OrderAmountMinInterface;
-
- /**
- * @ORM\MappedSuperclass()
- */
- abstract class PointSale extends AbstractDocumentEntity implements FilterMultipleMerchantsInterface, OrderAmountMinInterface
- {
-
- use OrderAmountMin;
- /**
- * @ORM\ManyToMany(targetEntity="Lc\ShopBundle\Context\MerchantInterface", inversedBy="pointSales")
- */
- protected $merchants;
-
- /**
- * @ORM\Column(type="string", length=63, nullable=true)
- */
- protected $code;
-
- /**
- * @ORM\OneToMany(targetEntity="Lc\ShopBundle\Context\PointSaleDayInfoInterface", mappedBy="pointSale", orphanRemoval=true)
- */
- protected $pointSaleDayInfos;
-
- /**
- * @ORM\OneToOne(targetEntity="Lc\ShopBundle\Context\AddressInterface", inversedBy="pointSale", cascade={"persist", "remove"})
- * @ORM\JoinColumn(nullable=false)
- */
- protected $address;
-
- /**
- * @ORM\OneToMany(targetEntity="Lc\ShopBundle\Context\UserPointSaleInterface", mappedBy="pointSale", orphanRemoval=true)
- */
- protected $userPointSales;
-
-
- public function __construct()
- {
- $this->merchants = new ArrayCollection();
- $this->pointSaleDayInfos = new ArrayCollection();
- $this->userPointSales = new ArrayCollection();
- }
-
- public function __toString()
- {
- return $this->getTitle() ;
- }
-
- public function labelAdminChoice()
- {
- return $this->getTitle();
- }
-
- /**
- * @return Collection|Merchant[]
- */
- public function getMerchants(): Collection
- {
- return $this->merchants;
- }
-
- public function addMerchant(Merchant $merchant): self
- {
- if (!$this->merchants->contains($merchant)) {
- $this->merchants[] = $merchant;
- }
-
- return $this;
- }
-
- public function removeMerchant(Merchant $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;
- }
-
- /**
- * @return Collection|PointSaleDayInfo[]
- */
- public function getPointSaleDayInfos(): Collection
- {
- return $this->pointSaleDayInfos;
- }
-
- public function addPointSaleDayInfo(PointSaleDayInfo $pointSaleDayInfo): self
- {
- if (!$this->pointSaleDayInfos->contains($pointSaleDayInfo)) {
- $this->pointSaleDayInfos[] = $pointSaleDayInfo;
- $pointSaleDayInfo->setPointSale($this);
- }
-
- return $this;
- }
-
- public function removePointSaleDayInfo(PointSaleDayInfo $pointSaleDayInfo): self
- {
- if ($this->pointSaleDayInfos->contains($pointSaleDayInfo)) {
- $this->pointSaleDayInfos->removeElement($pointSaleDayInfo);
- // set the owning side to null (unless already changed)
- if ($pointSaleDayInfo->getPointSale() === $this) {
- $pointSaleDayInfo->setPointSale(null);
- }
- }
-
- return $this;
- }
-
- public function getAddress(): ?Address
- {
- return $this->address;
- }
-
- public function setAddress(Address $address): self
- {
- $this->address = $address;
-
- return $this;
- }
-
- /**
- * @return Collection|UserPointSale[]
- */
- public function getUserPointSales(): Collection
- {
- return $this->userPointSales;
- }
-
- public function addUserPointSale(UserPointSale $userPointSale): self
- {
- if (!$this->userPointSales->contains($userPointSale)) {
- $this->userPointSales[] = $userPointSale;
- $userPointSale->setPointSale($this);
- }
-
- return $this;
- }
-
- public function removeUserPointSale(UserPointSale $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;
- }
- }
|