ソースを参照

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')

読み込み中…
キャンセル
保存