Class: Spree::Price

Inherits:
Base
  • Object
show all
Extended by:
DisplayMoney
Includes:
SoftDeletable
Defined in:
app/models/spree/price.rb

Constant Summary collapse

MAXIMUM_AMOUNT =
BigDecimal("99_999_999.99")

Instance Method Summary collapse

Methods included from DisplayMoney

money_methods

Methods inherited from Base

display_includes

Methods included from Core::Permalinks

#generate_permalink, #save_permalink

Instance Method Details

#country_iso=(country_iso) ⇒ Object



65
66
67
# File 'app/models/spree/price.rb', line 65

def country_iso=(country_iso)
  self[:country_iso] = country_iso.presence
end

#display_countryObject



57
58
59
60
61
62
63
# File 'app/models/spree/price.rb', line 57

def display_country
  if country_iso
    "#{country_iso} (#{I18n.t(country_iso, scope: [:spree, :country_names])})"
  else
    I18n.t(:any_country, scope: [:spree, :admin, :prices])
  end
end

#for_any_country?Boolean

Returns:

  • (Boolean)


53
54
55
# File 'app/models/spree/price.rb', line 53

def for_any_country?
  country_iso.nil?
end

#net_amountObject



49
50
51
# File 'app/models/spree/price.rb', line 49

def net_amount
  amount / (1 + sum_of_vat_amounts)
end

#priceObject

An alias for #amount



37
38
39
# File 'app/models/spree/price.rb', line 37

def price
  amount
end

#price=(price) ⇒ Object

Sets this price’s amount to a new value, parsing it if the new value is a string.

Parameters:

  • price (String, #to_d)

    a new amount



45
46
47
# File 'app/models/spree/price.rb', line 45

def price=(price)
  self[:amount] = Spree::LocalizedNumber.parse(price)
end