Sha256: 5185b9156338989abb679e8df88c19793960c3e0d10f8ab8a54f269a1328ac3d

Contents?: true

Size: 1.32 KB

Versions: 9

Compression:

Stored size: 1.32 KB

Contents

module Shoppe
  class VariantsController < ApplicationController
    
    before_filter { @active_nav = :products }
    before_filter { @product = Shoppe::Product.find(params[:product_id]) }
    before_filter { params[:id] && @variant = @product.variants.find(params[:id]) }
    
    def index
      @variants = @product.variants.ordered
    end
    
    def new
      @variant = @product.variants.build
      render :action => "form"
    end
    
    def create
      @variant = @product.variants.build(safe_params)
      if @variant.save
        redirect_to [@product, :variants], :notice => "Varient has been added successfully"
      else
        render :action => "form"
      end
    end
    
    def edit
      render :action => "form"
    end
    
    def update
      if @variant.update(safe_params)
        redirect_to edit_product_variant_path(@product, @variant), :notice => "Varient has been updated successfully"
      else
        render :action => "form"
      end
    end
    
    def destroy
      @variant.destroy
      redirect_to [@product, :variants], :notice => "Varient has been removed successfully"
    end
    
    private
    
    def safe_params
      params[:product].permit(:name, :permalink, :sku, :default_image_file, :price, :cost_price, :tax_rate_id, :weight, :stock_control, :active, :default)
    end
    
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
shoppe-1.0.2 app/controllers/shoppe/variants_controller.rb
shoppe-1.0.1 app/controllers/shoppe/variants_controller.rb
shoppe-1.0.0 app/controllers/shoppe/variants_controller.rb
shoppe-0.0.21 app/controllers/shoppe/variants_controller.rb
shoppe-0.0.20 app/controllers/shoppe/variants_controller.rb
shoppe-0.0.19 app/controllers/shoppe/variants_controller.rb
shoppe-0.0.18 app/controllers/shoppe/variants_controller.rb
shoppe-0.0.17 app/controllers/shoppe/variants_controller.rb
shoppe-0.0.16 app/controllers/shoppe/variants_controller.rb