src/Repository/ProductVariantRepository.php line 76

  1. <?php
  2. namespace App\Repository;
  3. use App\Entity\Category;
  4. use App\Entity\ProductCollection;
  5. use App\Entity\ProductVariant;
  6. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  7. use Doctrine\Persistence\ManagerRegistry;
  8. /**
  9.  * @extends ServiceEntityRepository<ProductVariant>
  10.  *
  11.  * @method ProductVariant|null find($id, $lockMode = null, $lockVersion = null)
  12.  * @method ProductVariant|null findOneBy(array $criteria, array $orderBy = null)
  13.  * @method ProductVariant[]    findAll()
  14.  * @method ProductVariant[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  15.  */
  16. class ProductVariantRepository extends ServiceEntityRepository
  17. {
  18.     public function __construct(ManagerRegistry $registry)
  19.     {
  20.         parent::__construct($registryProductVariant::class);
  21.     }
  22.     public function save(ProductVariant $entitybool $flush false): void
  23.     {
  24.         $this->getEntityManager()->persist($entity);
  25.         if ($flush) {
  26.             $this->getEntityManager()->flush();
  27.         }
  28.     }
  29.     public function remove(ProductVariant $entitybool $flush false): void
  30.     {
  31.         $this->getEntityManager()->remove($entity);
  32.         if ($flush) {
  33.             $this->getEntityManager()->flush();
  34.         }
  35.     }
  36.     public function findLinkedVariants($product,$color)
  37.     {
  38.         return $this->createQueryBuilder('p')
  39.                     ->andWhere('p.product = :product')
  40.                     ->setParameter(':product',$product)
  41.                     ->join('p.optionValues','ov')
  42.                     ->andWhere('ov.value = :color')
  43.                     ->setParameter(':color',$color)
  44.                     ->getQuery()
  45.                     ->getResult();
  46.     }
  47.     public function findPriceRange($products)
  48.     {
  49.         return $this->createQueryBuilder('v')
  50.                     ->select('MAX(v.price) as max_price ,MIN(v.price) as min_price')
  51.                     ->join('v.product','p')
  52.                     ->andWhere('v.product in (:products)')
  53.                     ->setParameter(':products',$products)
  54.                     ->getQuery()
  55.                     ->getResult();
  56.     }
  57.     public function findCategoryPriceRange(Category $category)
  58.     {
  59.         return $this->createQueryBuilder('v')
  60.                     ->select('MAX(v.price) as max_price ,MIN(v.price) as min_price')
  61.                     ->join('v.product','p')
  62.                     ->join('p.categories',"categories")
  63.                     ->andWhere('categories = :category')
  64.                     ->setParameter(":category",$category)
  65.                     ->getQuery()
  66.                     ->getResult();
  67.     }
  68.     public function findCollectionPriceRange(ProductCollection $collection)
  69.     {
  70.         return $this->createQueryBuilder('v')
  71.                     ->select('MAX(v.sellingPrice) as max_price ,MIN(v.sellingPrice) as min_price')
  72.                     ->join('v.product','p')
  73.                     ->join('p.collections',"collections")
  74.                     ->andWhere('collections = :collection')
  75.                     ->setParameter(":collection",$collection)
  76.                     ->getQuery()
  77.                     ->getResult();
  78.     }
  79.     public function findByNameLike(string $searchInput)
  80.     {
  81.         return $this->createQueryBuilder('v')
  82.                         ->andWhere('v.name LIKE :searchInput')
  83.                         ->setParameter('searchInput','%'.$searchInput.'%')
  84.                         ->setMaxResults(10)
  85.                         ->getQuery()
  86.                         ->getResult();
  87.     }
  88. //    /**
  89. //     * @return ProductVariant[] Returns an array of ProductVariant objects
  90. //     */
  91. //    public function findByExampleField($value): array
  92. //    {
  93. //        return $this->createQueryBuilder('p')
  94. //            ->andWhere('p.exampleField = :val')
  95. //            ->setParameter('val', $value)
  96. //            ->orderBy('p.id', 'ASC')
  97. //            ->setMaxResults(10)
  98. //            ->getQuery()
  99. //            ->getResult()
  100. //        ;
  101. //    }
  102. //    public function findOneBySomeField($value): ?ProductVariant
  103. //    {
  104. //        return $this->createQueryBuilder('p')
  105. //            ->andWhere('p.exampleField = :val')
  106. //            ->setParameter('val', $value)
  107. //            ->getQuery()
  108. //            ->getOneOrNullResult()
  109. //        ;
  110. //    }
  111. }