increase postage within Germany to 5.50 EUR

This commit is contained in:
Harald Welte 2019-11-05 13:37:47 +01:00
parent 404c16657e
commit 2cd17f0e4b
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ module Spree
def postage_for_weight_DE(weight)
# Maxibrief Einschreiben: 5.10
# Maxibrief Einschreiben: 5.50
if weight < 1000
return 5.10
return 5.50
else
return 99999
end