Class: Spree::State
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Spree::State
- Defined in:
- app/models/spree/state.rb
Class Method Summary collapse
- .find_all_by_name_or_abbr(name_or_abbr) ⇒ Object
-
.states_group_by_country_id ⇒ Object
table of { country.id => [ state.id , state.name ] }, arrays sorted by name blank is added elsewhere, if needed.
Instance Method Summary collapse
Class Method Details
.find_all_by_name_or_abbr(name_or_abbr) ⇒ Object
9 10 11 |
# File 'app/models/spree/state.rb', line 9 def self.find_all_by_name_or_abbr(name_or_abbr) where('name = ? OR abbr = ?', name_or_abbr, name_or_abbr) end |
.states_group_by_country_id ⇒ Object
table of { country.id => [ state.id , state.name ] }, arrays sorted by name blank is added elsewhere, if needed
15 16 17 18 19 20 21 |
# File 'app/models/spree/state.rb', line 15 def self.states_group_by_country_id state_info = Hash.new { |h, k| h[k] = [] } self.order('name ASC').each { |state| state_info[state.country_id.to_s].push [state.id, state.name] } state_info end |
Instance Method Details
#<=>(other) ⇒ Object
23 24 25 |
# File 'app/models/spree/state.rb', line 23 def <=>(other) name <=> other.name end |
#to_s ⇒ Object
27 28 29 |
# File 'app/models/spree/state.rb', line 27 def to_s name end |