Browse Source

[Frontend] Dans les sous menus, ne pas afficher les catégories qui n'ont pas de produits activés

feature/export_comptable
Guillaume 4 years ago
parent
commit
ddcde57c64
2 changed files with 15 additions and 0 deletions
  1. +13
    -0
      ShopBundle/Model/ProductCategory.php
  2. +2
    -0
      ShopBundle/Repository/ProductCategoryRepository.php

+ 13
- 0
ShopBundle/Model/ProductCategory.php View File

@@ -130,6 +130,19 @@ abstract class ProductCategory extends AbstractDocumentEntity implements TreeInt
return $this;
}

public function countProductFamilies($status = null)
{
$count = 0 ;

foreach($this->getProductFamilies() as $productFamily) {
if($status === null || ($status !== null && $productFamily->getStatus() == $status)) {
$count ++ ;
}
}

return $count ;
}

public function getMerchant(): ?Merchant
{
return $this->merchant;

+ 2
- 0
ShopBundle/Repository/ProductCategoryRepository.php View File

@@ -42,6 +42,8 @@ class ProductCategoryRepository extends BaseRepository implements DefaultReposit

if ($withOffline) $query->andWhere('e.status >= 0');
else $query->andWhere('e.status = 1');
$query->leftJoin('e.productFamilies','productFamilies') ;

$query->orderBy('e.position', 'ASC');


Loading…
Cancel
Save