Context: I have 2 models Order and Item.
I want to calculate Item subtotal based on item.quantity * item.price For now this is done in the view (but not the appropriate place).
<%= number_to_currency(item.quantity * item.price) %>
I also need to calculate the Order total but I'm stuck. I don't have any column for that. What's the best approach? Use the model? Helper or Observer?
For now I managed to have subtotal working through Order helper
def item_subtotal(item)
item_subtotal = item.quantity * item.price
end
Working Solution:
Item model
def subtotal
price * quantity
end
In View render <%= item.subtotal %>
Order model
def total_price
total_price = items.inject(0) { |sum, p| sum + p.subtotal }
end
Order#show view render <%= number_to_currency(@order.total_price) %>
Since it is a functionality of the model (you want to calculate something of the item that is self-referential), the more appropriate location is the model itself, so that you can easily use