Переглянути джерело

Merge branch 'develop' of https://gitea.laclic.fr/Laclic/LcShopBundle into develop

feature/tableau_edition_avancee
Fab 4 роки тому
джерело
коміт
fd044fbf89
1 змінених файлів з 3 додано та 1 видалено
  1. +3
    -1
      ShopBundle/Repository/ProductFamilyRepository.php

+ 3
- 1
ShopBundle/Repository/ProductFamilyRepository.php Переглянути файл

@@ -105,9 +105,11 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor
$query = $this->joinRelations($query) ;

$query->andWhere('e.status = 1');
$query->andWhere('e.title LIKE :terms');
$query->andWhere('e.title LIKE :terms OR cat.title LIKE :terms');
$query->setParameter(':terms', '%'.$terms.'%') ;

$query->groupBy('e.id') ;

if($maxResults) {
$query->setMaxResults($maxResults) ;
}

Завантаження…
Відмінити
Зберегти