Class: Spree::ReturnReason

Inherits:
Base
  • Object
show all
Includes:
NamedType
Defined in:
app/models/spree/return_reason.rb

Class Method Summary collapse

Methods inherited from Base

#initialize_preference_defaults, page, preference

Methods included from Preferences::Preferable

#default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Class Method Details

.reasons_for_return_items(return_items) ⇒ Object



7
8
9
10
# File 'app/models/spree/return_reason.rb', line 7

def self.reasons_for_return_items(return_items)
  # Only allow an inactive reason if it's already associated to a return item
  active | return_items.map(&:return_reason).compact
end