Fixed product average price rounding

This commit is contained in:
Bernd Bestel
2022-08-29 20:56:15 +02:00
parent 68aad90a59
commit af4715e17f

9
migrations/0201.sql Normal file
View File

@@ -0,0 +1,9 @@
DROP VIEW products_average_price;
CREATE VIEW products_average_price
AS
SELECT
1 AS id, -- Dummy, LessQL needs an id column
s.product_id,
SUM(s.amount * s.price) / SUM(s.amount) as price
FROM stock s
GROUP BY s.product_id;