feat(receipt-import): add rule-based category suggestion logic for items

feat(migrations): add new categories for lactose-free products and allergy options
This commit is contained in:
Nils-Johan Gynther
2026-05-02 16:42:33 +02:00
parent 2563738fcf
commit 1604751b65
6 changed files with 214 additions and 2 deletions
@@ -0,0 +1,15 @@
-- Ensure L3 "Matfett" exists under:
-- Mejeri, ost & ägg > Allergi mejeri
INSERT INTO `Category` (`name`, `parentId`)
SELECT 'Matfett', c2.id
FROM `Category` c1
JOIN `Category` c2
ON c2.parentId = c1.id
AND c2.name = 'Allergi mejeri'
LEFT JOIN `Category` c3
ON c3.parentId = c2.id
AND c3.name = 'Matfett'
WHERE c1.name = 'Mejeri, ost & ägg'
AND c1.parentId IS NULL
AND c3.id IS NULL;