sysmocom_mail_value_calculator: Update Calculation "Wert International"

This commit is contained in:
Harald Welte 2017-01-23 12:07:30 +01:00
parent f9611fef4d
commit 19816ee247
1 changed files with 1 additions and 5 deletions

View File

@ -33,12 +33,8 @@ module Spree
if shipping_value < 30
# Plain registered letter
return base
elsif shipping_value > 300
# Stops making sense to send it..
return 200
end
return base + (((shipping_value.round / 100) + 1) * 1.5)
return base + 2.5 + (((shipping_value.round / 100) + 1) * 2)
end
end