private void btnSalva_Click(object sender, EventArgs e) { try { Classes.Go acao = new Classes.Go(); Classes.Del limpa = new Classes.Del(); TiposDeProdutos produto = new TiposDeProdutos(); foreach (DataGridViewRow linha in dgvpedido.Rows) { produto.DataPedido = Convert.ToDateTime(txtData.Text); produto.Funcionario = txtFuncionario.Text; produto.Cod = (int)linha.Cells[1].Value; produto.ProdutoSaida = linha.Cells[2].Value.ToString(); produto.Quantidade = (int)linha.Cells[3].Value; produto.CustoS = Convert.ToDecimal(linha.Cells[4].Value); produto.VendaS = Convert.ToDecimal(linha.Cells[6].Value); acao.InserirHistoricoSaida(produto); } this.Close(); limpa.LimparTabelaPedido(); } catch (System.FormatException) { MessageBox.Show("Ops ,Algo esta errado com a sua Data, por favor verifique ! "); } }
private void btnRemover_Click(object sender, EventArgs e) { Classes.Del acao = new Classes.Del(); try { int id = (int)dgvpedido.CurrentRow.Cells[0].Value; acao.ExcluirProdutoDoPedido(id); dgvpedido.Refresh(); CarregarTelaPedido(); CarregarCusto(); } catch (System.NullReferenceException) { btnRemover.Enabled = false; MessageBox.Show("Opa, não temos mais itens para retirar "); } }
private void btnRemover_Click(object sender, EventArgs e) { Classes.Del deletar = new Classes.Del(); }