소스 검색

Promotions : correctif produits hors ligne affichés sur le front

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

+ 8
- 0
ShopBundle/Repository/ProductFamilyRepository.php 파일 보기

@@ -37,6 +37,14 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor
return $query->getQuery()->getResult() ;
}

public function findAllOnline()
{
$query = $this->findByMerchantQuery() ;
$query = $this->joinRelations($query) ;
$query->andWhere('e.status = 1') ;
return $query->getQuery()->getResult() ;
}

public function findOneBySlug($slug)
{
$query = $this->findByMerchantQuery() ;

Loading…
취소
저장