Parcourir la source

Frontend : page ambassades

reduction
Guillaume il y a 4 ans
Parent
révision
2769cd8ce3
1 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. +10
    -0
      ShopBundle/Repository/PointSaleRepository.php

+ 10
- 0
ShopBundle/Repository/PointSaleRepository.php Voir le fichier

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

}

Chargement…
Annuler
Enregistrer