Class: Spree::Admin::PromotionCodesController

Inherits:
ResourceController show all
Defined in:
app/controllers/spree/admin/promotion_codes_controller.rb

Instance Method Summary collapse

Methods inherited from ResourceController

belongs_to, #destroy, #edit, #update, #update_positions

Instance Method Details

#createObject



29
30
31
32
33
34
35
36
37
38
39
40
# File 'app/controllers/spree/admin/promotion_codes_controller.rb', line 29

def create
  @promotion = Spree::Promotion.accessible_by(current_ability, :read).find(params[:promotion_id])
  @promotion_code = @promotion.promotion_codes.build(value: params[:promotion_code][:value])

  if @promotion_code.save
    flash[:success] = flash_message_for(@promotion_code, :successfully_created)
    redirect_to admin_promotion_promotion_codes_url(@promotion)
  else
    flash.now[:error] = @promotion_code.errors.full_messages.to_sentence
    render_after_create_error
  end
end

#indexObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'app/controllers/spree/admin/promotion_codes_controller.rb', line 8

def index
  @promotion = Spree::Promotion.accessible_by(current_ability, :read).find(params[:promotion_id])
  @promotion_codes = @promotion.promotion_codes.order(:value)

  respond_to do |format|
    format.html do
      @promotion_codes = @promotion_codes.page(params[:page]).per(50)
    end
    format.csv do
      filename = "promotion-code-list-#{@promotion.id}.csv"
      headers["Content-Type"] = "text/csv"
      headers["Content-disposition"] = "attachment; filename=\"#{filename}\""
    end
  end
end

#newObject



24
25
26
27
# File 'app/controllers/spree/admin/promotion_codes_controller.rb', line 24

def new
  @promotion = Spree::Promotion.accessible_by(current_ability, :read).find(params[:promotion_id])
  @promotion_code = @promotion.promotion_codes.build
end