瀏覽代碼

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

feature/export_comptable
Guillaume 4 年之前
父節點
當前提交
d0787c3f20
共有 1 個檔案被更改,包括 8 行新增0 行删除
  1. +8
    -0
      ShopBundle/Repository/ProductFamilyRepository.php

+ 8
- 0
ShopBundle/Repository/ProductFamilyRepository.php 查看文件

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

Loading…
取消
儲存