No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

ReductionCatalogRepositoryQuery.php 988B

hace 3 años
hace 3 años
hace 3 años
hace 3 años
hace 3 años
1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Reduction;
  3. use Knp\Component\Pager\PaginatorInterface;
  4. use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface;
  5. use Lc\CaracoleBundle\Repository\MerchantRepositoryQueryTrait;
  6. use Lc\SovBundle\Repository\AbstractRepositoryQuery;
  7. class ReductionCatalogRepositoryQuery extends AbstractRepositoryQuery
  8. {
  9. use MerchantRepositoryQueryTrait;
  10. public function __construct(ReductionCatalogRepository $repository, PaginatorInterface $paginator)
  11. {
  12. parent::__construct($repository, 'r', $paginator);
  13. }
  14. public function filterProductFamily(ProductFamilyInterface $productFamily)
  15. {
  16. return $this
  17. ->andWhere('.productFamily = :productFamily')
  18. ->setParameter(':productFamily', $productFamily);
  19. }
  20. public function filterStatus(bool $status)
  21. {
  22. return $this
  23. ->andWhere('.status = :status')
  24. ->setParameter(':status', $status);
  25. }
  26. }