Sha256: 68bf1b6b45975aeb0a12bb7f0946a9cbbd475481acc6fe477a1a26103cc430e2

Contents?: true

Size: 1.69 KB

Versions: 6

Compression:

Stored size: 1.69 KB

Contents

module Spree
  class Variant < Spree::Base
    # FIXME: WARNING tested only under sqlite and postgresql
    scope :descend_by_popularity, -> {
      order(Arel.sql("COALESCE((SELECT COUNT(*) FROM  #{Spree::LineItem.quoted_table_name} GROUP BY #{Spree::LineItem.quoted_table_name}.variant_id HAVING #{Spree::LineItem.quoted_table_name}.variant_id = #{Spree::Variant.quoted_table_name}.id), 0) DESC"))
    }

    class << self
      # Returns variants that match a given option value
      #
      # Example:
      #
      # product.variants_including_master.has_option(OptionType.find_by(name: 'shoe-size'), OptionValue.find_by(name: '8'))
      def has_option(option_type, *option_values)
        option_types = Spree::OptionType.table_name

        option_type_conditions = case option_type
                                 when OptionType then { "#{option_types}.name" => option_type.name }
                                 when String     then { "#{option_types}.name" => option_type }
        else { "#{option_types}.id" => option_type }
        end

        relation = joins(option_values: :option_type).where(option_type_conditions)

        option_values.each do |option_value|
          option_value_conditions = case option_value
                                    when OptionValue then { "#{Spree::OptionValue.table_name}.name" => option_value.name }
                                    when String      then { "#{Spree::OptionValue.table_name}.name" => option_value }
          else { "#{Spree::OptionValue.table_name}.id" => option_value }
          end
          relation = relation.where(option_value_conditions)
        end

        relation
      end

      alias_method :has_options, :has_option
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
solidus_core-2.5.2 app/models/spree/variant/scopes.rb
solidus_core-2.5.1 app/models/spree/variant/scopes.rb
solidus_core-2.5.0 app/models/spree/variant/scopes.rb
solidus_core-2.5.0.rc1 app/models/spree/variant/scopes.rb
solidus_core-2.5.0.beta2 app/models/spree/variant/scopes.rb
solidus_core-2.5.0.beta1 app/models/spree/variant/scopes.rb