Преглед изворни кода

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) ;
}

Loading…
Откажи
Сачувај