Fixed stock overview page status button counters related to the product option "Never show on stock overview" (fixes #1956)

This commit is contained in:
Bernd Bestel
2022-07-24 21:36:29 +02:00
parent 5b53175ed6
commit 57d70851c8
3 changed files with 22 additions and 6 deletions

View File

@@ -677,7 +677,16 @@ class StockService extends BaseService
public function GetMissingProducts()
{
return $this->getDatabaseService()->ExecuteDbQuery('SELECT * FROM stock_missing_products')->fetchAll(\PDO::FETCH_OBJ);
$missingProductsResponse = $this->getDatabaseService()->ExecuteDbQuery('SELECT * FROM stock_missing_products')->fetchAll(\PDO::FETCH_OBJ);
$relevantProducts = $this->getDatabase()->products()->where('id IN (SELECT id FROM stock_missing_products)');
foreach ($relevantProducts as $product)
{
FindObjectInArrayByPropertyValue($missingProductsResponse, 'id', $product->id)->product = $product;
}
return $missingProductsResponse;
}
public function GetProductDetails(int $productId)