Procházet zdrojové kódy

Produits : finition intégration pictos dans liste

reduction
Guillaume před 4 roky
rodič
revize
b18562752d
1 změnil soubory, kde provedl 17 přidání a 1 odebrání
  1. +17
    -1
      ShopBundle/Model/ProductFamily.php

+ 17
- 1
ShopBundle/Model/ProductFamily.php Zobrazit soubor

@@ -276,6 +276,23 @@ abstract class ProductFamily extends AbstractDocumentEntity implements ProductPr
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;
@@ -295,7 +312,6 @@ abstract class ProductFamily extends AbstractDocumentEntity implements ProductPr
return $this;
}


public function getIsOrganic(): ?bool
{
return $this->isOrganic;

Načítá se…
Zrušit
Uložit