foodsoft/app/serializers/group_order_article_serializer.rb
2021-02-17 17:07:39 +01:00

8 lines
211 B
Ruby

class GroupOrderArticleSerializer < ActiveModel::Serializer
attributes :id, :order_article_id
attributes :quantity, :tolerance, :result, :total_price
def total_price
object.total_price.to_f
end
end