|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- <?php
-
- namespace Lc\ShopBundle\Model;
-
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\ORM\Mapping as ORM;
- use Lc\ShopBundle\Context\FilterMerchantInterface;
- use Lc\ShopBundle\Context\GlobalParamInterface;
- use Lc\ShopBundle\Context\PriceInterface;
- use Lc\ShopBundle\Context\ProductInterface;
- use Lc\ShopBundle\Context\ProductPropertyInterface;
- use Lc\ShopBundle\Services\Price;
- use Lc\ShopBundle\Services\Utils;
- use League\Flysystem\Util;
-
- /**
- * @ORM\MappedSuperclass()
- */
-
- abstract class ProductFamily extends AbstractDocumentEntity implements ProductPropertyInterface, PriceInterface, FilterMerchantInterface
- {
- use ProductPropertyTrait;
-
- /**
- * @ORM\ManyToOne(targetEntity="Lc\ShopBundle\Context\MerchantInterface", inversedBy="productFamilies")
- * @ORM\JoinColumn(nullable=false)
- */
- protected $merchant;
-
- /**
- * @ORM\ManyToMany(targetEntity="Lc\ShopBundle\Context\ProductCategoryInterface", inversedBy="productFamilies")
- */
- protected $productCategories;
-
- /**
- * @ORM\Column(type="boolean")
- */
- protected $activeProducts;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $productsType;
-
- /**
- * @ORM\OneToMany(targetEntity="Lc\ShopBundle\Context\ProductInterface", mappedBy="productFamily", orphanRemoval=true, cascade={"persist"})
- */
- protected $products;
-
- /**
- * @ORM\ManyToOne(targetEntity="Lc\ShopBundle\Context\TaxRateInterface")
- */
- protected $supplierTaxRate;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $subtitle;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $note;
-
- /**
- * @ORM\Column(type="string", length=31, nullable=true)
- */
- protected $behaviorOutOfStock;
-
- /**
- * @ORM\Column(type="string", length=31)
- */
- protected $behaviorCountStock;
-
- /**
- * @ORM\Column(type="boolean", nullable=true)
- */
- protected $isNovelty;
-
- /**
- * @ORM\Column(type="date", nullable=true)
- */
- protected $noveltyExpirationDate;
-
- /**
- * @ORM\Column(type="boolean", nullable=true)
- */
- protected $isOrganic;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $organicLabel;
-
-
- public function __construct()
- {
- $this->productCategories = new ArrayCollection();
- $this->products = new ArrayCollection();
- }
-
- public function getTaxRateInherited()
- {
- if($this->getTaxRate()) {
- return $this->getTaxRate() ;
- }
- else {
- return $this->getMerchant()->getTaxRate() ;
- }
- }
-
- public function getMerchant(): ?Merchant
- {
- return $this->merchant;
- }
-
- public function setMerchant(?Merchant $merchant): self
- {
- $this->merchant = $merchant;
-
- return $this;
- }
-
- public function getActiveProducts(): ?bool
- {
- return $this->activeProducts;
- }
-
- public function setActiveProducts(bool $activeProducts): self
- {
- $this->activeProducts = $activeProducts;
-
- return $this;
- }
-
- public function getProductsType(): ?string
- {
- return $this->productsType;
- }
-
- public function setProductsType(?string $productsType): self
- {
- $this->productsType = $productsType;
-
- return $this;
- }
-
- /**
- * @return Collection|ProductInterface[]
- */
- public function getProducts(): Collection
- {
- return $this->products;
- }
-
- public function addProduct(ProductInterface $product): self
- {
- if (!$this->products->contains($product)) {
- $this->products[] = $product;
- $product->setProductFamily($this);
- }
-
- return $this;
- }
-
- public function removeProduct(ProductInterface $product): self
- {
- if ($this->products->contains($product)) {
- $this->products->removeElement($product);
- // set the owning side to null (unless already changed)
- if ($product->getProductFamily() === $this) {
- $product->setProductFamily(null);
- }
- }
-
- return $this;
- }
-
- /**
- * @return Collection|ProductCategory[]
- */
- public function getProductCategories(): Collection
- {
- return $this->productCategories;
- }
-
- public function initProductCategories()
- {
- $this->productCategories = new ArrayCollection();
- }
-
- public function addProductCategory(ProductCategory $productCategory): self
- {
- if (!$this->productCategories->contains($productCategory)) {
- $this->productCategories[] = $productCategory;
- }
-
- return $this;
- }
-
- public function removeProductCategory(ProductCategory $productCategory): self
- {
- if ($this->productCategories->contains($productCategory)) {
- $this->productCategories->removeElement($productCategory);
- }
-
- return $this;
- }
-
- public function getSupplierTaxRate(): ?TaxRate
- {
- return $this->supplierTaxRate;
- }
-
- public function setSupplierTaxRate(?TaxRate $supplierTaxRate): self
- {
- $this->supplierTaxRate = $supplierTaxRate;
-
- return $this;
- }
-
- public function getSubtitle(): ?string
- {
- return $this->subtitle;
- }
-
- public function setSubtitle(?string $subtitle): self
- {
- $this->subtitle = $subtitle;
-
- return $this;
- }
-
-
- public function getNote(): ?string
- {
- return $this->note;
- }
-
- public function setNote(?string $note): self
- {
- $this->note = $note;
-
- return $this;
- }
-
- public function getBehaviorOutOfStock(): ?string
- {
- return $this->behaviorOutOfStock;
- }
-
- public function setBehaviorOutOfStock(?string $behaviorOutOfStock): self
- {
- $this->behaviorOutOfStock = $behaviorOutOfStock;
-
- return $this;
- }
-
- public function getBehaviorCountStock(): ?string
- {
- return $this->behaviorCountStock;
- }
-
-
- public function setBehaviorCountStock(string $behaviorCountStock): self
- {
- $this->behaviorCountStock = $behaviorCountStock;
-
- return $this;
- }
-
-
- public function getIsNovelty(): ?bool
- {
- return $this->isNovelty;
- }
-
- public function isNoveltyOnline(): ?bool
- {
- if($this->isNovelty) {
- if($this->getNoveltyExpirationDate()) {
- $now = new \DateTime() ;
- if($now <= $this->getNoveltyExpirationDate()) {
- return true ;
- }
- }
- else {
- return true ;
- }
- }
-
- return false ;
- }
-
- public function setIsNovelty(?bool $isNovelty): self
- {
- $this->isNovelty = $isNovelty;
-
- return $this;
- }
-
- public function getNoveltyExpirationDate(): ?\DateTimeInterface
- {
- return $this->noveltyExpirationDate;
- }
-
- public function setNoveltyExpirationDate(?\DateTimeInterface $noveltyExpirationDate): self
- {
- $this->noveltyExpirationDate = $noveltyExpirationDate;
-
- return $this;
- }
-
- public function getIsOrganic(): ?bool
- {
- return $this->isOrganic;
- }
-
- public function setIsOrganic(?bool $isOrganic): self
- {
- $this->isOrganic = $isOrganic;
-
- return $this;
- }
-
- public function getOrganicLabel(): ?string
- {
- return $this->organicLabel;
- }
-
- public function setOrganicLabel(?string $organicLabel): self
- {
- $this->organicLabel = $organicLabel;
-
- return $this;
- }
-
- private function getCheapestOrMostExpensiveProduct($comparisonFunction, $returnSelfIfNotActiveProducts)
- {
- $products = $this->getProducts()->getValues() ;
- if(count($products) > 0) {
- usort($products, $comparisonFunction) ;
- return $products[0] ;
- }
- if($returnSelfIfNotActiveProducts) {
- return $this ;
- }
- else {
- return false ;
- }
- }
-
- public function getCheapestProduct()
- {
- return $this->getCheapestOrMostExpensiveProduct(function($a, $b) {
- return $a->getPriceInherited() > $b->getPriceInherited() ;
- },true) ;
- }
-
- public function getCheapestProductByUnitRef()
- {
- return $this->getCheapestOrMostExpensiveProduct(function($a, $b) {
- return $a->getPriceByUnitRef() > $b->getPriceByUnitRef() ;
- },false) ;
- }
-
- public function getMostExpensiveProductByUnitRef()
- {
- return $this->getCheapestOrMostExpensiveProduct(function($a, $b) {
- return $a->getPriceByUnitRef() < $b->getPriceByUnitRef() ;
- },false) ;
- }
-
- }
|