mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 20:26:42 +00:00
Fixed product average price rounding
This commit is contained in:
9
migrations/0201.sql
Normal file
9
migrations/0201.sql
Normal 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;
|
Reference in New Issue
Block a user