Преглед на файлове

Produits : finition intégration pictos dans liste

reduction
Guillaume преди 4 години
родител
ревизия
b18562752d
променени са 1 файла, в които са добавени 17 реда и са изтрити 1 реда
  1. +17
    -1
      ShopBundle/Model/ProductFamily.php

+ 17
- 1
ShopBundle/Model/ProductFamily.php Целия файл

@@ -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;

Loading…
Отказ
Запис