sysmocom_mail_value_calculator.rb: Add missing 'end'

This commit is contained in:
Harald Welte 2017-01-23 12:18:19 +01:00
parent 19816ee247
commit aac64aa2a9
1 changed files with 1 additions and 0 deletions

View File

@ -33,6 +33,7 @@ module Spree
if shipping_value < 30
# Plain registered letter
return base
end
return base + 2.5 + (((shipping_value.round / 100) + 1) * 2)
end