Explorar el Código

Promotions : correctif produits hors ligne affichés sur le front

feature/export_comptable
Guillaume hace 4 años
padre
commit
d0787c3f20
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. +8
    -0
      ShopBundle/Repository/ProductFamilyRepository.php

+ 8
- 0
ShopBundle/Repository/ProductFamilyRepository.php Ver fichero

@@ -37,6 +37,14 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor
return $query->getQuery()->getResult() ;
}

public function findAllOnline()
{
$query = $this->findByMerchantQuery() ;
$query = $this->joinRelations($query) ;
$query->andWhere('e.status = 1') ;
return $query->getQuery()->getResult() ;
}

public function findOneBySlug($slug)
{
$query = $this->findByMerchantQuery() ;

Cargando…
Cancelar
Guardar