Sha256: 0e56b5a2bb3b42017af7cfa89277ebfc4827649b4417ef3770de619e78f5f447
Contents?: true
Size: 1.22 KB
Versions: 37
Compression:
Stored size: 1.22 KB
Contents
module Spree class Promotion module Rules class OptionValue < PromotionRule 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) pid = line_item.product.id ovids = line_item.variant.option_values.pluck(:id) product_ids.include?(pid) && (value_ids(pid) & ovids).present? end def preferred_eligible_values values = preferences[:eligible_values] || {} Hash[values.keys.map(&:to_i).zip( values.values.map do |v| (v.is_a?(Array) ? v : v.split(",")).map(&:to_i) end )] end private def product_ids preferred_eligible_values.keys end def value_ids(product_id) preferred_eligible_values[product_id] end end end end end
Version data entries
37 entries across 37 versions & 1 rubygems