Sha256: 1c17066496589eecaf0410a1cc51f53842d90049ebbbbad89389677c47aca3a2

Contents?: true

Size: 732 Bytes

Versions: 6

Compression:

Stored size: 732 Bytes

Contents

# frozen_string_literal: true

module Spree
  class PromotionCodeBatch < ActiveRecord::Base
    class CantProcessStartedBatch < StandardError
    end

    belongs_to :promotion, class_name: "Spree::Promotion", optional: true
    has_many :promotion_codes, class_name: "Spree::PromotionCode", dependent: :destroy

    validates :number_of_codes, numericality: { greater_than: 0 }
    validates_presence_of :base_code, :number_of_codes

    def finished?
      state == "completed"
    end

    def process
      if state == "pending"
        update!(state: "processing")
        PromotionCodeBatchJob.perform_later(self)
      else
        raise CantProcessStartedBatch.new("Batch #{id} already started")
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
solidus_core-2.10.5 app/models/spree/promotion_code_batch.rb
solidus_core-2.10.3 app/models/spree/promotion_code_batch.rb
solidus_core-2.10.2 app/models/spree/promotion_code_batch.rb
solidus_core-2.10.1 app/models/spree/promotion_code_batch.rb
solidus_core-2.10.0 app/models/spree/promotion_code_batch.rb
solidus_core-2.10.0.beta1 app/models/spree/promotion_code_batch.rb