|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?php
-
- namespace Lc\ShopBundle\Repository;
-
- use Lc\ShopBundle\Context\DefaultRepositoryInterface;
- use Lc\ShopBundle\Context\ProductFamilyInterface;
- use Lc\ShopBundle\Context\ReductionCatalogInterface;
- use Lc\ShopBundle\Model\ProductFamily;
-
- /**
- * @method ProductFamilyInterface|null find($id, $lockMode = null, $lockVersion = null)
- * @method ProductFamilyInterface|null findOneBy(array $criteria, array $orderBy = null)
- * @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 joinRelations($query)
- {
- $query->leftJoin('e.productCategories', 'cat');
- $query->addSelect('cat') ;
-
- $query->innerJoin('e.products', 'pfp');
- $query->addSelect('pfp') ;
-
- $query->orderBy('e.position', 'ASC');
-
- return $query ;
- }
-
- public function findAll()
- {
- $query = $this->findByMerchantQuery() ;
- $query = $this->joinRelations($query) ;
- 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() ;
- $query->andWhere('e.slug = :slug')->setParameter('slug',$slug) ;
- $query->andWhere('e.status = 1');
- return $query->getQuery()->getOneOrNullResult() ;
- }
-
- public function getProductFamiliesByCategory($category){
- $query = $this->findByMerchantQuery() ;
- $query = $this->joinRelations($query) ;
-
- $query->andWhere(':category MEMBER OF e.productCategories');
- $query->setParameter('category', $category->getId());
-
- $query->andWhere('e.status = 1');
- $query->orderBy('e.position', 'ASC');
-
- return $query->getQuery()->getResult() ;
- }
-
- public function getProductFamiliesNovelties(){
- $query = $this->findByMerchantQuery();
- $query = $this->joinRelations($query) ;
-
- $query->andWhere('e.status = 1');
- $query->andWhere(':now <= e.propertyNoveltyExpirationDate')
- ->setParameter('now', new \DateTime()) ;
- $query->orderBy('e.createdAt', 'DESC');
-
- return $query->getQuery()->getResult() ;
- }
-
- public function getProductFamiliesLargeVolumes(){
- $query = $this->findByMerchantQuery() ;
- $query = $this->joinRelations($query) ;
-
- $query->andWhere('e.status = 1');
- $query->andWhere('e.propertyLargeVolume = 1');
-
- return $query->getQuery()->getResult() ;
- }
-
- public function getProductFamiliesOrganics(){
- $query = $this->findByMerchantQuery() ;
- $query = $this->joinRelations($query) ;
-
- $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->addSelect('cat') ;
-
- $query->orderBy('e.position', 'ASC');
-
- $query->andWhere('e.status = 1');
- $query->andWhere('e.title LIKE :terms OR cat.title LIKE :terms');
- $query->setParameter(':terms', '%'.$terms.'%') ;
-
- $query->groupBy('e.id') ;
-
- if($maxResults) {
- $query->setMaxResults($maxResults) ;
- }
-
- return $query->getQuery()->getResult() ;
- }
-
-
-
-
- }
|