|
|
|
|
|
|
|
|
return PointSaleInterface::class; |
|
|
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() |
|
|
public function findAllByMerchant() |
|
|
{ |
|
|
{ |
|
|
return $this->createQueryBuilder('e') |
|
|
return $this->createQueryBuilder('e') |