Files
openfoodnetwork/app/serializers/api/payment_method_serializer.rb
Maikel Linke 0af8377844 Add payment method fees to order during checkout
The fee is displayed as "Transaction fee".
2016-05-25 14:56:52 +10:00

9 lines
208 B
Ruby

class Api::PaymentMethodSerializer < ActiveModel::Serializer
attributes :name, :description, :id, :method_type,
:price
def price
object.compute_amount(options[:current_order])
end
end