Sha256: 1ff645f8004b127fcdd058fd2c85cd31c7ebb0e437d717c3c16b64ea74e10e7a
Contents?: true
Size: 765 Bytes
Versions: 15
Compression:
Stored size: 765 Bytes
Contents
module Spree class State < Spree::Base belongs_to :country, class_name: 'Spree::Country' has_many :addresses, dependent: :nullify validates :country, :name, presence: true def self.find_all_by_name_or_abbr(name_or_abbr) where('name = ? OR abbr = ?', name_or_abbr, name_or_abbr) end # table of { country.id => [ state.id , state.name ] }, arrays sorted by name # blank is added elsewhere, if needed def self.states_group_by_country_id state_info = Hash.new { |h, k| h[k] = [] } self.order(:name).each { |state| state_info[state.country_id.to_s].push [state.id, state.name] } state_info end def <=>(other) name <=> other.name end def to_s name end end end
Version data entries
15 entries across 15 versions & 1 rubygems