src/Repository/ProductVariantRepository.php line 53
<?php
namespace App\Repository;
use App\Entity\Category;
use App\Entity\ProductCollection;
use App\Entity\ProductVariant;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<ProductVariant>
*
* @method ProductVariant|null find($id, $lockMode = null, $lockVersion = null)
* @method ProductVariant|null findOneBy(array $criteria, array $orderBy = null)
* @method ProductVariant[] findAll()
* @method ProductVariant[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class ProductVariantRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, ProductVariant::class);
}
public function save(ProductVariant $entity, bool $flush = false): void
{
$this->getEntityManager()->persist($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function remove(ProductVariant $entity, bool $flush = false): void
{
$this->getEntityManager()->remove($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function findLinkedVariants($product,$color)
{
return $this->createQueryBuilder('p')
->andWhere('p.product = :product')
->setParameter(':product',$product)
->join('p.optionValues','ov')
->andWhere('ov.value = :color')
->setParameter(':color',$color)
->getQuery()
->getResult();
}
public function findPriceRange($products)
{
return $this->createQueryBuilder('v')
->select('MAX(v.price) as max_price ,MIN(v.price) as min_price')
->join('v.product','p')
->andWhere('v.product in (:products)')
->setParameter(':products',$products)
->getQuery()
->getResult();
}
public function findCategoryPriceRange(Category $category)
{
return $this->createQueryBuilder('v')
->select('MAX(v.price) as max_price ,MIN(v.price) as min_price')
->join('v.product','p')
->join('p.categories',"categories")
->andWhere('categories = :category')
->setParameter(":category",$category)
->getQuery()
->getResult();
}
public function findCollectionPriceRange(ProductCollection $collection)
{
return $this->createQueryBuilder('v')
->select('MAX(v.sellingPrice) as max_price ,MIN(v.sellingPrice) as min_price')
->join('v.product','p')
->join('p.collections',"collections")
->andWhere('collections = :collection')
->setParameter(":collection",$collection)
->getQuery()
->getResult();
}
public function findByNameLike(string $searchInput)
{
return $this->createQueryBuilder('v')
->andWhere('v.name LIKE :searchInput')
->setParameter('searchInput','%'.$searchInput.'%')
->setMaxResults(10)
->getQuery()
->getResult();
}
// /**
// * @return ProductVariant[] Returns an array of ProductVariant objects
// */
// public function findByExampleField($value): array
// {
// return $this->createQueryBuilder('p')
// ->andWhere('p.exampleField = :val')
// ->setParameter('val', $value)
// ->orderBy('p.id', 'ASC')
// ->setMaxResults(10)
// ->getQuery()
// ->getResult()
// ;
// }
// public function findOneBySomeField($value): ?ProductVariant
// {
// return $this->createQueryBuilder('p')
// ->andWhere('p.exampleField = :val')
// ->setParameter('val', $value)
// ->getQuery()
// ->getOneOrNullResult()
// ;
// }
}