瀏覽代碼

Correctif

packProduct
Fabien Normand 2 年之前
父節點
當前提交
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();


Loading…
取消
儲存