瀏覽代碼

[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…
取消
儲存