소스 검색

Modification PointSaleRepository

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

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

@@ -19,17 +19,6 @@ 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')
->andWhere('e.status = 1')
->setParameter('currentMerchant', $this->merchantUtils->getMerchantCurrent())
->getQuery()
->getResult() ;
}

public function findAllByMerchant()
{
return $this->createQueryBuilder('e')

Loading…
취소
저장