tabla.addCell(cell);
}
tabla.completeRow();
while (iteNovedadesfallas.hasNext()) {
BitacoraLN bitacora = iteNovedadesfallas.next();
PdfPCell cell0 = new PdfPCell();
PdfPCell cell1 = new PdfPCell();
PdfPCell cell2 = new PdfPCell();
PdfPCell cell3 = new PdfPCell();
PdfPCell cell4 = new PdfPCell();
SimpleDateFormat sdf = new SimpleDateFormat(
"dd/MM/yyyy");
String fecha = sdf.format(bitacora.getFecha());
cell0.setPhrase(new Phrase(fecha, new Font(
FontFamily.HELVETICA, 8, Font.NORMAL)));
if (bitacora.getUsuarioNombre() != null) {
cell1.setPhrase(new Phrase(bitacora
.getUsuarioNombre(), new Font(
FontFamily.HELVETICA, 8, Font.NORMAL)));
} else {
cell1.setPhrase(new Phrase("", new Font(
FontFamily.HELVETICA, 8, Font.NORMAL)));
}
cell2.setPhrase(new Phrase(bitacora.getTurnoNombre(),
new Font(FontFamily.HELVETICA, 8, Font.NORMAL)));
cell3.setPhrase(new Phrase(bitacora.getEquipoNombre(),
new Font(FontFamily.HELVETICA, 8, Font.NORMAL)));
cell4.setPhrase(new Phrase(bitacora.getComentario().getValue(),
new Font(FontFamily.HELVETICA, 8, Font.NORMAL)));
tabla.addCell(cell0);
tabla.addCell(cell1);
tabla.addCell(cell2);
tabla.addCell(cell3);