mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 20:26:42 +00:00
Indicate incomplete recipe costs information (closes #1941)
This commit is contained in:
21
migrations/0247.sql
Normal file
21
migrations/0247.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
DROP VIEW recipes_resolved;
|
||||
CREATE VIEW recipes_resolved
|
||||
AS
|
||||
SELECT
|
||||
1 AS id, -- Dummy, LessQL needs an id column
|
||||
r.id AS recipe_id,
|
||||
IFNULL(MIN(rpr.need_fulfilled), 1) AS need_fulfilled,
|
||||
IFNULL(MIN(rpr.need_fulfilled_with_shopping_list), 1) AS need_fulfilled_with_shopping_list,
|
||||
IFNULL(rmpc.missing_products_count, 0) AS missing_products_count,
|
||||
IFNULL(SUM(rpr.costs), 0) AS costs,
|
||||
IFNULL(SUM(rpr.costs) / CASE WHEN IFNULL(r.desired_servings, 0) = 0 THEN 1 ELSE r.desired_servings END, 0) AS costs_per_serving,
|
||||
IFNULL(SUM(rpr.calories), 0) AS calories,
|
||||
IFNULL(SUM(rpr.due_score), 0) AS due_score,
|
||||
GROUP_CONCAT(rpr.product_name) AS product_names_comma_separated,
|
||||
CASE WHEN MIN(IFNULL(rpr.costs, 0)) = 0 THEN 1 ELSE 0 END AS prices_incomplete
|
||||
FROM recipes r
|
||||
LEFT JOIN recipes_pos_resolved rpr
|
||||
ON r.id = rpr.recipe_id
|
||||
LEFT JOIN recipes_missing_product_counts rmpc
|
||||
ON r.id = rmpc.recipe_id
|
||||
GROUP BY r.id;
|
Reference in New Issue
Block a user