Example usage for com.itextpdf.text BaseColor GRAY

List of usage examples for com.itextpdf.text BaseColor GRAY

Introduction

In this page you can find the example usage for com.itextpdf.text BaseColor GRAY.

Prototype

BaseColor GRAY

To view the source code for com.itextpdf.text BaseColor GRAY.

Click Source Link

Usage

From source file:Reporte.PdfPremio.java

private void generarFilaTotales() throws DocumentException {
    Font fuente = new Font();
    fuente.setSize(10);//from ww  w .  j a  v a2 s .c  om

    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

/**
 * da forrmato a las columnas/* w  w w  .  j a  va 2s. c o  m*/
 *
 * @param tabla
 * @return
 */
private PdfPTable formatoColumna(PdfPTable tabla) {
    PdfPCell columna[] = new PdfPCell[6];
    Font fuente = new Font();
    fuente.setSize(10);
    columna[0] = new PdfPCell(new Paragraph("Serial", fuente));
    columna[0].setBackgroundColor(BaseColor.GRAY);

    columna[1] = new PdfPCell(new Paragraph("Vend", fuente));
    columna[1].setBackgroundColor(BaseColor.GRAY);

    columna[2] = new PdfPCell(new Paragraph("Loteria", fuente));
    columna[2].setBackgroundColor(BaseColor.GRAY);

    columna[3] = new PdfPCell(new Paragraph("Tipo", fuente));
    columna[3].setBackgroundColor(BaseColor.GRAY);

    columna[4] = new PdfPCell(new Paragraph("Valor", fuente));
    columna[4].setBackgroundColor(BaseColor.GRAY);

    columna[5] = new PdfPCell(new Paragraph("Premio", fuente));
    columna[5].setBackgroundColor(BaseColor.GRAY);

    tabla.addCell(columna[0]);
    tabla.addCell(columna[1]);
    tabla.addCell(columna[2]);
    tabla.addCell(columna[3]);
    tabla.addCell(columna[4]);
    tabla.addCell(columna[5]);

    return tabla;
}

From source file:Reporte.PdfVenta.java

private void generarFilaTotales() throws DocumentException {
    Font fuente = new Font();
    fuente.setSize(10);//from w w  w  .j  a va2 s  .  co  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

/**
 * da forrmato a las columnas/*from  w w  w  . ja v  a  2 s  .  c  o  m*/
 *
 * @param tabla
 * @return
 */
private PdfPTable formatoColumna(PdfPTable tabla) {
    PdfPCell columna[] = new PdfPCell[8];
    Font fuente = new Font();
    fuente.setSize(10);
    columna[0] = new PdfPCell(new Paragraph("Codigo", fuente));
    columna[0].setBackgroundColor(BaseColor.GRAY);

    columna[1] = new PdfPCell(new Paragraph("Nombres", fuente));
    columna[1].setBackgroundColor(BaseColor.GRAY);

    columna[2] = new PdfPCell(new Paragraph("Ventas", fuente));
    columna[2].setBackgroundColor(BaseColor.GRAY);

    columna[3] = new PdfPCell(new Paragraph("Comision", fuente));
    columna[3].setBackgroundColor(BaseColor.GRAY);

    columna[4] = new PdfPCell(new Paragraph("Abonos", fuente));
    columna[4].setBackgroundColor(BaseColor.GRAY);

    columna[5] = new PdfPCell(new Paragraph("Neto", fuente));
    columna[5].setBackgroundColor(BaseColor.GRAY);

    columna[6] = new PdfPCell(new Paragraph("Saldo", fuente));
    columna[6].setBackgroundColor(BaseColor.GRAY);

    columna[7] = new PdfPCell(new Paragraph("Ticket", fuente));
    columna[7].setBackgroundColor(BaseColor.GRAY);

    tabla.addCell(columna[0]);
    tabla.addCell(columna[1]);
    tabla.addCell(columna[2]);
    tabla.addCell(columna[3]);
    tabla.addCell(columna[4]);
    tabla.addCell(columna[5]);
    tabla.addCell(columna[6]);
    tabla.addCell(columna[7]);

    return tabla;

}

From source file:Reporte.PdfVentaPersona.java

private void generarFilaTotales() throws DocumentException {
    Font fuente = new Font();
    fuente.setSize(10);//from   w  w w . j  a v  a 2s.com

    PdfPCell celdaFinal = new PdfPCell(new Paragraph("Totales"));
    celdaFinal.setBackgroundColor(BaseColor.GRAY);
    NumberFormat formatoNumero = NumberFormat.getNumberInstance();
    celdaFinal.setColspan(1);
    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.PdfVentaPersona.java

/**
 * da forrmato a las columnas// ww  w.  j  a v a2  s.  c  om
 *
 * @param tabla
 * @return
 */
private PdfPTable formatoColumna(PdfPTable tabla) {
    PdfPCell columna[] = new PdfPCell[8];
    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("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("Abonos", fuente));
    columna[3].setBackgroundColor(BaseColor.GRAY);

    columna[4] = new PdfPCell(new Paragraph("Neto", fuente));
    columna[4].setBackgroundColor(BaseColor.GRAY);

    columna[5] = new PdfPCell(new Paragraph("Saldo", fuente));
    columna[5].setBackgroundColor(BaseColor.GRAY);

    columna[6] = new PdfPCell(new Paragraph("Ticket", fuente));
    columna[6].setBackgroundColor(BaseColor.GRAY);

    tabla.addCell(columna[0]);
    tabla.addCell(columna[1]);
    tabla.addCell(columna[2]);
    tabla.addCell(columna[3]);
    tabla.addCell(columna[4]);
    tabla.addCell(columna[5]);
    tabla.addCell(columna[6]);

    return tabla;

}

From source file:Reporte.PdfVentasGeneral.java

private void generarFilasTotalesFinalColombia() throws DocumentException {

    Font fuente = new Font();
    fuente.setSize(10);/*from ww w  .j  a v a 2s .c om*/

    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.FinalVentasColombia), fuente));
    parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo1);
    PdfPCell parrafo2 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinalcomisionesColombia), fuente));
    parrafo2.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo2);
    PdfPCell parrafo3 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinalaboonadoColombia), fuente));
    parrafo3.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo3);
    PdfPCell parrafo4 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinalabonosColombia), fuente));
    parrafo4.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo4);
    PdfPCell parrafo5 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinalsaldosColombia), fuente));
    parrafo5.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo5);

    PdfPCell parrafo6 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinaltickeColombia), fuente));
    parrafo6.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo6);

    documento.add(tabla);

    documento.add(new Paragraph("\n"));

}

From source file:Reporte.PdfVentasGeneral.java

private void generarFilasTotalesFinalVenezuela() throws DocumentException {

    Font fuente = new Font();
    fuente.setSize(10);/*from   ww w  . j a  v a 2  s  . co 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.FinalVentasVenezuela), fuente));
    parrafo1.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo1);
    PdfPCell parrafo2 = new PdfPCell(
            new Paragraph(formatoNumero.format(this.FinalcomisionesVenezuela), fuente));
    parrafo2.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo2);
    PdfPCell parrafo3 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinalaboonadoVenezuela), fuente));
    parrafo3.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo3);
    PdfPCell parrafo4 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinalabonosVenezuela), fuente));
    parrafo4.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo4);
    PdfPCell parrafo5 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinalsaldosVenezuela), fuente));
    parrafo5.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo5);

    PdfPCell parrafo6 = new PdfPCell(new Paragraph(formatoNumero.format(this.FinaltickeVenezuela), fuente));
    parrafo6.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafo6);

    documento.add(tabla);

    documento.add(new Paragraph("\n"));

}

From source file:Reporte.PdfVentasGeneral.java

/**
 * da forrmato a las columnas/* w ww .  j  av a  2 s . c o m*/
 *
 * @param tabla
 * @return
 */
private PdfPTable formatoColumna(PdfPTable tabla) {
    PdfPCell columna[] = new PdfPCell[7];
    Font fuente = new Font();
    fuente.setSize(10);

    columna[0] = new PdfPCell(new Paragraph("Fecha", fuente));
    columna[0].setBackgroundColor(BaseColor.GRAY);
    columna[0].setColspan(2);

    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("Abonos", fuente));
    columna[3].setBackgroundColor(BaseColor.GRAY);

    columna[4] = new PdfPCell(new Paragraph("Neto", fuente));
    columna[4].setBackgroundColor(BaseColor.GRAY);

    columna[5] = new PdfPCell(new Paragraph("Saldo", fuente));
    columna[5].setBackgroundColor(BaseColor.GRAY);

    columna[6] = new PdfPCell(new Paragraph("Ticket", fuente));
    columna[6].setBackgroundColor(BaseColor.GRAY);

    tabla.addCell(columna[0]);
    tabla.addCell(columna[1]);
    tabla.addCell(columna[2]);
    tabla.addCell(columna[3]);
    tabla.addCell(columna[4]);
    tabla.addCell(columna[5]);
    tabla.addCell(columna[6]);

    return tabla;

}

From source file:Reporte.PdfVentasSaldos.java

private void generarFilaTotales() throws DocumentException {
    Font fuente = new Font();
    fuente.setSize(10);//from  w  ww  .  j  av  a  2  s .  co  m
    PdfPCell celdaFinal = new PdfPCell(new Paragraph("Totales"));
    celdaFinal.setBackgroundColor(BaseColor.GRAY);
    NumberFormat formatoNumero = NumberFormat.getNumberInstance();
    celdaFinal.setColspan(2);
    tabla.addCell(celdaFinal);

    PdfPCell parrafox = new PdfPCell(new Paragraph(formatoNumero.format(this.saldoAnterior), fuente));
    parrafox.setHorizontalAlignment(Element.ALIGN_RIGHT);
    tabla.addCell(parrafox);

    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);
    if (this.forma.equalsIgnoreCase("POSITIVOS")) {
        documento.add(new Paragraph("Cantidad de registros : " + this.totalRegistrosP, fuente));
    } else {
        documento.add(new Paragraph("Cantidad de registros : " + this.totalRegistrosN, fuente));
    }
}