|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
-
- namespace Lc\ShopBundle\Repository;
-
- use Lc\ShopBundle\Context\DefaultRepositoryInterface;
- use Lc\ShopBundle\Context\ProductFamilyInterface;
- use Lc\ShopBundle\Context\ReductionCatalogInterface;
-
- /**
- * @method ProductFamilyInterface|null find($id, $lockMode = null, $lockVersion = null)
- * @method ProductFamilyInterface|null findOneBy(array $criteria, array $orderBy = null)
- * @method ProductFamilyInterface[] findAll()
- * @method ProductFamilyInterface[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
- */
- class ProductFamilyRepository extends BaseRepository implements DefaultRepositoryInterface
- {
- public function getInterfaceClass()
- {
- return ProductFamilyInterface::class;
- }
-
-
- public function getProductFamiliesByCategory($category){
- $query = $this->findByMerchantQuery() ;
- $query->leftJoin('e.productCategories', 'cat');
- $query->andWhere(':category MEMBER OF e.productCategories');
- $query->andWhere('e.status = 1');
- $query->setParameter('category', $category->getId());
-
- return $query->getQuery()->getResult() ;
-
- }
-
- public function getProductFamiliesNovelties(){
- $query = $this->findByMerchantQuery();
- $query->andWhere('e.status = 1');
- $query->andWhere(':now <= e.propertyNoveltyExpirationDate')
- ->setParameter('now', new \DateTime()) ;
-
- return $query->getQuery()->getResult() ;
- }
-
- public function getProductFamiliesLargeVolumes(){
- $query = $this->findByMerchantQuery() ;
- $query->leftJoin('e.productCategories', 'cat');
- $query->andWhere('e.status = 1');
- $query->andWhere('e.propertyLargeVolume = 1');
-
- return $query->getQuery()->getResult() ;
- }
-
- public function getProductFamiliesOrganics(){
- $query = $this->findByMerchantQuery() ;
- $query->leftJoin('e.productCategories', 'cat');
- $query->andWhere('e.status = 1');
- $query->andWhere('e.propertyOrganicLabel IS NOT NULL');
-
- return $query->getQuery()->getResult() ;
- }
-
- 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.'%') ;
-
- if($maxResults) {
- $query->setMaxResults($maxResults) ;
- }
-
- return $query->getQuery()->getResult() ;
- }
-
-
- }
|