Skip to content

Commit

Permalink
Implementação de Endpoint POST
Browse files Browse the repository at this point in the history
  • Loading branch information
Muriloabreu committed May 1, 2023
1 parent bc66793 commit c461e16
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ public ResponseEntity<Object> saveProduto(@RequestBody @Valid ProdutoDtos produt

var produtoModel = new ProdutosModel();
BeanUtils.copyProperties(produtoDtos, produtoModel);
if(produtoModel.getEstoqueAtual() == null) {

produtoModel.setEstoqueAtual(0);
}

produtoModel.setDataRegistro(LocalDateTime.now(ZoneId.of("UTC")));

return ResponseEntity.status(HttpStatus.OK).body(produtoService.save(produtoModel));
Expand Down

0 comments on commit c461e16

Please sign in to comment.