소스 검색

Frontend : page ambassades

reduction
Guillaume 4 년 전
부모
커밋
2769cd8ce3
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      ShopBundle/Repository/PointSaleRepository.php

+ 10
- 0
ShopBundle/Repository/PointSaleRepository.php 파일 보기

@@ -19,4 +19,14 @@ class PointSaleRepository extends BaseRepository implements DefaultRepositoryInt
return PointSaleInterface::class;
}

public function findAllPublics()
{
return $this->createQueryBuilder('e')
->where(':currentMerchant MEMBER OF e.merchants')
->andWhere('e.isPublic = 1')
->setParameter('currentMerchant', $this->globalParam->getCurrentMerchant())
->getQuery()
->getResult() ;
}

}

Loading…
취소
저장