|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
-
- namespace Lc\CaracoleBundle\Builder\Product;
-
- use Doctrine\ORM\EntityManagerInterface;
- use Lc\CaracoleBundle\Model\Product\ProductCategoryInterface;
- use Lc\CaracoleBundle\Solver\Product\ProductCategorySolver;
- use Lc\SovBundle\Translation\FlashBagTranslator;
-
- class ProductCategoryBuilder
- {
- protected EntityManagerInterface $entityManager;
- protected ProductCategorySolver $productCategorySolver;
- protected FlashBagTranslator $flashBagTranslator;
-
- public function __construct(EntityManagerInterface $entityManager, ProductCategorySolver $productCategorySolver, FlashBagTranslator $flashBagTranslator)
- {
- $this->entityManager = $entityManager;
- $this->productCategorySolver = $productCategorySolver;
- $this->flashBagTranslator = $flashBagTranslator;
- }
-
- public function setOnlineIfOnlineProductfamily(ProductCategoryInterface $productCategory)
- {
- if ($this->productCategorySolver->hasOnlineProductFamily($productCategory)) {
- if(!$productCategory->getStatus()) {
- $productCategory->setStatus(1);
- $this->entityManager->update($productCategory);
-
- $this->flashBagTranslator->add('success', 'setOnline', 'ProductCategory', array('%category%' => $productCategory, '%section%' => $productCategory->getSection()));
- }
- // mise à jour du statut du parent
- $productCategoryParent = $productCategory->getParent();
- if ($productCategoryParent) {
- if(!$productCategory->getStatus()) {
- $productCategoryParent->setStatus(1);
- $this->entityManager->update($productCategoryParent);
- }
- }
- }
- }
-
-
- public function setOfflineIfOfflineProductfamily(ProductCategoryInterface $productCategory)
- {
- if (!$this->productCategorySolver->hasOnlineProductFamily($productCategory)) {
- if($productCategory->getStatus()) {
-
- $productCategory->setStatus(0);
- $this->entityManager->update($productCategory);
- $this->flashBagTranslator->add('info', 'setOffline', 'ProductCategory', array('%category%' => $productCategory, '%section%' => $productCategory->getSection()));
- }
- // mise à jour du statut du parent
- $productCategoryParent = $productCategory->getParent();
- if ($productCategoryParent && !$this->productCategorySolver->hasOnlineProductFamily($productCategoryParent)) {
- if($productCategory->getStatus()) {
- $productCategoryParent->setStatus(0);
- $this->entityManager->update($productCategoryParent);
- }
- }
- }
- }
-
- }
|