Procházet zdrojové kódy

Correctif position catégories

feature/export_comptable
Guillaume před 4 roky
rodič
revize
1d73ab19aa
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. +3
    -1
      ShopBundle/Repository/ProductCategoryRepository.php

+ 3
- 1
ShopBundle/Repository/ProductCategoryRepository.php Zobrazit soubor

@@ -52,6 +52,7 @@ class ProductCategoryRepository extends BaseRepository implements DefaultReposit
{
$query = $this->createQueryBuilder('e');
$query->andWhere('e.parent = :idParentCategory');
$query->setParameter('idParentCategory', $parentCategory->getId());

if ($withOffline) $query->andWhere('e.status >= 0');
else $query->andWhere('e.status = 1');
@@ -61,7 +62,8 @@ class ProductCategoryRepository extends BaseRepository implements DefaultReposit
$query->andWhere('pf.status = 1') ;
}

$query->setParameter('idParentCategory', $parentCategory->getId());
$query->addOrderBy('e.position', 'ASC') ;

return $query->getQuery()->getResult();
}
}

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