grocy/migrations/0095.sql
Kurt Riddlesperger 18c607fe1d Transfer Products
2019-12-19 08:34:12 -06:00

12 lines
353 B
SQL

DROP VIEW stock_current_locations;
CREATE VIEW stock_current_locations AS
SELECT
s.id,
s.product_id,
IFNULL(s.location_id, p.location_id) AS location_id,
l.name AS name
FROM stock s
JOIN products p ON s.product_id = p.id
JOIN locations l on IFNULL(s.location_id, p.location_id) = l.id
GROUP BY s.product_id, IFNULL(s.location_id, p.location_id)