From b991fbf73ccd4a74748f9c2cfc24d5193141e6e1 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 3 Dec 2020 13:01:28 +0100 Subject: [PATCH] sysmocom_mail_value_calculator: Warenpost INTL pricing of 2021-01-01 --- .../spree/calculator/sysmocom_mail_value_calculator.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/models/spree/calculator/sysmocom_mail_value_calculator.rb b/app/models/spree/calculator/sysmocom_mail_value_calculator.rb index 8770f7d..fc74bac 100644 --- a/app/models/spree/calculator/sysmocom_mail_value_calculator.rb +++ b/app/models/spree/calculator/sysmocom_mail_value_calculator.rb @@ -38,13 +38,13 @@ module Spree end def postage_for_weight_INTL(weight) - # Warenpost International Unterschrift S: 6.20 / M: 9.50 / L: 19.50 + # Warenpost International Unterschrift S: 8.50 / M: 12.50 / L: 23.40 if weight < 500 - return 7.20 + return 8.50 elsif weight < 1000 - return 10.50 + return 12.50 elsif weight < 2000 - return 20.50 + return 23.40 else return 99999 end