diff --git a/migrations/000.242.sql b/migrations/000.242.sql new file mode 100644 index 0000000..62d677a --- /dev/null +++ b/migrations/000.242.sql @@ -0,0 +1,16 @@ +-- P5-5836 Add DHL Express to Sweden and Norway + +-- Add DHL to Norway, including foreign resellers. Prices without VAT. +INSERT INTO "delivery-methods_prices" (method, option, option_value, currency, price, territory) VALUES + (10, '', '', 'NOK', 55.2, 'NO'), -- 69/1.25=55.2 + (10, '', '', 'SEK', 55.2, 'NO'), + (10, '', '', 'DKK', 47.2, 'NO'), -- 59/1.25=47.2 + (10, '', '', 'GBP', (7/1.2), 'NO'); + +-- Add DHL Express to Sweden, including foreign resellers. Prices without VAT +INSERT INTO "delivery-methods_prices" (method, option, option_value, currency, price, territory) VALUES + (14, '', '', 'SEK', 55.2, 'SE'), -- 69/1.25=55.2 + (14, '', '', 'DKK', 47.2, 'SE'), -- 59/1.25=47.2 + (14, '', '', 'GBP', (7/1.2), 'SE'), + (14, '', '', 'EUR', (7/1.23), 'SE'); -- PL reseller +