sysmocom_mail_value_calculator: Warenpost INTL pricing of 2021-01-01

This commit is contained in:
Harald Welte 2020-12-03 13:01:28 +01:00
parent 96c2e7084a
commit b991fbf73c
1 changed files with 4 additions and 4 deletions

View File

@ -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