Sha256: 3e249c1abeff8f78c5f855004659b93ea409d5413c575499a1b4ebf602621e12

Contents?: true

Size: 1.59 KB

Versions: 7

Compression:

Stored size: 1.59 KB

Contents

module Spree
  module Admin
    class PromotionsController < ResourceController
      before_action :load_data, except: :clone

      helper 'spree/admin/promotion_rules'

      def clone
        promotion = current_store.promotions.find(params[:id])
        duplicator = Spree::PromotionHandler::PromotionDuplicator.new(promotion)

        @new_promo = duplicator.duplicate

        if @new_promo.errors.empty?
          flash[:success] = Spree.t('promotion_cloned')
          redirect_to spree.edit_admin_promotion_url(@new_promo)
        else
          flash[:error] = Spree.t('promotion_not_cloned', error: @new_promo.errors.full_messages.to_sentence)
          redirect_to spree.admin_promotions_url(@new_promo)
        end
      end

      protected

      def location_after_save
        spree.edit_admin_promotion_url(@promotion)
      end

      def load_data
        @calculators = Rails.application.config.spree.calculators.promotion_actions_create_adjustments
        @promotion_categories = Spree::PromotionCategory.order(:name)
      end

      def collection
        return @collection if defined?(@collection)

        params[:q] ||= HashWithIndifferentAccess.new
        params[:q][:s] ||= 'id desc'

        @collection = super
        @search = @collection.ransack(params[:q])
        @collection = @search.result(distinct: true).
                      includes(promotion_includes).
                      page(params[:page]).
                      per(params[:per_page] || Spree::Config[:admin_promotions_per_page])
      end

      def promotion_includes
        [:promotion_actions]
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
spree_backend-4.3.3 app/controllers/spree/admin/promotions_controller.rb
spree_backend-4.3.2 app/controllers/spree/admin/promotions_controller.rb
spree_backend-4.3.1 app/controllers/spree/admin/promotions_controller.rb
spree_backend-4.3.0 app/controllers/spree/admin/promotions_controller.rb
spree_backend-4.3.0.rc3 app/controllers/spree/admin/promotions_controller.rb
spree_backend-4.3.0.rc2 app/controllers/spree/admin/promotions_controller.rb
spree_backend-4.3.0.rc1 app/controllers/spree/admin/promotions_controller.rb