2014-11-24 21:45:32 +01:00
|
|
|
class ProductsController < ApplicationController
|
|
|
|
def new
|
|
|
|
@product = Product.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2014-11-25 13:41:22 +01:00
|
|
|
@product = Product.new(product_params)
|
2014-11-24 21:45:32 +01:00
|
|
|
if @product.save
|
|
|
|
redirect_to @product
|
|
|
|
else
|
|
|
|
render "new"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
@product = Product.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2014-11-25 13:09:55 +01:00
|
|
|
def index
|
|
|
|
@products = Product.all
|
|
|
|
end
|
|
|
|
|
2014-11-24 21:45:32 +01:00
|
|
|
def edit
|
2014-11-25 13:09:55 +01:00
|
|
|
@product = Product.find(params[:id])
|
2014-11-24 21:45:32 +01:00
|
|
|
end
|
|
|
|
|
2014-11-25 13:41:22 +01:00
|
|
|
def update
|
|
|
|
@product = Product.find(params[:id])
|
|
|
|
if @product.update_attributes(product_params)
|
|
|
|
redirect_to @product
|
|
|
|
else
|
|
|
|
render 'edit'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-11-26 11:58:51 +01:00
|
|
|
def destroy
|
|
|
|
Product.find(params[:id]).destroy
|
|
|
|
redirect_to products_path
|
2014-11-24 21:45:32 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2014-11-25 13:41:22 +01:00
|
|
|
def product_params
|
2014-11-24 21:45:32 +01:00
|
|
|
params.require(:product).permit(:name, :purchase_price, :sale_price,
|
|
|
|
:img_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|