Sha256: 9dd3a649c0bd764a1a4d67abf198e41a833b2ed640c5790b97373ee83165096d
Contents?: true
Size: 1.29 KB
Versions: 3
Compression:
Stored size: 1.29 KB
Contents
module Spree class Promotion module Rules module OptionValueWithNumerificationSupport def preferred_eligible_values values = super || {} Hash[values.keys.map(&:to_i).zip( values.values.map do |v| (v.is_a?(Array) ? v : v.split(",")).map(&:to_i) end )] end end class OptionValue < PromotionRule prepend OptionValueWithNumerificationSupport MATCH_POLICIES = %w(any) preference :match_policy, :string, default: MATCH_POLICIES.first preference :eligible_values, :hash def applicable?(promotable) promotable.is_a?(Spree::Order) end def eligible?(promotable, _options = {}) case preferred_match_policy when 'any' promotable.line_items.any? { |item| actionable?(item) } end end def actionable?(line_item) product_id = line_item.product.id option_values_ids = line_item.variant.option_value_ids eligible_product_ids = preferred_eligible_values.keys eligible_value_ids = preferred_eligible_values[product_id] eligible_product_ids.include?(product_id) && (eligible_value_ids & option_values_ids).present? end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems