Skip to content

Commit

Permalink
Modificando o controlador de produto
Browse files Browse the repository at this point in the history
  • Loading branch information
jose.araujo committed Jul 23, 2019
1 parent 1d5d2ca commit 5dde0d7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ public ModelAndView salvarProduto(@ModelAttribute("produto") Produto produto) {
LOG.debug("Persistência do produto na base.");

if(produto.getEstoque() == null) {
Estoque estoque = new Estoque();
estoque.setLote(UUID.randomUUID().toString());
estoque.setQuantidade(0);
Estoque e = new Estoque();
e.setLote(UUID.randomUUID().toString());
e.setQuantidade(0);

produto.setEstoque(estoque);
produto.setEstoque(e);
}

produtoService.salvarProduto(produto);
Expand Down

0 comments on commit 5dde0d7

Please sign in to comment.