Ejemplo n.º 1
0
        public void GenerarReporte(DateTime desde, DateTime hasta, string[] columnas, string formato, string opcion, Datos tipo)
        {
            StreamWriter write = new StreamWriter(rutaReporte);
            List<string[]> todos = tipo.LeerArchivo();
            string separador = "";
            string encabezados = String.Format(formato, columnas);

            foreach (char letra in encabezados)
                separador += "-";

            write.WriteLine("\t Reporte de {0} desde {1} hasta {2}", opcion, desde.ToShortDateString(), hasta.ToShortDateString());
            write.WriteLine();
            write.WriteLine("Reporte generado: {0} - {1}", DateTime.Now.ToLongDateString(), DateTime.Now.ToLongTimeString());
            write.WriteLine();

            write.WriteLine(separador);
            write.WriteLine(encabezados);
            write.WriteLine(separador);

            foreach (string[] fila in todos)
            {
                DateTime fechaAccion = DateTime.Parse(fila[fila.Length - 1]);
                if (desde == hasta)
                    if (fechaAccion == desde)
                        write.WriteLine(String.Format(formato, fila));
                else
                    if ((fechaAccion > desde && fechaAccion < hasta) || (fechaAccion == desde && fechaAccion < hasta) || (fechaAccion > desde && fechaAccion == hasta))
                        write.WriteLine(String.Format(formato, fila));
            }
            write.WriteLine(separador);

            write.Close();
            Process.Start(rutaReporte);
        }
Ejemplo n.º 2
0
        public void GenerarReporte(string IdEmpleado, string[] columnas, string formato, string opcion, Datos tipo)
        {
            StreamWriter write = new StreamWriter(rutaReporte);
            List<string[]> todos = tipo.LeerArchivo();
            string separador = "";
            string encabezados = String.Format(formato, columnas);

            foreach (char letra in encabezados)
                separador += "-";

            write.WriteLine("\t\t Reporte de {0} por el empleado {1}", opcion, IdEmpleado);
            write.WriteLine();
            write.WriteLine("Reporte generado: {0} - {1}", DateTime.Now.ToLongDateString(), DateTime.Now.ToLongTimeString());
            write.WriteLine();

            write.WriteLine(separador);
            write.WriteLine(encabezados);
            write.WriteLine(separador);

            foreach (string[] fila in todos)
            {
                if (fila[fila.Length - 2] == IdEmpleado)
                    write.WriteLine(String.Format(formato, fila));
            }
            write.WriteLine(separador);

            write.Close();
            Process.Start(rutaReporte);
        }