Skip to content

Instantly share code, notes, and snippets.

@george
Created July 6, 2011 16:40
Show Gist options
  • Save george/1067708 to your computer and use it in GitHub Desktop.
Save george/1067708 to your computer and use it in GitHub Desktop.
class Order < ActiveRecord::Base
attr_accessible :customer_id, :status
has_many :order_items
def total
order_items.inject(0) do |acc, order_item|
acc += order_item.subtotal
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment