public void BaixarEstoque(int produtoId, int quantidade) { var produto = _context.ProdutoModel.Find(produtoId); produto.Estoque = produto.Estoque - quantidade; _context.Update(produto); }
public async Task <IActionResult> Edit(int id, [Bind("ClienteId,Nome,Email")] ClienteModel clienteModel) { if (id != clienteModel.ClienteId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(clienteModel); FormataTexto.FormataMaiusculo(clienteModel.Nome); FormataTexto.FormataMinusculo(clienteModel.Email); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ClienteModelExists(clienteModel.ClienteId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(clienteModel)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Descricao,Unidade,Custo,Preco,CodigoDeBarras,Estoque")] ProdutoModel produtoModel) { if (id != produtoModel.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(produtoModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProdutoModelExists(produtoModel.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(produtoModel)); }
public async Task <IActionResult> Edit(int id, [Bind("VendaItensId,VendaId,ProdutoId,Quantidade,ValorDeVenda")] VendaItensModel vendaItensModel) { if (id != vendaItensModel.VendaItensId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(vendaItensModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VendaItensModelExists(vendaItensModel.VendaItensId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["ProdutoId"] = new SelectList(_context.ProdutoModel, "Id", "Id", vendaItensModel.ProdutoId); ViewData["VendaId"] = new SelectList(_context.VendaModel, "VendaId", "VendaId", vendaItensModel.VendaId); return(View(vendaItensModel)); }
public async Task <IActionResult> Edit(int id, [Bind("VendaId,DataDaVenda,ClienteId,DataPrevistaDaEntrega,CodigoDoRastreamento")] VendaModel vendaModel) { if (id != vendaModel.VendaId) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(vendaModel); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VendaModelExists(vendaModel.VendaId)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["ClienteId"] = new SelectList(_context.ClienteModel, "ClienteId", "ClienteId", vendaModel.ClienteId); return(View(vendaModel)); }