List of usage examples for com.itextpdf.text Font setSize
public void setSize(final float size)
From source file:Reporte.PdfInformeGeneral.java
/** * adiciona al documento los totales de ventas, comision y premios para el * tipo de moneda//from w w w . ja va 2 s .c om * * @throws DocumentException */ private void generarTotalesParaTipoMonedas() throws DocumentException { Font fuente = new Font(); fuente.setStyle(Font.BOLD); NumberFormat formatoNumero = NumberFormat.getNumberInstance(); fuente.setSize(10); PdfPCell parrafo = new PdfPCell(new Paragraph("Gran total", fuente)); tabla.addCell(parrafo); PdfPCell parrafo1 = new PdfPCell(new Paragraph(formatoNumero.format(this.totalVentas), fuente)); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); PdfPCell parrafo3 = new PdfPCell(new Paragraph(formatoNumero.format(this.totalComision) + "", fuente)); parrafo3.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo3); PdfPCell parrafo4 = new PdfPCell(new Paragraph(formatoNumero.format(this.totalPremios), fuente)); parrafo4.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo4); PdfPCell parrafo5 = new PdfPCell(new Paragraph(formatoNumero.format(this.totalUtilidad), fuente)); parrafo5.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo5); this.totalComision = 0; this.totalPremios = 0; this.totalVentas = 0; this.totalUtilidad = 0; }
From source file:Reporte.PdfInformeGeneral.java
/** * genera las filas totales para cada tabla especifica. * * @throws DocumentException/*from w ww . j a v a 2s . c om*/ */ private void generarFilaTotales1() throws DocumentException { NumberFormat formatoNumero = NumberFormat.getNumberInstance(); Font fuente = new Font(); fuente.setSize(10); PdfPCell parrafo = new PdfPCell(new Paragraph("Totales", fuente)); tabla.addCell(parrafo); PdfPCell parrafo1 = new PdfPCell(new Paragraph(formatoNumero.format(ventas), fuente)); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); PdfPCell parrafo3 = new PdfPCell(new Paragraph(formatoNumero.format(comisiones) + "", fuente)); parrafo3.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo3); PdfPCell parrafo4 = new PdfPCell(new Paragraph(formatoNumero.format(premios), fuente)); parrafo4.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo4); PdfPCell parrafo5 = new PdfPCell(new Paragraph(formatoNumero.format(this.utilidad), fuente)); parrafo5.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo5); this.totalVentas += this.ventas; this.totalComision += this.comisiones; this.totalPremios += this.premios; this.totalUtilidad += this.utilidad; this.ventas = 0; this.comisiones = 0; this.premios = 0; this.utilidad = 0; }
From source file:Reporte.PdfInformeGeneral.java
adirRegistro(InformeGeneralDto dto, PdfPTable tabla) { Font fuente = new Font(); fuente.setSize(10); PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getTipoFormato() + "", fuente)); tabla.addCell(parrafo);//from w w w . ja va 2 s. c o m PdfPCell parrafo1 = new PdfPCell(new Paragraph(dto.getVentasFormato(), fuente)); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); PdfPCell parrafo3 = new PdfPCell(new Paragraph(dto.getComisionesFormato() + "", fuente)); parrafo3.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo3); PdfPCell parrafo4 = new PdfPCell(new Paragraph(dto.getPremiosFormato() + "", fuente)); parrafo4.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo4); PdfPCell parrafo5 = new PdfPCell(new Paragraph(dto.getUtilidadFormato() + "", fuente)); parrafo5.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo5); this.ventas += dto.getVentas(); this.comisiones += dto.getComision(); this.premios += dto.getPremios(); this.utilidad +=dto.getUtilidad(); }
From source file:Reporte.PdfInformeGeneral.java
/** * da forrmato a las columnas/* www . j a va 2s .c o m*/ * * @param tabla * @return */ private PdfPTable formatoColumna(PdfPTable tabla) { PdfPCell columna[] = new PdfPCell[5]; Font fuente = new Font(); fuente.setSize(10); columna[0] = new PdfPCell(new Paragraph("Tipo", fuente)); columna[0].setBackgroundColor(BaseColor.GRAY); columna[1] = new PdfPCell(new Paragraph("Ventas", fuente)); columna[1].setBackgroundColor(BaseColor.GRAY); columna[2] = new PdfPCell(new Paragraph("Comision", fuente)); columna[2].setBackgroundColor(BaseColor.GRAY); columna[3] = new PdfPCell(new Paragraph("Premio", fuente)); columna[3].setBackgroundColor(BaseColor.GRAY); columna[4] = new PdfPCell(new Paragraph("Utilidad", fuente)); columna[4].setBackgroundColor(BaseColor.GRAY); tabla.addCell(columna[0]); tabla.addCell(columna[1]); tabla.addCell(columna[2]); tabla.addCell(columna[3]); tabla.addCell(columna[4]); return tabla; }
From source file:Reporte.PdfInformePrestamos.java
private void generarFilaTotalesPrestamo() throws DocumentException { Font fuente = new Font(); fuente.setSize(10); PdfPCell celdaFinal = new PdfPCell(new Paragraph("Total")); celdaFinal.setBackgroundColor(BaseColor.GRAY); NumberFormat formatoNumero = NumberFormat.getNumberInstance(); celdaFinal.setColspan(1);/*from ww w .j a v a2s.c o m*/ tabla.addCell(celdaFinal); PdfPCell parrafo1 = new PdfPCell(new Paragraph(formatoNumero.format(this.totalP), fuente)); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); documento.add(tabla); }
From source file:Reporte.PdfInformePrestamos.java
private void generarFilaTotalesPago() throws DocumentException { Font fuente = new Font(); fuente.setSize(10); PdfPCell celdaFinal = new PdfPCell(new Paragraph("Total")); celdaFinal.setBackgroundColor(BaseColor.GRAY); NumberFormat formatoNumero = NumberFormat.getNumberInstance(); celdaFinal.setColspan(1);/* w w w . j a va 2 s .c om*/ tabla.addCell(celdaFinal); PdfPCell parrafo1 = new PdfPCell(new Paragraph(formatoNumero.format(this.totalPa), fuente)); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); documento.add(tabla); }
From source file:Reporte.PdfInformePrestamos.java
adirRegistroPrestamo(PrestamoDto dto, PdfPTable tabla) { Font fuente = new Font(); fuente.setSize(10); PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getFecha(), fuente)); tabla.addCell(parrafo);/*from w w w. j a va2s. c o m*/ PdfPCell parrafo1 = new PdfPCell(new Paragraph(dto.getValorFormato(), fuente)); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); this.totalP += dto.getValor(); }
From source file:Reporte.PdfInformePrestamos.java
adirRegistroPago(PrestamoDto dto, PdfPTable tabla) { Font fuente = new Font(); fuente.setSize(10); PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getFecha(), fuente)); tabla.addCell(parrafo);/*from w w w. j a v a2 s. c o m*/ PdfPCell parrafo1 = new PdfPCell(new Paragraph(dto.getValorFormato(), fuente)); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); this.totalPa += dto.getValor(); }
From source file:Reporte.PdfInformePrestamos.java
/** * da forrmato a las columnas//from www . ja va 2 s .c om * * @param tabla * @return */ private PdfPTable formatoColumna(PdfPTable tabla) { PdfPCell columna[] = new PdfPCell[2]; Font fuente = new Font(); fuente.setSize(10); columna[0] = new PdfPCell(new Paragraph("Fecha", fuente)); columna[0].setBackgroundColor(BaseColor.GRAY); columna[1] = new PdfPCell(new Paragraph("Valor", fuente)); columna[1].setBackgroundColor(BaseColor.GRAY); tabla.addCell(columna[0]); tabla.addCell(columna[1]); return tabla; }
From source file:Reporte.PdfPremio.java
private void generarFilaTotales() throws DocumentException { Font fuente = new Font(); fuente.setSize(10); PdfPCell celdaFinal = new PdfPCell(new Paragraph("Totales", fuente)); celdaFinal.setBackgroundColor(BaseColor.GRAY); celdaFinal.setColspan(5);//from w w w . j a va 2 s . c om NumberFormat formatoNumero = NumberFormat.getNumberInstance(); tabla.addCell(celdaFinal); PdfPCell parrafo1 = new PdfPCell(new Paragraph(formatoNumero.format(this.totalPremio))); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); documento.add(tabla); documento.add(new Paragraph("Cantidad de registros: " + this.totalRegistros, fuente)); }