protected void btnBuscar_Click(object sender, EventArgs e)
        {
            if (txtData.Text == string.Empty)
            {
                Msg("Selecione a data!");
                return;
            }
            else
            {

                mRelatorio M = new mRelatorio();
                DataM = Convert.ToDateTime(txtData.Text);
                List<pManuAr> LC = M.RelatorioFinanceiroManu(DataM);
                gdvManu.DataSource = LC;
                gdvManu.DataBind();
                DataV = Convert.ToDateTime(txtData.Text);
                List<pPedido> LP = M.RelatorioFinanceiroVenda(DataV);
                gdvVenda.DataSource = LP;
                gdvVenda.DataBind();
                GerarPdf.Visible = true;
                btnexportar.Visible = true;
                if (LC.Count == 0 && LP.Count == 0)
                {
                    Msg("Não existe dados para o dia - " + txtData.Text);
                    GerarPdf.Visible = false;
                    btnexportar.Visible = false;
                    return;
                }
                else
                {
                    for (int i = 0; i < LC.Count; i++)
                    {
                        if (LC[i].FormaPagamento == "Dinheiro")
                        {
                            Dinheiro = Dinheiro + LC[i].ValorMObra;
                        }
                        else if (LC[i].FormaPagamento == "Cartao de Credito")
                        {
                            Credito = Credito + LC[i].ValorMObra;
                        }
                        else if (LC[i].FormaPagamento == "Cartao de Credito")
                        {
                            Debito = Debito + LC[i].ValorMObra;
                        }

                    }
                    for (int i = 0; i < LP.Count; i++)
                    {
                        if (LP[i].FormaPagamento == "Dinheiro")
                        {
                            Dinheiro = Dinheiro + LP[i].ValorTotal;
                        }
                        else if (LP[i].FormaPagamento == "Cartao de Credito")
                        {
                            Credito = Credito + LP[i].ValorTotal;
                        }
                        else if (LP[i].FormaPagamento == "Cartao de Debito")
                        {
                            Debito = Debito + LP[i].ValorTotal;
                        }

                    }
                    lblRela.Text = "Relatório do dia - " + DataM.ToString("dd/MM/yyyy");
                    lblDinheiro.Text = Dinheiro.ToString("C");
                    lblDebito.Text = Debito.ToString("C");
                    lblCredito.Text = Credito.ToString("C");
                    lblTotal.Text = (Dinheiro + Debito + Credito).ToString("C");
                }
            }
        }
 protected void btnBuscar_Click(object sender, EventArgs e)
 {
     if (txtData.Text == string.Empty)
     {
         Msg("Selecione a data!");
         return;
     }
     else
     {
         mRelatorio M = new mRelatorio();
         DataM = Convert.ToDateTime(txtData.Text);
         List <pManuAr> LC = M.RelatorioFinanceiroManu(DataM);
         gdvManu.DataSource = LC;
         gdvManu.DataBind();
         DataV = Convert.ToDateTime(txtData.Text);
         List <pPedido> LP = M.RelatorioFinanceiroVenda(DataV);
         gdvVenda.DataSource = LP;
         gdvVenda.DataBind();
         GerarPdf.Visible    = true;
         btnexportar.Visible = true;
         if (LC.Count == 0 && LP.Count == 0)
         {
             Msg("Não existe dados para o dia - " + txtData.Text);
             GerarPdf.Visible    = false;
             btnexportar.Visible = false;
             return;
         }
         else
         {
             for (int i = 0; i < LC.Count; i++)
             {
                 if (LC[i].FormaPagamento == "Dinheiro")
                 {
                     Dinheiro = Dinheiro + LC[i].ValorMObra;
                 }
                 else if (LC[i].FormaPagamento == "Cartao de Credito")
                 {
                     Credito = Credito + LC[i].ValorMObra;
                 }
                 else if (LC[i].FormaPagamento == "Cartao de Credito")
                 {
                     Debito = Debito + LC[i].ValorMObra;
                 }
             }
             for (int i = 0; i < LP.Count; i++)
             {
                 if (LP[i].FormaPagamento == "Dinheiro")
                 {
                     Dinheiro = Dinheiro + LP[i].ValorTotal;
                 }
                 else if (LP[i].FormaPagamento == "Cartao de Credito")
                 {
                     Credito = Credito + LP[i].ValorTotal;
                 }
                 else if (LP[i].FormaPagamento == "Cartao de Debito")
                 {
                     Debito = Debito + LP[i].ValorTotal;
                 }
             }
             lblRela.Text     = "Relatório do dia - " + DataM.ToString("dd/MM/yyyy");
             lblDinheiro.Text = Dinheiro.ToString("C");
             lblDebito.Text   = Debito.ToString("C");
             lblCredito.Text  = Credito.ToString("C");
             lblTotal.Text    = (Dinheiro + Debito + Credito).ToString("C");
         }
     }
 }