Created
August 20, 2015 02:57
-
-
Save phensalves/00f2fd79b77e61045a01 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Produto < ActiveRecord::Base | |
# id, nome, quantidade_em_estoque | |
validates :id, :nome, :quantidade_em_estoque | |
end | |
##### | |
class EstoqueController < ApplicationController | |
# current_user_id | |
# params - produto_id, quantidade_retirada | |
def update | |
find_produto | |
unless quantidade_retirada < quantidade_em_estoque | |
raise :excede_estoque, "Você está tentando retirar mais do que possui" | |
end | |
quantidade_em_estoque = quantidade_em_estoque - quantidade_retidada | |
end | |
private | |
def find_produto | |
@produto = Produto.where(id: produto[:id]).first | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment