private void cargandoReporte() { Reportes.Diseño.reporteCortes repocaja = new Reportes.Diseño.reporteCortes(); string ica= tablas_cajas_cerradas.CurrentRow.Cells[0].Value.ToString(); repocaja.SetDataSource(conexiones_BD.clases.cortes_diarios.datosCaja(ica)); repocaja.SetParameterValue("encabezado", "COPIA DE REPORTE DE CAJA"); repocaja.SetParameterValue("fecha", DateTime.Now.ToString()); repocaja.SetParameterValue("idcaja", "Numero de ID de la caja: " + ica); repocaja.SetParameterValue("total", tablas_cajas_cerradas.CurrentRow.Cells[2].Value.ToString()); repocaja.SetParameterValue("efect_ini", tablas_cajas_cerradas.CurrentRow.Cells[4].Value.ToString()); reportes_cortes.ReportSource=repocaja; }
private void mostrarReporte(string mensaje, string encabezado_reporte) { Reportes.Interfaz.visor_reportes frm = new Reportes.Interfaz.visor_reportes(); frm.Encabezado = mensaje; Reportes.Diseño.reporteCortes repocaja = new Reportes.Diseño.reporteCortes(); repocaja.SetDataSource(datos); repocaja.SetParameterValue("encabezado", encabezado_reporte); repocaja.SetParameterValue("fecha", DateTime.Now.ToString()); repocaja.SetParameterValue("idcaja", "Numero de ID de la caja: " + this.idcaja); repocaja.SetParameterValue("total", total); repocaja.SetParameterValue("efect_ini", efectivoI); frm.reporte.ReportSource = repocaja; frm.ShowDialog(); }