List of usage examples for com.itextpdf.text Element ALIGN_RIGHT
int ALIGN_RIGHT
To view the source code for com.itextpdf.text Element ALIGN_RIGHT.
Click Source Link
From source file:Reporte.PdfInformeGeneral.java
adirRegistro(InformeGeneralDto dto, PdfPTable tabla) { Font fuente = new Font(); fuente.setSize(10);/* w w w.j a v a 2s . c om*/ PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getTipoFormato() + "", fuente)); tabla.addCell(parrafo); 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.PdfInformePrestamos.java
private void generarFilaTotalesPrestamo() throws DocumentException { Font fuente = new Font(); fuente.setSize(10);/* w w w. j a v a 2 s .c o m*/ PdfPCell celdaFinal = new PdfPCell(new Paragraph("Total")); celdaFinal.setBackgroundColor(BaseColor.GRAY); NumberFormat formatoNumero = NumberFormat.getNumberInstance(); celdaFinal.setColspan(1); 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);//from w w w . ja va 2 s .c o m PdfPCell celdaFinal = new PdfPCell(new Paragraph("Total")); celdaFinal.setBackgroundColor(BaseColor.GRAY); NumberFormat formatoNumero = NumberFormat.getNumberInstance(); celdaFinal.setColspan(1); 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);// w ww .j a v a 2 s .co m PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getFecha(), fuente)); tabla.addCell(parrafo); 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);/*w w w . j ava2 s. com*/ PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getFecha(), fuente)); tabla.addCell(parrafo); 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.PdfPremio.java
private void generarFilaTotales() throws DocumentException { Font fuente = new Font(); fuente.setSize(10);/*ww w . j a va2 s . c o m*/ PdfPCell celdaFinal = new PdfPCell(new Paragraph("Totales", fuente)); celdaFinal.setBackgroundColor(BaseColor.GRAY); celdaFinal.setColspan(5); 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)); }
From source file:Reporte.PdfPremio.java
adirRegistro(PremioDto dto, PdfPTable tabla) { this.totalPremio += dto.getDetPremio().getPremio(); Font fuente = new Font(); fuente.setSize(10);//from w w w .j av a 2s . c o m PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getSerial() + "", fuente)); tabla.addCell(parrafo); PdfPCell parrafo2 = new PdfPCell(new Paragraph(dto.getPersona().getCodigo() + "", fuente)); tabla.addCell(parrafo2); PdfPCell parrafo6 = new PdfPCell(new Paragraph(dto.getDetPremio().getLoteria().getCodigoNombre() + "", fuente)); tabla.addCell(parrafo6); PdfPCell parrafo7 = new PdfPCell(new Paragraph(dto.getDetPremio().getTipoPremio().getTipoNombre() + "", fuente)); tabla.addCell(parrafo7); PdfPCell parrafo8 = new PdfPCell(new Paragraph(dto.getDetPremio().getValorFormato() + "", fuente)); parrafo8.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo8); PdfPCell parrafo9 = new PdfPCell(new Paragraph(dto.getDetPremio().getPremioFormato() + "", fuente)); parrafo9.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo9); }
From source file:Reporte.PdfVenta.java
private void generarFilaTotales() throws DocumentException { Font fuente = new Font(); fuente.setSize(10);//from www. ja v a 2s. c o m PdfPCell celdaFinal = new PdfPCell(new Paragraph("Totales")); celdaFinal.setBackgroundColor(BaseColor.GRAY); NumberFormat formatoNumero = NumberFormat.getNumberInstance(); celdaFinal.setColspan(2); tabla.addCell(celdaFinal); PdfPCell parrafo1 = new PdfPCell(new Paragraph(formatoNumero.format(this.ventas), fuente)); parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo1); PdfPCell parrafo2 = new PdfPCell(new Paragraph(formatoNumero.format(this.comisiones), fuente)); parrafo2.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo2); PdfPCell parrafo3 = new PdfPCell(new Paragraph(formatoNumero.format(this.abonado), fuente)); parrafo3.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo3); PdfPCell parrafo4 = new PdfPCell(new Paragraph(formatoNumero.format(this.abonos), fuente)); parrafo4.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo4); PdfPCell parrafo5 = new PdfPCell(new Paragraph(formatoNumero.format(this.saldos), fuente)); parrafo5.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo5); PdfPCell parrafo6 = new PdfPCell(new Paragraph(formatoNumero.format(this.totalTicket), fuente)); parrafo6.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo6); documento.add(tabla); documento.add(new Paragraph("Cantidad de registros : " + this.totalRegistros, fuente)); }
From source file:Reporte.PdfVenta.java
adirRegistro(VentaDto dto, PdfPTable tabla) { Font fuente = new Font(); fuente.setSize(10);//from w w w.jav a2 s .com PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getPersona().getCodigo() + "", fuente)); tabla.addCell(parrafo); PdfPCell parrafo1 = new PdfPCell(new Paragraph(dto.getPersona().getNombre() + " " + dto.getPersona().getApellido(), fuente)); tabla.addCell(parrafo1); PdfPCell parrafo3 = new PdfPCell(new Paragraph(dto.getVentaFormato() + "", fuente)); parrafo3.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo3); PdfPCell parrafo4 = new PdfPCell(new Paragraph(dto.getComisionFormato() + "", fuente)); parrafo4.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo4); PdfPCell parrafo5 = new PdfPCell(new Paragraph(dto.getAbonoFormato() + "", fuente)); parrafo5.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo5); PdfPCell parrafo6 = new PdfPCell(new Paragraph(dto.getRecaudoFormato() + "", fuente)); parrafo6.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo6); PdfPCell parrafo7 = new PdfPCell(new Paragraph(dto.getSaldoFormato() + "", fuente)); parrafo7.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo7); PdfPCell parrafo8 = new PdfPCell(new Paragraph(dto.getnTicketFormato() + "", fuente)); parrafo8.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo8); ventas += dto.getVenta(); comisiones += dto.getComision(); abonos += dto.getRecaudo(); saldos += dto.getSaldo(); this.abonado += dto.getAbono(); this.totalTicket += dto.getnTicket(); }
From source file:Reporte.PdfVentaDetalle.java
adirRegistro(VentaDto dto, PdfPTable tabla) { Font fuente = new Font(); fuente.setSize(10);//from w ww.ja v a2s. co m PdfPCell parrafo = new PdfPCell(new Paragraph(dto.getPersona().getCodigo() + "", fuente)); tabla.addCell(parrafo); PdfPCell parrafo1 = new PdfPCell(new Paragraph(dto.getPersona().getNombre() + " " + dto.getPersona().getApellido(), fuente)); tabla.addCell(parrafo1); PdfPCell parrafo3 = new PdfPCell(new Paragraph(dto.getVentaFormato() + "", fuente)); parrafo3.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo3); PdfPCell parrafo4 = new PdfPCell(new Paragraph(dto.getComisionFormato() + "", fuente)); parrafo4.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo4); PdfPCell parrafo5 = new PdfPCell(new Paragraph(dto.getAbonoFormato() + "", fuente)); parrafo5.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo5); PdfPCell parrafo6 = new PdfPCell(new Paragraph(dto.getRecaudoFormato() + "", fuente)); parrafo6.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo6); PdfPCell parrafo7 = new PdfPCell(new Paragraph(dto.getSaldoFormato() + "", fuente)); parrafo7.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo7); PdfPCell parrafo8 = new PdfPCell(new Paragraph(dto.getnTicketFormato() + "", fuente)); parrafo8.setHorizontalAlignment(Element.ALIGN_RIGHT); tabla.addCell(parrafo8); ventas += dto.getVenta(); comisiones += dto.getComision(); abonos += dto.getRecaudo(); saldos += dto.getSaldo(); this.abonado += dto.getAbono(); this.totalTicket += dto.getnTicket(); }