Procházet zdrojové kódy

[Frontend] Recherche : recherche dans le titre de la catégorie

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

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

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

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