3919 - Use fedex in UK (#333)

This commit is contained in:
Anders Gustafsson
2023-06-16 12:53:56 +02:00
committed by GitHub
parent f2b248d551
commit f8370beebd
+11
View File
@@ -0,0 +1,11 @@
-- Replace dhlEconomyUk with fedexStandardWorld in GB
UPDATE "delivery-methods_prices"
SET method = (select id from "delivery-methods" where name = 'fedexStandardWorld')
WHERE method = (select id from "delivery-methods" where name = 'dhlEconomyUK')
AND territory = 'GB';
-- Replace dhl (express) with fedexStandardWorld in GB
UPDATE "delivery-methods_prices"
SET method = (select id from "delivery-methods" where name = 'fedexExpressWorld')
WHERE method = (select id from "delivery-methods" where name = 'dhl')
AND territory = 'GB';