Bläddra i källkod

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

feature/export_comptable
Guillaume 4 år sedan
förälder
incheckning
d0787c3f20
1 ändrade filer med 8 tillägg och 0 borttagningar
  1. +8
    -0
      ShopBundle/Repository/ProductFamilyRepository.php

+ 8
- 0
ShopBundle/Repository/ProductFamilyRepository.php Visa fil

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

Laddar…
Avbryt
Spara