Sha256: 3b4cf03530376278554da9001dd71f35711198f3ab9450338793bae2bf531e1f

Contents?: true

Size: 1.67 KB

Versions: 4

Compression:

Stored size: 1.67 KB

Contents

# frozen_string_literal: true

module SolidusFriendlyPromotions
  class PromotionCode < Spree::Base
    belongs_to :promotion, inverse_of: :codes
    belongs_to :promotion_code_batch, inverse_of: :promotion_codes, optional: true
    has_many :adjustments, class_name: "Spree::Adjustment"

    before_validation :normalize_code

    validates :value, presence: true, uniqueness: {allow_blank: true, case_sensitive: true}
    validate :promotion_not_apply_automatically, on: :create

    self.allowed_ransackable_attributes = ["value"]

    # Whether the promotion code has exceeded its usage restrictions
    #
    # @param excluded_orders [Array<Spree::Order>] Orders to exclude from usage limit
    # @return true or false
    def usage_limit_exceeded?(excluded_orders: [])
      return unless usage_limit

      usage_count(excluded_orders: excluded_orders) >= usage_limit
    end

    # Number of times the code has been used overall
    #
    # @param excluded_orders [Array<Spree::Order>] Orders to exclude from usage count
    # @return [Integer] usage count
    def usage_count(excluded_orders: [])
      promotion
        .discounted_orders
        .complete
        .where.not(spree_orders: {state: :canceled})
        .joins(:friendly_order_promotions)
        .where(friendly_order_promotions: {promotion_code_id: id})
        .where.not(id: excluded_orders.map(&:id))
        .count
    end

    def usage_limit
      promotion.per_code_usage_limit
    end

    def promotion_not_apply_automatically
      errors.add(:base, :disallowed_with_apply_automatically) if promotion.apply_automatically
    end

    private

    def normalize_code
      self.value = value.downcase.strip
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
solidus_friendly_promotions-1.0.0.rc.3 app/models/solidus_friendly_promotions/promotion_code.rb
solidus_friendly_promotions-1.0.0.rc.2 app/models/solidus_friendly_promotions/promotion_code.rb
solidus_friendly_promotions-1.0.0.rc.1 app/models/solidus_friendly_promotions/promotion_code.rb
solidus_friendly_promotions-1.0.0.pre app/models/solidus_friendly_promotions/promotion_code.rb