瀏覽代碼

ProductFamilyRepository : findByTerms

feature/export_comptable
Guillaume 4 年之前
父節點
當前提交
b1a1a058aa
共有 1 個文件被更改,包括 14 次插入0 次删除
  1. +14
    -0
      ShopBundle/Repository/ProductFamilyRepository.php

+ 14
- 0
ShopBundle/Repository/ProductFamilyRepository.php 查看文件

@@ -79,5 +79,19 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor
return $query->getQuery()->getResult() ;
}

public function findByTerms($terms, $maxResults = false)
{
$query = $this->findByMerchantQuery() ;
$query->andWhere('e.status = 1');
$query->andWhere('e.title LIKE :terms');
$query->setParameter(':terms', '%'.$terms.'%') ;

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

return $query->getQuery()->getResult() ;
}


}

Loading…
取消
儲存