public void LlenaReport()
 {
     ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), "Popup", $"ShowReporte('');", true);
     EntradaReportViewer.ProcessingMode = ProcessingMode.Local;
     EntradaReportViewer.Reset();
     EntradaReportViewer.LocalReport.ReportPath = Server.MapPath(@"\Reportes\ReportesEntradaD.rdlc");
     EntradaReportViewer.LocalReport.DataSources.Clear();
     EntradaReportViewer.LocalReport.DataSources.Add(new ReportDataSource("EntradaD", Metodo.INVEntradaDetalle()));
     EntradaReportViewer.LocalReport.Refresh();
 }