Sha256: ef7c6b32e18a177862056b94c7b13332b5bfecc1e583e6e551bb8b87d8cbc8d7

Contents?: true

Size: 1.35 KB

Versions: 19

Compression:

Stored size: 1.35 KB

Contents

module Spree
  class Promotion
    module Rules
      class NthOrder < PromotionRule
        preference :nth_order, :integer, default: 2
        # It does not make sense to have this apply to the first order using preferred_nth_order == 1
        # Instead we could use the first_order rule
        validates :preferred_nth_order, numericality: { only_integer: true, greater_than: 1 }

        # This promotion is applicable to orders only.
        def applicable?(promotable)
          promotable.is_a?(Spree::Order)
        end

        # This is never eligible if the order does not have a user, and that user does not have any previous completed orders.
        #
        # Use the first order rule if you want a promotion to be applied to the first order for a user.
        # @param order [Spree::Order]
        # @option options
        def eligible?(order, options = {})
          return false unless order.user

          nth_order?(order)
        end

        private

        def completed_order_count order
          order.
            user.
            orders.
            complete.
            where(Spree::Order.arel_table[:completed_at].lt(order.completed_at || Time.now)).
            count
        end

        def nth_order? order
          count = completed_order_count(order) + 1
          count == preferred_nth_order
        end
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
solidus_core-1.1.4 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.7 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.6 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.1.3 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.5 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.4 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.1.2 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.3 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.1.1 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.1.0 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.1.0.pre2 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.1.0.pre1 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.1.0.beta1 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.2 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.1 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.0 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.0.rc2 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.0.rc1 app/models/spree/promotion/rules/nth_order.rb
solidus_core-1.0.0.pre3 app/models/spree/promotion/rules/nth_order.rb