소스 검색

[Frontend] Recherche : correctif produit indisponible

feature/module_traiteur_v1
Guillaume 4 년 전
부모
커밋
6a5531ceff
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      ShopBundle/Repository/ProductFamilyRepository.php

+ 5
- 1
ShopBundle/Repository/ProductFamilyRepository.php 파일 보기

@@ -102,7 +102,11 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor
public function findByTerms($terms, $maxResults = false)
{
$query = $this->findByMerchantQuery() ;
$query = $this->joinRelations($query) ;

$query->leftJoin('e.productCategories', 'cat');
$query->addSelect('cat') ;

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

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

Loading…
취소
저장