Class: Spree::Admin::ProductsController

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

Instance Method Summary collapse

Methods inherited from ResourceController

belongs_to, #create, #edit, #new, #update_positions

Instance Method Details

#cloneObject



65
66
67
68
69
70
71
72
73
74
75
# File 'app/controllers/spree/admin/products_controller.rb', line 65

def clone
  @new = @product.duplicate

  if @new.save
    flash[:success] = Spree.t('notice_messages.product_cloned')
  else
    flash[:error] = Spree.t('notice_messages.product_not_cloned')
  end

  redirect_to edit_admin_product_url(@new)
end

#destroyObject



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'app/controllers/spree/admin/products_controller.rb', line 45

def destroy
  @product = Product.friendly.find(params[:id])

  begin
    # TODO: why is @product.destroy raising ActiveRecord::RecordNotDestroyed instead of failing with false result
    if @product.destroy
      flash[:success] = Spree.t('notice_messages.product_deleted')
    else
      flash[:error] = Spree.t('notice_messages.product_not_deleted')
    end
  rescue ActiveRecord::RecordNotDestroyed => e
    flash[:error] = Spree.t('notice_messages.product_not_deleted')
  end

  respond_with(@product) do |format|
    format.html { redirect_to collection_url }
    format.js  { render_js_for_destroy }
  end
end

#indexObject



16
17
18
19
# File 'app/controllers/spree/admin/products_controller.rb', line 16

def index
  session[:return_to] = request.url
  respond_with(@collection)
end

#showObject



11
12
13
14
# File 'app/controllers/spree/admin/products_controller.rb', line 11

def show
  session[:return_to] ||= request.referer
  redirect_to action: :edit
end

#stockObject



77
78
79
80
81
82
83
84
85
# File 'app/controllers/spree/admin/products_controller.rb', line 77

def stock
  @variants = @product.variants.includes(*variant_stock_includes)
  @variants = [@product.master] if @variants.empty?
  @stock_locations = StockLocation.accessible_by(current_ability, :read)
  if @stock_locations.empty?
    flash[:error] = Spree.t(:stock_management_requires_a_stock_location)
    redirect_to admin_stock_locations_path
  end
end

#updateObject



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'app/controllers/spree/admin/products_controller.rb', line 21

def update
  if params[:product][:taxon_ids].present?
    params[:product][:taxon_ids] = params[:product][:taxon_ids].split(',')
  end
  if params[:product][:option_type_ids].present?
    params[:product][:option_type_ids] = params[:product][:option_type_ids].split(',')
  end
  invoke_callbacks(:update, :before)
  if @object.update_attributes(permitted_resource_params)
    invoke_callbacks(:update, :after)
    flash[:success] = flash_message_for(@object, :successfully_updated)
    respond_with(@object) do |format|
      format.html { redirect_to location_after_save }
      format.js   { render layout: false }
    end
  else
    # Stops people submitting blank slugs, causing errors when they try to
    # update the product again
    @product.slug = @product.slug_was if @product.slug.blank?
    invoke_callbacks(:update, :fails)
    respond_with(@object)
  end
end