Class: Spree::PriceHistory

Inherits:
Object
  • Object
show all
Defined in:
app/models/spree/price_history.rb

Instance Method Summary collapse

Instance Method Details

#amount_in_centsObject



25
26
27
# File 'app/models/spree/price_history.rb', line 25

def amount_in_cents
  money.amount_in_cents
end

#display_amountObject



21
22
23
# File 'app/models/spree/price_history.rb', line 21

def display_amount
  money.to_s
end

#moneyObject



17
18
19
# File 'app/models/spree/price_history.rb', line 17

def money
  Spree::Money.new(amount || 0, currency: currency)
end