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

page, spree_base_scopes

Methods included from Spree::Preferences::Preferable

#clear_preferences, #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)


30
31
32
# File 'app/models/spree/promotion/rules/taxon.rb', line 30

def actionable?(line_item)
  taxon_product_ids.include? line_item.variant.product_id
end

#applicable?(promotable) ⇒ Boolean

Returns:

  • (Boolean)


11
12
13
# File 'app/models/spree/promotion/rules/taxon.rb', line 11

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

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

Returns:

  • (Boolean)


15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'app/models/spree/promotion/rules/taxon.rb', line 15

def eligible?(order, options = {})
  if preferred_match_policy == 'all'
    unless (taxons.to_a - taxons_in_order_including_parents(order)).empty?
      eligibility_errors.add(:base, eligibility_error_message(:missing_taxon))
    end
  else
    order_taxons = taxons_in_order_including_parents(order)
    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



34
35
36
# File 'app/models/spree/promotion/rules/taxon.rb', line 34

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

#taxon_ids_string=(s) ⇒ Object



38
39
40
41
# File 'app/models/spree/promotion/rules/taxon.rb', line 38

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