src/Repository/ProductOptionRepository.php line 42

Open in your IDE?
  1. <?php
  2. namespace App\Repository;
  3. use App\Entity\ProductOption;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. /**
  7.  * @extends ServiceEntityRepository<ProductOption>
  8.  *
  9.  * @method ProductOption|null find($id, $lockMode = null, $lockVersion = null)
  10.  * @method ProductOption|null findOneBy(array $criteria, array $orderBy = null)
  11.  * @method ProductOption[]    findAll()
  12.  * @method ProductOption[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  13.  */
  14. class ProductOptionRepository extends ServiceEntityRepository
  15. {
  16.     public function __construct(ManagerRegistry $registry)
  17.     {
  18.         parent::__construct($registryProductOption::class);
  19.     }
  20.     public function save(ProductOption $entitybool $flush false): void
  21.     {
  22.         $this->getEntityManager()->persist($entity);
  23.         if ($flush) {
  24.             $this->getEntityManager()->flush();
  25.         }
  26.     }
  27.     public function remove(ProductOption $entitybool $flush false): void
  28.     {
  29.         $this->getEntityManager()->remove($entity);
  30.         if ($flush) {
  31.             $this->getEntityManager()->flush();
  32.         }
  33.     }
  34.     public function getMinAndMaxValueByName(): array
  35.     {
  36.         return $this->createQueryBuilder('o')
  37.             ->select('o.name, min(cast(o.value as decimal)) as min, max(cast(o.value as decimal)) as max')
  38.             ->where("o.name in ('NAME_MEASURE_VOLUME', 'NAME_COMPARTMENTS_COUNT', 'NAME_MEASURE_LINEAR_METERS','NAME_INSURABLE_VALUE')")
  39.             ->groupBy('o.name')
  40.             ->getQuery()
  41.             ->getResult();
  42.     }
  43.     //    /**
  44.     //     * @return ProductOption[] Returns an array of ProductOption objects
  45.     //     */
  46.     //    public function findByExampleField($value): array
  47.     //    {
  48.     //        return $this->createQueryBuilder('p')
  49.     //            ->andWhere('p.exampleField = :val')
  50.     //            ->setParameter('val', $value)
  51.     //            ->orderBy('p.id', 'ASC')
  52.     //            ->setMaxResults(10)
  53.     //            ->getQuery()
  54.     //            ->getResult()
  55.     //        ;
  56.     //    }
  57.     //    public function findOneBySomeField($value): ?ProductOption
  58.     //    {
  59.     //        return $this->createQueryBuilder('p')
  60.     //            ->andWhere('p.exampleField = :val')
  61.     //            ->setParameter('val', $value)
  62.     //            ->getQuery()
  63.     //            ->getOneOrNullResult()
  64.     //        ;
  65.     //    }
  66. }