Method: Spree::LineItem#money

Defined in:
app/models/spree/line_item.rb

#moneySpree::Moeny Also known as: display_total, display_amount

Returns the amount of this line item.

Returns:

  • (Spree::Moeny)

    the amount of this line item



94
95
96
# File 'app/models/spree/line_item.rb', line 94

def money
  Spree::Money.new(amount, { currency: currency })
end