Created
August 27, 2013 14:47
-
-
Save ch1ago/6354514 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CartLine < ActiveRecord::Base | |
belongs_to :cart | |
belongs_to :product | |
%w[old_price main_price cost_price].each do |k| | |
def q_#{k} | |
quantity * #{k} | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment