|
|
@@ -21,33 +21,10 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor |
|
|
|
|
|
|
|
|
|
|
|
public function getProductFamiliesByCategory($category){ |
|
|
|
$expr = $this->_em->getExpressionBuilder(); |
|
|
|
|
|
|
|
$query = $this->findByMerchantQuery() ; |
|
|
|
/* $query->select(array('e as product', 'reductionCatalog as reduction')); |
|
|
|
$query->from(ReductionCatalogInterface::class, 'reductionCatalog');*/ |
|
|
|
$query->leftJoin('e.productCategories', 'cat'); |
|
|
|
$query->andWhere(':category MEMBER OF e.productCategories'); |
|
|
|
$query->andWhere('e.status = 1'); |
|
|
|
/* /* $query->andWhere($query->expr()->orX( |
|
|
|
$query->expr()->eq('reductionCatalog', 'null'), |
|
|
|
$query->expr()->eq( 'reductionCatalog.status = 1 AND ( |
|
|
|
:user MEMBER OF reductionCatalog.users OR reductionCatalog.users is empty ) AND |
|
|
|
(:groupUser MEMBER OF reductionCatalog.groupUsers OR reductionCatalog.groupUsers is empty ) AND |
|
|
|
(e MEMBER OF reductionCatalog.productFamilies OR reductionCatalog.productFamilies is empty') |
|
|
|
)); |
|
|
|
|
|
|
|
|
|
|
|
$query |
|
|
|
->andWhere('reductionCatalog.status = 1') |
|
|
|
->andWhere(':user MEMBER OF reductionCatalog.users OR reductionCatalog.users is empty') |
|
|
|
->andWhere(':groupUser MEMBER OF reductionCatalog.groupUsers OR reductionCatalog.groupUsers is empty') |
|
|
|
->andWhere('e MEMBER OF reductionCatalog.productFamilies OR reductionCatalog.productFamilies is empty') |
|
|
|
//->andWhere(':category MEMBER OF reductionCatalog.productCategories OR reductionCatalog.productCategories is empty') |
|
|
|
//->andWhere('e.supplier MEMBER OF reductionCatalog.suppliers OR reductionCatalog.suppliers is empty') |
|
|
|
->setParameter('user', $user) |
|
|
|
->setParameter('groupUser', $user->getGroupUsers() |
|
|
|
);*/ |
|
|
|
|
|
|
|
$query->setParameter('category', $category->getId()); |
|
|
|
|
|
|
|
return $query->getQuery()->getResult() ; |
|
|
@@ -55,7 +32,7 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor |
|
|
|
} |
|
|
|
|
|
|
|
public function getProductFamiliesNovelties(){ |
|
|
|
$query = $this->findByMerchantQuery() ; |
|
|
|
$query = $this->findByMerchantQuery(); |
|
|
|
$query->andWhere('e.status = 1'); |
|
|
|
$query->andWhere(':now <= e.propertyNoveltyExpirationDate') |
|
|
|
->setParameter('now', new \DateTime()) ; |
|
|
@@ -65,6 +42,7 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor |
|
|
|
|
|
|
|
public function getProductFamiliesLargeVolumes(){ |
|
|
|
$query = $this->findByMerchantQuery() ; |
|
|
|
$query->leftJoin('e.productCategories', 'cat'); |
|
|
|
$query->andWhere('e.status = 1'); |
|
|
|
$query->andWhere('e.propertyLargeVolume = 1'); |
|
|
|
|
|
|
@@ -73,6 +51,7 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor |
|
|
|
|
|
|
|
public function getProductFamiliesOrganics(){ |
|
|
|
$query = $this->findByMerchantQuery() ; |
|
|
|
$query->leftJoin('e.productCategories', 'cat'); |
|
|
|
$query->andWhere('e.status = 1'); |
|
|
|
$query->andWhere('e.propertyOrganicLabel IS NOT NULL'); |
|
|
|
|
|
|
@@ -82,6 +61,7 @@ class ProductFamilyRepository extends BaseRepository implements DefaultRepositor |
|
|
|
public function findByTerms($terms, $maxResults = false) |
|
|
|
{ |
|
|
|
$query = $this->findByMerchantQuery() ; |
|
|
|
$query->leftJoin('e.productCategories', 'cat'); |
|
|
|
$query->andWhere('e.status = 1'); |
|
|
|
$query->andWhere('e.title LIKE :terms'); |
|
|
|
$query->setParameter(':terms', '%'.$terms.'%') ; |