mirror of
https://github.com/grocy/grocy.git
synced 2026-04-10 06:26:16 +02:00
migrations/0095: add value to stock_current and stock_current_location_content
This commit is contained in:
parent
9ba66aeac2
commit
6c9b04ac1a
53
migrations/0095.sql
Normal file
53
migrations/0095.sql
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
DROP VIEW stock_current_location_content;
|
||||||
|
CREATE VIEW stock_current_location_content
|
||||||
|
AS
|
||||||
|
SELECT
|
||||||
|
IFNULL(s.location_id, p.location_id) AS location_id,
|
||||||
|
s.product_id,
|
||||||
|
SUM(s.amount) AS amount,
|
||||||
|
SUM(IFNULL(s.price, 0) * s.amount) AS value,
|
||||||
|
MIN(s.best_before_date) AS best_before_date,
|
||||||
|
IFNULL((SELECT SUM(amount) FROM stock WHERE product_id = s.product_id AND location_id = s.location_id AND open = 1), 0) AS amount_opened
|
||||||
|
FROM stock s
|
||||||
|
JOIN products p
|
||||||
|
ON s.product_id = p.id
|
||||||
|
GROUP BY IFNULL(s.location_id, p.location_id), s.product_id;
|
||||||
|
|
||||||
|
DROP VIEW stock_current;
|
||||||
|
CREATE VIEW stock_current
|
||||||
|
AS
|
||||||
|
SELECT
|
||||||
|
pr.parent_product_id AS product_id,
|
||||||
|
IFNULL((SELECT SUM(amount) FROM stock WHERE product_id = pr.parent_product_id), 0) AS amount,
|
||||||
|
SUM(s.amount) AS amount_aggregated,
|
||||||
|
IFNULL((SELECT SUM(IFNULL(s.price,0) * IFNULL(amount,0)) FROM stock WHERE product_id = pr.parent_product_id),0) AS value,
|
||||||
|
MIN(s.best_before_date) AS best_before_date,
|
||||||
|
IFNULL((SELECT SUM(amount) FROM stock WHERE product_id = pr.parent_product_id AND open = 1), 0) AS amount_opened,
|
||||||
|
IFNULL((SELECT SUM(amount) FROM stock WHERE product_id IN (SELECT sub_product_id FROM products_resolved WHERE parent_product_id = pr.parent_product_id) AND open = 1), 0) AS amount_opened_aggregated,
|
||||||
|
CASE WHEN p.parent_product_id IS NOT NULL THEN 1 ELSE 0 END AS is_aggregated_amount
|
||||||
|
FROM products_resolved pr
|
||||||
|
JOIN stock s
|
||||||
|
ON pr.sub_product_id = s.product_id
|
||||||
|
JOIN products p
|
||||||
|
ON pr.sub_product_id = p.id
|
||||||
|
GROUP BY pr.parent_product_id
|
||||||
|
HAVING SUM(s.amount) > 0
|
||||||
|
|
||||||
|
UNION
|
||||||
|
|
||||||
|
-- This is the same as above but sub products not rolled up (column is_aggregated_amount = 0 here)
|
||||||
|
SELECT
|
||||||
|
pr.sub_product_id AS product_id,
|
||||||
|
SUM(s.amount) AS amount,
|
||||||
|
SUM(s.amount) AS amount_aggregated,
|
||||||
|
SUM(IFNULL(s.price, 0) * s.amount) AS value,
|
||||||
|
MIN(s.best_before_date) AS best_before_date,
|
||||||
|
IFNULL((SELECT SUM(amount) FROM stock WHERE product_id = s.product_id AND open = 1), 0) AS amount_opened,
|
||||||
|
IFNULL((SELECT SUM(amount) FROM stock WHERE product_id = s.product_id AND open = 1), 0) AS amount_opened_aggregated,
|
||||||
|
0 AS is_aggregated_amount
|
||||||
|
FROM products_resolved pr
|
||||||
|
JOIN stock s
|
||||||
|
ON pr.sub_product_id = s.product_id
|
||||||
|
WHERE pr.parent_product_id != pr.sub_product_id
|
||||||
|
GROUP BY pr.sub_product_id
|
||||||
|
HAVING SUM(s.amount) > 0;
|
||||||
|
|
@ -20,7 +20,7 @@ class StockService extends BaseService
|
||||||
$missingProductsView = 'stock_missing_products';
|
$missingProductsView = 'stock_missing_products';
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = 'SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM ' . $missingProductsView . ' WHERE id NOT IN (SELECT product_id FROM stock_current)';
|
$sql = 'SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, 0, null, 0, 0, 0 FROM ' . $missingProductsView . ' WHERE id NOT IN (SELECT product_id FROM stock_current)';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->DatabaseService->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ);
|
return $this->DatabaseService->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user