Fabien Normand 2 лет назад
Родитель
Сommit
6bac3f6af8
2 измененных файлов: 8 добавлений и 0 удалений
  1. +7
    -0
      Repository/Product/ProductRepositoryQuery.php
  2. +1
    -0
      Repository/Product/ProductStore.php

+ 7
- 0
Repository/Product/ProductRepositoryQuery.php Просмотреть файл

@@ -108,6 +108,13 @@ class ProductRepositoryQuery extends AbstractRepositoryQuery
}


public function filterIsNotAvailableQuantitySupplierUnlimited():self
{
$this->andWhere('productFamily.availableQuantitySupplierUnlimited != 1');
return $this;
}


public function filterAvailableQuantityNegative() :self
{


+ 1
- 0
Repository/Product/ProductStore.php Просмотреть файл

@@ -66,6 +66,7 @@ class ProductStore extends AbstractStore
$query->joinProductFamily();
$query->filterIsOnline();
$query->filterAvailableQuantitySupplierNegative();
$query->filterIsNotAvailableQuantitySupplierUnlimited();
$query->groupBy('productFamily.id');
$productListAvailableQuantityNegative = $query->find();


Загрузка…
Отмена
Сохранить