Ejemplo n.º 1
0
        private void rbTodas_CheckedChanged(object sender, EventArgs e)
        {
            //ocultar paineis
            pCliente.Visible = false;
            pData.Visible    = false;

            //limpar os grids
            dgvDados.DataSource    = null;
            dgvItens.DataSource    = null;
            dgvParcelas.DataSource = null;

            if (rbTodas.Checked == true)
            {
                DAOConexao cx       = new DAOConexao(DAOBanco.StringDeConexao);
                BLLVenda   bllVenda = new BLLVenda(cx);
                dgvDados.DataSource = bllVenda.LocalizarTodas();
                this.AtualizaCabecalhoDGVenda();
            }

            if (rbCliente.Checked == true)
            {
                pCliente.Visible = true;
            }

            if (rbData.Checked == true)
            {
                pData.Visible = true;
            }
            if (rbParcelas.Checked == true)
            {
                DAOConexao cx       = new DAOConexao(DAOBanco.StringDeConexao);
                BLLVenda   bllVenda = new BLLVenda(cx);
                dgvDados.DataSource = bllVenda.LocalizarParcelasAberto();
                this.AtualizaCabecalhoDGVenda();
            }
        }