mirror of
https://github.com/grocy/grocy.git
synced 2025-10-12 16:44:55 +00:00
Optimized/clarified new "Hide product from stock overview" option (references #906)
This commit is contained in:
@@ -38,7 +38,7 @@ FROM (
|
||||
) sc
|
||||
LEFT JOIN products p
|
||||
ON sc.product_id = p.id
|
||||
WHERE p.show_on_stock_overview = 1;
|
||||
WHERE p.hide_on_stock_overview = 0;
|
||||
|
||||
CREATE VIEW uihelper_stock_current_overview
|
||||
AS
|
||||
@@ -80,4 +80,4 @@ FROM (
|
||||
) sc
|
||||
LEFT JOIN products p
|
||||
ON sc.product_id = p.id
|
||||
WHERE p.show_on_stock_overview = 1;
|
||||
WHERE p.hide_on_stock_overview = 0;
|
||||
|
Reference in New Issue
Block a user