Module: Stall::Models::Cart
Instance Method Summary collapse
Instance Method Details
#active? ⇒ Boolean
23 24 25 |
# File 'app/models/stall/models/cart.rb', line 23 def active? !paid? end |
#total_weight ⇒ Object
17 18 19 20 21 |
# File 'app/models/stall/models/cart.rb', line 17 def total_weight line_items.reduce(0) do |total, line_item| total + (line_item.weight || Stall.config.default_product_weight) end end |