17 lines
793 B
SQL
17 lines
793 B
SQL
-- 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
|
|
|