Class: OpCart::LineItem
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- OpCart::LineItem
- Defined in:
- app/models/op_cart/line_item.rb
Instance Method Summary collapse
Instance Method Details
#total ⇒ Object
18 19 20 21 22 23 24 |
# File 'app/models/op_cart/line_item.rb', line 18 def total if sellable.is_a? Plan 0 else (unit_price || sellable.price) * quantity end end |