Class: Spree::Admin::PromotionCodeBatchesController

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

Instance Method Summary collapse

Methods inherited from ResourceController

belongs_to, #create, #destroy, #edit, #new, #update, #update_positions

Instance Method Details

#downloadObject



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

def download
  require "csv"

  @promotion_code_batch = Spree::PromotionCodeBatch.find(
    params[:promotion_code_batch_id]
  )

  send_data(
    render_to_string,
    filename: "promotion-code-batch-list-#{@promotion_code_batch.id}.csv"
  )
end