Sha256: 6d1d54e37dbe8c0fa0addb0fdf399531747c3eef5090e587ea97cdf6453de751

Contents?: true

Size: 1.29 KB

Versions: 9

Compression:

Stored size: 1.29 KB

Contents

module KktShoppe
  class VariantsController < ApplicationController

    before_filter { @active_nav = :products }
    before_filter { @product = KktShoppe::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 =>  t('kkt_shoppe.variants.create_notice')
      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 => t('kkt_shoppe.variants.update_notice')
      else
        render :action => "form"
      end
    end

    def destroy
      @variant.destroy
      redirect_to [@product, :variants], :notice =>  t('kkt_shoppe.variants.destroy_notice')
    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
kkt_shoppe-2.0.2 app/controllers/kkt_shoppe/variants_controller.rb
kkt_shoppe-2.0.1 app/controllers/kkt_shoppe/variants_controller.rb
kkt_shoppe-2.0.0 app/controllers/kkt_shoppe/variants_controller.rb
kkt_shoppe-1.3.0 app/controllers/kkt_shoppe/variants_controller.rb
kkt_shoppe-1.2.1 app/controllers/kkt_shoppe/variants_controller.rb
kkt_shoppe-1.2.0 app/controllers/kkt_shoppe/variants_controller.rb
kkt_shoppe-1.1.2 app/controllers/kkt_shoppe/variants_controller.rb
kkt_shoppe-1.1.1 app/controllers/kkt_shoppe/variants_controller.rb
kkt_shoppe-1.1.0 app/controllers/kkt_shoppe/variants_controller.rb