Add ERP order import endpoint and n8n order-ingest flow export

This commit is contained in:
2026-03-29 20:45:00 +02:00
parent 09c978f8aa
commit b214723a46
18 changed files with 3554 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
BEGIN;
INSERT INTO payment_method (code, label)
VALUES
('card', 'Kredit-/Debitkarten'),
('twint', 'TWINT'),
('bank_transfer', 'Bankueberweisung')
ON CONFLICT (code) DO NOTHING;
INSERT INTO shipping_method (code, label)
VALUES
('post_standard', 'Versand mit Die Schweizerische Post (1-3 Werktage)'),
('pickup', 'Abholung')
ON CONFLICT (code) DO NOTHING;
COMMIT;