Class: Spree::Promotion::Rules::Taxon

Inherits:
Spree::PromotionRule show all
Defined in:
app/models/spree/promotion/rules/taxon.rb

Constant Summary collapse

MATCH_POLICIES =
%w(any all)

Instance Method Summary collapse

Methods inherited from Spree::PromotionRule

#eligibility_errors, for

Methods inherited from Base

display_includes, #initialize_preference_defaults, page, preference

Methods included from Spree::Preferences::Preferable

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

Instance Method Details

#actionable?(line_item) ⇒ Boolean

Returns:

  • (Boolean)


42
43
44
45
46
47
48
49
50
51
# File 'app/models/spree/promotion/rules/taxon.rb', line 42

def actionable?(line_item)
  case preferred_match_policy
  when 'any', 'all'
    taxon_product_ids.include?(line_item.variant.product_id)
  else
    # Change this to an exception in a future version of Solidus
    warn_invalid_match_policy(assume: 'any')
    taxon_product_ids.include?(line_item.variant.product_id)
  end
end

#applicable?(promotable) ⇒ Boolean

Returns:

  • (Boolean)


15
16
17
# File 'app/models/spree/promotion/rules/taxon.rb', line 15

def applicable?(promotable)
  promotable.is_a?(Spree::Order)
end

#eligible?(order, _options = {}) ⇒ Boolean

Returns:

  • (Boolean)


19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'app/models/spree/promotion/rules/taxon.rb', line 19

def eligible?(order, _options = {})
  order_taxons = taxons_in_order_including_parents(order)

  case preferred_match_policy
  when 'all'
    unless (taxons.to_a - order_taxons).empty?
      eligibility_errors.add(:base, eligibility_error_message(:missing_taxon))
    end
  when 'any'
    unless taxons.any?{ |taxon| order_taxons.include? taxon }
      eligibility_errors.add(:base, eligibility_error_message(:no_matching_taxons))
    end
  else
    # Change this to an exception in a future version of Solidus
    warn_invalid_match_policy(assume: 'any')
    unless taxons.any? { |taxon| order_taxons.include? taxon }
      eligibility_errors.add(:base, eligibility_error_message(:no_matching_taxons))
    end
  end

  eligibility_errors.empty?
end

#taxon_ids_stringObject



53
54
55
# File 'app/models/spree/promotion/rules/taxon.rb', line 53

def taxon_ids_string
  taxons.pluck(:id).join(',')
end

#taxon_ids_string=(s) ⇒ Object



57
58
59
60
# File 'app/models/spree/promotion/rules/taxon.rb', line 57

def taxon_ids_string=(s)
  ids = s.to_s.split(',').map(&:strip)
  self.taxons = Spree::Taxon.find(ids)
end