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

Merge branch 'develop' of https://gitea.laclic.fr/Laclic/LcShopBundle into develop

feature/export_comptable
Fab пре 4 година
родитељ
комит
f08e822b4f
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…
Откажи
Сачувај