Explorar el Código

Frontend : page ambassades

reduction
Guillaume hace 4 años
padre
commit
2769cd8ce3
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. +10
    -0
      ShopBundle/Repository/PointSaleRepository.php

+ 10
- 0
ShopBundle/Repository/PointSaleRepository.php Ver fichero

@@ -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() ;
}

}

Cargando…
Cancelar
Guardar