Esempio n. 1
0
        /// <summary>
        /// Obtiene una lista paginada de SupervisorEnfermeria
        /// </summary>
        /// <param name="pagina"></param>
        /// <param name="filtro"></param>
        /// <returns></returns>
        public ResultadoInfo <SupervisorEnfermeriaInfo> ObtenerPorPagina(PaginacionInfo pagina, SupervisorEnfermeriaInfo filtro)
        {
            try
            {
                Logger.Info();
                ResultadoInfo <SupervisorEnfermeriaInfo> lista = supervisorEnfermeriaDAL.ObtenerPorPagina(pagina, filtro);

                var listaOperador = new OperadorBL().ObtenerTodos();

                foreach (var registro in lista.Lista)
                {
                    registro.Enfermeria = new EnfermeriaBL().ObtenerPorID(registro.EnfermeriaID);
                    registro.Operador   = listaOperador.FirstOrDefault(e => e.OperadorID == registro.OperadorID);
                }
                return(lista);
            }
            catch (ExcepcionGenerica)
            {
                throw;
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
        }
Esempio n. 2
0
        private void GenerarMovimientosAnimalesVendidosIntensivo(List <AnimalInfo> animalesMuertos, SalidaIndividualInfo salidaIndividualInfo)
        {
            var animalMovimientoBL   = new AnimalMovimientoBL();
            var operadorBL           = new OperadorBL();
            var animalBL             = new AnimalBL();
            var listaAnimalesMuertos = new List <AnimalInfo>();
            int pesoPromedio         = (int)(salidaIndividualInfo.PesoBruto - salidaIndividualInfo.Peso) /
                                       salidaIndividualInfo.NumeroDeCabezas;

            foreach (var animalMuerto in animalesMuertos)
            {
                var animalInfo = animalBL.ObtenerAnimalAnimalID(animalMuerto.AnimalID);
                AnimalMovimientoInfo        ultimoMovimientoAnimal = null;
                List <AnimalMovimientoInfo> ultimosMovimiento      = animalMovimientoBL.ObtenerUltimoMovimientoAnimal(new List <AnimalInfo> {
                    animalInfo
                });
                if (ultimosMovimiento != null && ultimosMovimiento.Any())
                {
                    ultimoMovimientoAnimal =
                        ultimosMovimiento.OrderByDescending(ani => ani.AnimalMovimientoID).FirstOrDefault();
                }
                /* Insertamos el movimiento de Muerte */

                /* Se genera el animal Movimiento para almacenarlo*/
                if (ultimoMovimientoAnimal != null)
                {
                    OperadorInfo operador = operadorBL.ObtenerPorUsuarioId(salidaIndividualInfo.Usuario, salidaIndividualInfo.Organizacion);

                    var animalMovimientoInfo = new AnimalMovimientoInfo
                    {
                        AnimalID          = animalInfo.AnimalID,
                        OrganizacionID    = ultimoMovimientoAnimal.OrganizacionID,
                        CorralID          = ultimoMovimientoAnimal.CorralID,
                        LoteID            = ultimoMovimientoAnimal.LoteID,
                        Peso              = pesoPromedio,
                        Temperatura       = 0,
                        TipoMovimientoID  = (int)TipoMovimiento.SalidaPorVenta,
                        TrampaID          = ultimoMovimientoAnimal.TrampaID,
                        OperadorID        = operador != null ? operador.OperadorID : 0,
                        Observaciones     = string.Empty,
                        Activo            = EstatusEnum.Activo,
                        UsuarioCreacionID = salidaIndividualInfo.Usuario
                    };
                    /* Se almacena el animalMovimiento */
                    animalMovimientoBL.GuardarAnimalMovimiento(animalMovimientoInfo);
                    animalInfo.UsuarioModificacionID = salidaIndividualInfo.Usuario;
                    /*  Se da de baja el animal */
                    animalBL.InactivarAnimal(animalInfo);

                    /* Enviar al historico el animal inactivo */
                    listaAnimalesMuertos.Add(animalInfo);
                }
            }
            if (listaAnimalesMuertos.Any())
            {
                animalBL.EnviarAHistorico(listaAnimalesMuertos);
            }
        }
Esempio n. 3
0
        internal void ImprimirEvaluacionPartida(EvaluacionCorralInfo evaluacionCorralInfoSelecionado, bool webForm)
        {
            var reporte      = new Document(PageSize.A4, 10, 10, 35, 75);
            var preguntaPl   = new PreguntaBL();
            var evaluacionBL = new EvaluacionCorralBL();

            try
            {
                string nombreArchivo = "EvaluacionPartida.pdf";

                nombreArchivo = String.Format("{0}{1}", AppDomain.CurrentDomain.BaseDirectory, nombreArchivo);

                if (File.Exists(nombreArchivo))
                {
                    try
                    {
                        File.Delete(nombreArchivo);
                    }
                    catch (Exception ex)
                    {
                        Logger.Error(ex);
                        throw new ExcepcionDesconocida(ResourceServices.ConfigurarFormula_ArchivoEnUso);
                    }
                }

                PdfWriter.GetInstance(reporte, new FileStream(nombreArchivo, FileMode.OpenOrCreate));
                reporte.Open();
                var dirLogo = "";

                if (webForm)
                {
                    dirLogo = AppDomain.CurrentDomain.BaseDirectory + "Images\\skLogo.png";
                }
                else
                {
                    dirLogo = AppDomain.CurrentDomain.BaseDirectory + "Imagenes\\skLogo.png";
                }

                var fuenteDatos = new Font {
                    Size = 8, Color = Color.BLACK
                };

                var imgSuperior = Image.GetInstance(dirLogo);
                imgSuperior.ScaleAbsolute(90f, 25f);

                //float[] medidaCeldas = { 0.75f, 1.20f, 0.75f, 0.75f, 0.75f, 1.20f, 1.0f, 2.25f, 0.85f, 0.85f, 0.85f };
                var table = new PdfPTable(3);
                //table.SetWidths(medidaCeldas);
                //

                //////TITULO
                var cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_CodigoISO, fuenteDatos))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border = 0
                };
                table.AddCell(cell);
                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_RevisionISO, fuenteDatos))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border = 0
                };
                table.AddCell(cell);
                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_FechaISO, fuenteDatos))
                {
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    Border = 0
                };
                table.AddCell(cell);
                //Estapacio en blanco
                cell = new PdfPCell(new Phrase(" ", fuenteDatos))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = 0,
                    Colspan = 3
                };
                table.AddCell(cell);

                cell = new PdfPCell(imgSuperior)
                {
                    Padding = 2, Border = 0
                };
                cell.HorizontalAlignment = Element.ALIGN_LEFT;
                cell.Border          = Rectangle.BOTTOM_BORDER | Rectangle.TOP_BORDER | Rectangle.LEFT_BORDER;
                cell.BorderWidth     = 1.2f;
                cell.BackgroundColor = Color.RED;// new Color(0xC0, 0xC0, 0xC0);
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_TituloImpresion, FontFactory.GetFont(FontFactory.HELVETICA, 14, Font.BOLD)));
                // the first cell spans 10 columns
                cell.HorizontalAlignment = Element.ALIGN_LEFT;
                cell.Colspan             = 10;
                cell.Border          = Rectangle.RIGHT_BORDER | Rectangle.TOP_BORDER | Rectangle.BOTTOM_BORDER;
                cell.BorderWidth     = 1.2f;
                cell.BackgroundColor = Color.RED;// new Color(0xC0, 0xC0, 0xC0);
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase("", fuenteDatos))
                {
                    Border = 0
                };
                table.AddCell(cell);
                reporte.Add(table);


                //////////////Datos generales
                table = new PdfPTable(8);
                //BaseFont bfTimes = BaseFont.CreateFont(BaseFont.TIMES_ROMAN, BaseFont.CP1252, false);
                //Font fuenteDatosCursiva = new Font(bfTimes, 9, Font.ITALIC, Color.RED);

                var fuenteDatosCursiva = new Font {
                    Size = 9, Color = Color.BLACK,
                };

                cell = new PdfPCell(new Phrase(" ", fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = Rectangle.RIGHT_BORDER | Rectangle.LEFT_BORDER,
                    Colspan = 8
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_Corral, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border = Rectangle.LEFT_BORDER
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.Corral.Codigo.Trim(), fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    Border = 0
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_SubTituloImpresion, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = Rectangle.RIGHT_BORDER,
                    Colspan = 6
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_Cbz, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border = Rectangle.LEFT_BORDER,
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.Cabezas.ToString(), fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    Border = 0
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(" ", fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = Rectangle.RIGHT_BORDER,
                    Colspan = 6
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_NumPartida, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border  = Rectangle.LEFT_BORDER,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.PartidasAgrupadas, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border = Rectangle.BOTTOM_BORDER,
                    //BorderWidth = 1.0f,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_FechaLlegada, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    Border  = 0,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.FechaRecepcion.ToShortDateString(), fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border = Rectangle.BOTTOM_BORDER | Rectangle.RIGHT_BORDER,
                    //BorderWidth = 1.2f,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_ProcedenciaAnimales, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    VerticalAlignment   = Element.ALIGN_BOTTOM,
                    Border  = Rectangle.LEFT_BORDER,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.OrganizacionOrigenAgrupadas, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border = Rectangle.BOTTOM_BORDER,
                    //BorderWidth = 1.2f,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_FechaEvaluacion, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    VerticalAlignment   = Element.ALIGN_BOTTOM,
                    Border  = 0,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.FechaEvaluacion.ToShortDateString(), fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    VerticalAlignment   = Element.ALIGN_BOTTOM,
                    Border = Rectangle.BOTTOM_BORDER | Rectangle.RIGHT_BORDER,
                    //BorderWidth = 1.2f,
                    Colspan = 2
                };
                table.AddCell(cell);


                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_InventarioInicial, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    VerticalAlignment   = Element.ALIGN_BOTTOM,
                    Border  = Rectangle.LEFT_BORDER,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.Cabezas.ToString(), fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    VerticalAlignment   = Element.ALIGN_BOTTOM,
                    Border  = 0,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_Evaluador, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    VerticalAlignment   = Element.ALIGN_BOTTOM,
                    Border  = Rectangle.NO_BORDER,
                    Colspan = 2
                };
                table.AddCell(cell);

                var operadorBL = new OperadorBL();
                evaluacionCorralInfoSelecionado.Operador = operadorBL.ObtenerPorID(evaluacionCorralInfoSelecionado.Operador.OperadorID);
                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.Operador.NombreCompleto, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border = Rectangle.BOTTOM_BORDER | Rectangle.RIGHT_BORDER,
                    //BorderWidth = 1.2f,
                    Colspan = 2
                };
                table.AddCell(cell);

                ResultadoInfo <PreguntaInfo> resultadoPreguntasEnfermeria =
                    preguntaPl.ObtenerPorFormularioID((int)TipoPreguntas.DatosEnfermeria);
                var animalesGrado3 = 0;
                foreach (string respuesta in
                         from pregunta in resultadoPreguntasEnfermeria.Lista
                         where pregunta.Descripcion.Contains("Grado 3")
                         select evaluacionBL.ObtenerRespuestaAPreguntaEvaluacion(
                             pregunta.PreguntaID,
                             evaluacionCorralInfoSelecionado.EvaluacionID
                             )
                         )
                {
                    animalesGrado3 = int.Parse(respuesta);
                }

                //Se calcula el inventario final (Inventario Inicial - Grado 3)
                var inventarioFinal = evaluacionCorralInfoSelecionado.Cabezas;

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_InventarioFinal, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border  = Rectangle.LEFT_BORDER,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase((inventarioFinal - animalesGrado3).ToString(), fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = 0,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_HoraEvaluacion, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    Border  = 0,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.HoraEvaluacion, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border = Rectangle.BOTTOM_BORDER | Rectangle.RIGHT_BORDER,
                    //BorderWidth = 1.2f,
                    Colspan = 2
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(" ", fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER,
                    Colspan = 8
                };
                table.AddCell(cell);

                /////////////////Preguntas seccion 1

                ResultadoInfo <PreguntaInfo> resultadoPreguntas = preguntaPl.ObtenerPorFormularioID((int)TipoPreguntas.EvaluacionRiesgo);
                var total = 0;
                if (resultadoPreguntas != null && resultadoPreguntas.Lista != null && resultadoPreguntas.Lista.Count > 0)
                {
                    foreach (var pregunta in resultadoPreguntas.Lista)
                    {
                        string respuesta = evaluacionBL.ObtenerRespuestaAPreguntaEvaluacion(
                            pregunta.PreguntaID,
                            evaluacionCorralInfoSelecionado.EvaluacionID
                            );
                        string[] preguntasValor = pregunta.Descripcion.Split('.');
                        cell = new PdfPCell(new Phrase(preguntasValor[0], fuenteDatosCursiva))
                        {
                            HorizontalAlignment = Element.ALIGN_LEFT,
                            Border  = Rectangle.LEFT_BORDER,
                            Colspan = 6
                        };
                        table.AddCell(cell);

                        cell = new PdfPCell(new Phrase(respuesta, fuenteDatosCursiva))
                        {
                            HorizontalAlignment = Element.ALIGN_RIGHT,
                            Border = Rectangle.RECTANGLE | Rectangle.TOP_BORDER,
                            //BorderWidth = 1.2f,
                            Colspan = 2
                        };
                        table.AddCell(cell);

                        cell = new PdfPCell(new Phrase(preguntasValor[1], fuenteDatosCursiva))
                        {
                            HorizontalAlignment = Element.ALIGN_LEFT,
                            Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER,
                            Colspan = 8
                        };
                        table.AddCell(cell);

                        if (respuesta == "1")
                        {
                            preguntasValor[1] = Regex.Replace(preguntasValor[1], "[^0-9]+", "");
                            total            += int.Parse(preguntasValor[1]);
                        }
                    }
                }
                /////////////Total

                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_Total, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    Border  = Rectangle.LEFT_BORDER,
                    Colspan = 6
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(total.ToString(), fuenteDatosCursiva))
                {
                    BackgroundColor     = new Color(169, 245, 242),
                    HorizontalAlignment = Element.ALIGN_RIGHT,
                    Border = Rectangle.RECTANGLE | Rectangle.TOP_BORDER,
                    //BorderWidth = 1.2f,
                    Colspan = 2
                };
                table.AddCell(cell);


                /////////////////Preguntas Nota
                cell = new PdfPCell(new Phrase(" ", fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER,
                    Colspan = 8
                };
                table.AddCell(cell);
                cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_Nota, fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER,
                    Colspan = 8
                };
                table.AddCell(cell);



                /////////////////Preguntas seccion Enfermeria
                cell = new PdfPCell(new Phrase(" ", fuenteDatosCursiva))
                {
                    HorizontalAlignment = Element.ALIGN_LEFT,
                    Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER,
                    Colspan = 8
                };
                table.AddCell(cell);

                var fuenteDatosEnfermeria = new Font {
                    Size = 8, Color = Color.BLACK
                };
                string[] textosPartidasGarrapatas = new[] { "PARTIDA CON GARRAPATA", "LEVE ≤ 5 cbz", "MODERADO > 5 cbz", "GRAVE ≥ 15 cbz" };

                if (resultadoPreguntasEnfermeria != null && resultadoPreguntasEnfermeria.Lista != null && resultadoPreguntasEnfermeria.Lista.Count > 0)
                {
                    var indice = 0;
                    foreach (var pregunta in resultadoPreguntasEnfermeria.Lista)
                    {
                        string respuesta = evaluacionBL.ObtenerRespuestaAPreguntaEvaluacion(
                            pregunta.PreguntaID,
                            evaluacionCorralInfoSelecionado.EvaluacionID
                            );
                        cell = new PdfPCell(new Phrase(pregunta.Descripcion, fuenteDatosEnfermeria))
                        {
                            HorizontalAlignment = Element.ALIGN_LEFT,
                            Border  = Rectangle.LEFT_BORDER,
                            Colspan = 3
                        };
                        table.AddCell(cell);

                        cell = new PdfPCell(new Phrase(respuesta, fuenteDatosEnfermeria))
                        {
                            HorizontalAlignment = Element.ALIGN_RIGHT,
                            VerticalAlignment   = Element.ALIGN_BOTTOM,
                            Border = Rectangle.BOTTOM_BORDER,
                            //BorderWidth = 1.2f,
                            Colspan = 1
                        };
                        table.AddCell(cell);

                        if (indice < 4)
                        {
                            if (indice == 0)
                            {
                                var texto = String.Format("{0}", textosPartidasGarrapatas[indice]);
                                cell = new PdfPCell(new Phrase(texto, fuenteDatosEnfermeria))
                                {
                                    HorizontalAlignment = Element.ALIGN_CENTER,
                                    Border  = Rectangle.NO_BORDER,
                                    Colspan = 3
                                };
                                table.AddCell(cell);
                            }
                            else
                            {
                                var texto = "";
                                texto = String.Format("{0}    {1}", textosPartidasGarrapatas[indice],
                                                      textosPartidasGarrapatas[indice].Contains(
                                                          evaluacionCorralInfoSelecionado.NivelGarrapata.ToString().ToUpper()) ? "(X)" : "(   )");

                                cell = new PdfPCell(new Phrase(texto, fuenteDatosEnfermeria))
                                {
                                    HorizontalAlignment = Element.ALIGN_RIGHT,
                                    Border  = Rectangle.NO_BORDER,
                                    Colspan = 2
                                };
                                table.AddCell(cell);

                                cell = new PdfPCell(new Phrase("", fuenteDatosEnfermeria))
                                {
                                    HorizontalAlignment = Element.ALIGN_CENTER,
                                    Border = Rectangle.NO_BORDER
                                };
                                table.AddCell(cell);
                            }

                            cell = new PdfPCell(new Phrase("", fuenteDatosEnfermeria))
                            {
                                HorizontalAlignment = Element.ALIGN_CENTER,
                                Border = Rectangle.RIGHT_BORDER
                            };
                            table.AddCell(cell);
                        }
                        else
                        {
                            cell = new PdfPCell(new Phrase(" ", fuenteDatosEnfermeria))
                            {
                                HorizontalAlignment = Element.ALIGN_CENTER,
                                Border  = Rectangle.RIGHT_BORDER,
                                Colspan = 4
                            };
                            table.AddCell(cell);
                        }

                        indice++;
                    }
                }

                ///////////Partida con garrapata
                //////////Aseguir con metafilaxia

                cell = new PdfPCell(new Phrase(" ", fuenteDatos))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER,
                    Colspan = 8
                };
                table.AddCell(cell);

                cell = new PdfPCell(new Phrase(" ", fuenteDatos))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER | Rectangle.TOP_BORDER,
                    Colspan = 8
                };
                table.AddCell(cell);

                if (evaluacionCorralInfoSelecionado.EsMetafilaxia ||
                    evaluacionCorralInfoSelecionado.MetafilaxiaAutorizada)
                {
                    cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_AccionASeguirMetafilaxia, fuenteDatosEnfermeria))
                    {
                        HorizontalAlignment = Element.ALIGN_LEFT,
                        Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER,
                        Colspan = 8
                    };
                    table.AddCell(cell);

                    /* Metafilaxia Autorizada */
                    if (evaluacionCorralInfoSelecionado.MetafilaxiaAutorizada)
                    {
                        cell =
                            new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_AccionASeguirMetafilaxiaJustificacion,
                                                    fuenteDatosEnfermeria))
                        {
                            HorizontalAlignment = Element.ALIGN_LEFT,
                            Border  = Rectangle.LEFT_BORDER,
                            Colspan = 1
                        };
                        table.AddCell(cell);

                        cell =
                            new PdfPCell(new Phrase(evaluacionCorralInfoSelecionado.Justificacion,
                                                    fuenteDatosEnfermeria))
                        {
                            HorizontalAlignment = Element.ALIGN_LEFT,
                            Border  = Rectangle.RIGHT_BORDER,
                            Colspan = 7
                        };
                        table.AddCell(cell);
                    }
                }
                else
                {
                    cell = new PdfPCell(new Phrase(ResourceServices.EvaluacionPartida_AccionASeguirNormal, fuenteDatosEnfermeria))
                    {
                        HorizontalAlignment = Element.ALIGN_LEFT,
                        Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER,
                        Colspan = 8
                    };
                    table.AddCell(cell);
                }

                cell = new PdfPCell(new Phrase(" ", fuenteDatos))
                {
                    HorizontalAlignment = Element.ALIGN_CENTER,
                    Border  = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER | Rectangle.BOTTOM_BORDER,
                    Colspan = 8
                };
                table.AddCell(cell);

                reporte.Add(table);

                reporte.Close();

                if (!webForm)
                {
                    SendToPrinter(nombreArchivo);
                }
            }
            catch (ExcepcionGenerica)
            {
                throw;
            }
            catch (DocumentException ex)
            {
                Logger.Error(ex);
                reporte.Close();
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
            catch (IOException ex)
            {
                Logger.Error(ex);
                reporte.Close();
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
            catch (Exception ex)
            {
                Logger.Error(ex);
                reporte.Close();
                throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
            }
        }