Class: Product
- Inherits:
-
Item
- Object
- Item
- Product
- Defined in:
- app/models/product.rb
Instance Attribute Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#price ⇒ Object
9 |
# File 'app/models/product.rb', line 9 def price; @price ||= 0 end |
Instance Method Details
#price_with_currency ⇒ Object
11 12 13 |
# File 'app/models/product.rb', line 11 def price_with_currency "#{price} #{rad.store.currency}" end |