Ejemplo n.º 1
0
        private void btncancelar_Click(object sender, EventArgs e)
        {
            DialogResult Resultado = MessageBox.Show("Gostaria de Cancelar Venda?", "Aviso", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

            if (Resultado == DialogResult.Yes)
            {
                Clnabrirvenda objAgenda = new Clnabrirvenda();
                objAgenda.CodVenda = Convert.ToInt32(txtcod_venda.Text);
                objAgenda.ExcluirLogicamente();

                Clninserirproduto objAgend = new Clninserirproduto();
                objAgend.CodItem = Convert.ToInt32(dgvitens_venda.Rows[0].Cells[0].Value);
                objAgend.ExcluirLogicamente();
                carregaDataGrid();


                MessageBox.Show("Venda Cancelada com Sucesso", " E X C L U S Ã O ",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
                //txtcod_cliente.Text = "";
                txtcod_funcionario.Text = "";
                txtnome.Text            = "";
                txtcod_venda.Text       = "";
                maskedcpf.Text          = "";
                //dgvitens_venda.Rows.Clear();
            }

            else
            {
                MessageBox.Show("OPERAÇÃO CANCELADA", "CANCELAMENTO E X C L U S Ã O ",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            //this.Close();
        }
Ejemplo n.º 2
0
        private void pictureexcluir_Click(object sender, EventArgs e)
        {
            int msg;

            msg = Convert.ToInt32(MessageBox.Show("DESEJA EXCLUIR O ITEM ? " +
                                                  Convert.ToString(dgvitens_venda.CurrentRow.Cells[1].Value),
                                                  "E X C L U S Ã O", MessageBoxButtons.YesNo, MessageBoxIcon.Information));

            if (msg == 6)
            {
                Clninserirproduto objAgenda = new Clninserirproduto();
                objAgenda.CodItem = Convert.ToInt32(dgvitens_venda.CurrentRow.Cells[0].Value);
                objAgenda.ExcluirLogicamente();

                MessageBox.Show("Item Excluído com Sucesso", " E X C L U S Ã O ",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
            }

            else
            {
                MessageBox.Show("OPERAÇÃO CANCELADA", "CANCELAMENTO E X C L U S Ã O ",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            carregaDataGrid();
            double valorTotal = 0;
            string valor      = "";

            if (dgvitens_venda.Rows[0].Cells[6].Value.ToString() != null)
            {
                valor = dgvitens_venda.Rows[0].Cells[6].Value.ToString();
                if (!valor.Equals(""))
                {
                    for (int i = 0; i <= dgvitens_venda.RowCount - 1; i++)
                    {
                        if (dgvitens_venda.Rows[i].Cells[6].Value != null)
                        {
                            valorTotal += Convert.ToDouble(dgvitens_venda.Rows[i].Cells[6].Value);
                        }
                    }
                    if (valorTotal == 0)
                    {
                        MessageBox.Show("Nenhum registro encontrado");
                    }
                    lbltotale.Text = valorTotal.ToString();
                }
            }
        }