Example usage for com.itextpdf.text BaseColor BLACK

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

Introduction

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

Prototype

BaseColor BLACK

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

Click Source Link

Usage

From source file:Compras.Formatos.java

private void cabeceraCompraDCG(PDF reporte, BaseFont bf, PdfPTable tabla, Pedido ped, String tipo) {
    reporte.contenido.setLineWidth(0.5f);
    reporte.contenido.setColorStroke(new GrayColor(0.2f));
    reporte.contenido.setColorFill(new GrayColor(0.9f));
    reporte.contenido.roundRectangle(35, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(35, 625, 180, 80, 0);

    reporte.contenido.roundRectangle(215, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(215, 625, 180, 80, 0);

    reporte.contenido.roundRectangle(395, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(395, 625, 180, 80, 0);

    reporte.inicioTexto();/*from  ww w  .  ja v  a  2 s .  c o  m*/
    reporte.contenido.setFontAndSize(bf, 13);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.agregaObjeto(reporte.crearImagen("imagenes/volvo.png", 0, -35, 30));
    reporte.agregaObjeto(reporte.crearImagen("imagenes/mack.png", 410, -30, 30));
    reporte.contenido.setFontAndSize(bf, 12);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            "Distribuidora de Camiones Guerrero, S.A. de C.V.", 110, 770, 0);
    if (ped.getIdExterno() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, tipo + ": " + ped.getIdExterno(), 35, 710,
                0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, tipo + ": NA", 35, 710, 0);
    reporte.contenido.setFontAndSize(bf, 7);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "2da. De la Cadena S/N", 110, 760, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Col. Reforma", 110, 750, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "San Pedro Totoltepec", 110, 740, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Toluca, Mx.   C.P. 50200", 110, 730, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Tel. 199 24 04 / 590 12 29", 110, 720, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT,
            "Fecha:" + new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date()), 570, 710, 0);

    ord = (Orden) session.get(Orden.class, ord.getIdOrden());

    //************************datos del proveedor****************************
    DateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");//YYYY-MM-DD HH:MM:SS
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS DEL PROVEEDOR", 73, 697, 0);
    String nomb = ped.getProveedorByIdProveedor().getNombre();
    if (ped.getProveedorByIdProveedor().getNombre().length() > 37)
        nomb = nomb.substring(0, 36);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, nomb, 40, 687, 0);

    if (ped.getProveedorByIdProveedor().getDireccion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                ped.getProveedorByIdProveedor().getDireccion(), 40, 677, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Dir:", 40, 677, 0);

    if (ped.getProveedorByIdProveedor().getColonia() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Col: " + ped.getProveedorByIdProveedor().getColonia(), 40, 667, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Col:", 40, 667, 0);

    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            "Edo: " + ped.getProveedorByIdProveedor().getEstado(), 40, 657, 0);

    if (ped.getProveedorByIdProveedor().getTel1() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Tel: " + ped.getProveedorByIdProveedor().getTel1(), 40, 647, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Tel:", 40, 647, 0);

    if (ped.getProveedorByIdProveedor().getTel1() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Cto: " + ped.getProveedorByIdProveedor().getRepresentante(), 40, 637, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Cto:", 40, 637, 0);

    if (ped.getProveedorByIdProveedor().getEmail() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Email: " + ped.getProveedorByIdProveedor().getEmail(), 40, 627, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Email: ", 40, 627, 0);

    //**********************datos de facturacion*****************************
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS DE FACTURACIN", 250, 697, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ped.getProveedorByIdEmpresa().getNombre(), 220,
            687, 0);
    if (ped.getProveedorByIdEmpresa().getDireccion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                ped.getProveedorByIdEmpresa().getDireccion(), 220, 677, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Dir:", 220, 677, 0);
    if (ped.getProveedorByIdEmpresa().getColonia() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Col: " + ped.getProveedorByIdEmpresa().getColonia(), 220, 667, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Col:", 220, 667, 0);
    if (ped.getProveedorByIdEmpresa().getPoblacion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Pob: " + ped.getProveedorByIdEmpresa().getPoblacion(), 220, 657, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Pob:", 220, 657, 0);
    if (ped.getProveedorByIdEmpresa().getCp() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "CP: " + ped.getProveedorByIdEmpresa().getCp(), 220, 647, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "CP:", 220, 647, 0);
    if (ped.getProveedorByIdEmpresa().getRfc() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "RFC: " + ped.getProveedorByIdEmpresa().getRfc(), 220, 637, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "RFC:", 220, 537, 0);

    //**********************datos de la unidad*****************************
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS LA UNIDAD", 450, 697, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Orden: " + ord.getIdOrden(), 410, 687, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Tipo: " + ord.getTipo().getTipoNombre(), 410,
            677, 0);
    if (ord.getNoSerie() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: " + ord.getNoSerie(), 410, 667,
                0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: ", 410, 667, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Modelo: " + ord.getModelo(), 410, 657, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Compaa: " + ord.getCompania().getNombre(),
            410, 647, 0);
    String clien = ord.getClientes().getNombre();
    if (clien.length() > 25)
        clien = clien.substring(0, 25);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Cliente:" + clien, 410, 637, 0);
    if (ord.getSiniestro() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Siniestro:" + ord.getSiniestro(), 410,
                627, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Siniestro:", 410, 627, 0);

    reporte.contenido.setFontAndSize(bf, 12);

    reporte.finTexto();
    reporte.contenido.setFontAndSize(bf, 12);
    //agregamos renglones vacios para dejar un espacio
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));

    Font font = new Font(Font.FontFamily.HELVETICA, 6, Font.BOLD);

    BaseColor cabecera = BaseColor.GRAY;
    BaseColor contenido = BaseColor.WHITE;
    int centro = Element.ALIGN_CENTER;
    int izquierda = Element.ALIGN_LEFT;
    int derecha = Element.ALIGN_RIGHT;

    tabla.addCell(reporte.celda("Part.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Cant.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Uni.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Descripcin", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("No Parte", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Costo C/U", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Total", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));

}

From source file:Compras.Formatos.java

private void cabeceraCompraExDCG(PDF reporte, BaseFont bf, PdfPTable tabla, Pedido ped, String tipo) {
    reporte.contenido.setLineWidth(0.5f);
    reporte.contenido.setColorStroke(new GrayColor(0.2f));
    reporte.contenido.setColorFill(new GrayColor(0.9f));
    reporte.contenido.roundRectangle(35, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(35, 625, 180, 80, 0);

    reporte.contenido.roundRectangle(215, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(215, 625, 180, 80, 0);

    reporte.contenido.roundRectangle(395, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(395, 625, 180, 80, 0);

    reporte.inicioTexto();//from   ww  w .  j a v a2s.  c  o  m
    reporte.contenido.setFontAndSize(bf, 13);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.agregaObjeto(reporte.crearImagen("imagenes/volvo.png", 0, -35, 30));
    reporte.agregaObjeto(reporte.crearImagen("imagenes/mack.png", 410, -30, 30));
    reporte.contenido.setFontAndSize(bf, 12);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            "Distribuidora de Camiones Guerrero, S.A. de C.V.", 110, 770, 0);
    if (ped.getIdExterno() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, tipo + ": " + ped.getIdExterno(), 35, 710,
                0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, tipo + ": NA", 35, 710, 0);
    reporte.contenido.setFontAndSize(bf, 7);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "2da. De la Cadena S/N", 110, 760, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Col. Reforma", 110, 750, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "San Pedro Totoltepec", 110, 740, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Toluca, Mx.   C.P. 50200", 110, 730, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Tel. 199 24 04 / 590 12 29", 110, 720, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT,
            "Fecha:" + new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date()), 570, 710, 0);

    //ord = (Orden)session.get(Orden.class, ord.getIdOrden()); 

    //************************datos del proveedor****************************
    DateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");//YYYY-MM-DD HH:MM:SS
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS DEL PROVEEDOR", 73, 697, 0);

    String nomb = ped.getProveedorByIdProveedor().getNombre();
    if (nomb.length() > 37)
        nomb = nomb.substring(0, 36);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, nomb, 40, 687, 0);

    if (ped.getProveedorByIdProveedor().getDireccion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                ped.getProveedorByIdProveedor().getDireccion(), 40, 677, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Dir:", 40, 677, 0);

    if (ped.getProveedorByIdProveedor().getColonia() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Col: " + ped.getProveedorByIdProveedor().getColonia(), 40, 667, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Col:", 40, 667, 0);

    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            "Edo: " + ped.getProveedorByIdProveedor().getEstado(), 40, 657, 0);

    if (ped.getProveedorByIdProveedor().getTel1() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Tel: " + ped.getProveedorByIdProveedor().getTel1(), 40, 647, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Tel:", 40, 647, 0);

    if (ped.getProveedorByIdProveedor().getTel1() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Cto: " + ped.getProveedorByIdProveedor().getRepresentante(), 40, 637, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Cto:", 40, 637, 0);

    if (ped.getProveedorByIdProveedor().getEmail() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Email: " + ped.getProveedorByIdProveedor().getEmail(), 40, 627, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Email: ", 40, 627, 0);

    //**********************datos de facturacion*****************************
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS DE FACTURACIN", 250, 697, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ped.getProveedorByIdEmpresa().getNombre(), 220,
            687, 0);
    if (ped.getProveedorByIdEmpresa().getDireccion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                ped.getProveedorByIdEmpresa().getDireccion(), 220, 677, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Dir:", 220, 677, 0);
    if (ped.getProveedorByIdEmpresa().getColonia() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Col: " + ped.getProveedorByIdEmpresa().getColonia(), 220, 667, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Col:", 220, 667, 0);
    if (ped.getProveedorByIdEmpresa().getPoblacion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Pob: " + ped.getProveedorByIdEmpresa().getPoblacion(), 220, 657, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Pob:", 220, 657, 0);
    if (ped.getProveedorByIdEmpresa().getCp() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "CP: " + ped.getProveedorByIdEmpresa().getCp(), 220, 647, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "CP:", 220, 647, 0);
    if (ped.getProveedorByIdEmpresa().getRfc() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "RFC: " + ped.getProveedorByIdEmpresa().getRfc(), 220, 637, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "RFC:", 220, 537, 0);

    //**********************datos de la unidad*****************************
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS LA UNIDAD", 450, 697, 0);
    if (ped.getPartida() == null) {
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "No Orden: " + ped.getOrdenExterna().getIdOrden(), 410, 687, 0);
        if (ped.getOrdenExterna().getTipo() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Tipo: " + ped.getOrdenExterna().getTipo().getTipoNombre(), 410, 677, 0);

        /*if(ped.getOrdenExterna().getNoSerie()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: "+ped.getOrdenExterna().getNoSerie(), 410, 667, 0);
        else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: ", 410, 667, 0);*/

        if (ped.getOrdenExterna().getModelo() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Modelo: " + ped.getOrdenExterna().getModelo(), 410, 667, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Modelo: ", 410, 667, 0);

        if (ped.getOrdenExterna().getCompania() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Compaa: " + ped.getOrdenExterna().getCompania().getNombre(), 410, 657, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Compaa: ", 410, 657, 0);

        if (ped.getOrdenExterna().getAsegurado() != null) {
            String clien = ped.getOrdenExterna().getAsegurado();
            if (clien.length() > 25)
                clien = clien.substring(0, 25);
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Asegurado:" + clien, 410, 647, 0);
        } else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Asegurado:", 410, 647, 0);

        if (ped.getOrdenExterna().getSiniestro() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "No Siniestro:" + ped.getOrdenExterna().getSiniestro(), 410, 637, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Siniestro:", 410, 637, 0);
    } else {
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "No Orden: " + ped.getPartida().getOrdenByIdOrden().getIdOrden(), 410, 687, 0);
        if (ped.getPartida().getOrdenByIdOrden().getTipo() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Tipo: " + ped.getPartida().getOrdenByIdOrden().getTipo().getTipoNombre(), 410, 677, 0);

        /*if(ped.getOrdenExterna().getNoSerie()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: "+ped.getOrdenExterna().getNoSerie(), 410, 667, 0);
        else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: ", 410, 667, 0);*/

        if (ped.getPartida().getOrdenByIdOrden().getModelo() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Modelo: " + ped.getPartida().getOrdenByIdOrden().getModelo(), 410, 667, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Modelo: ", 410, 667, 0);

        if (ped.getPartida().getOrdenByIdOrden().getCompania() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Compaa: " + ped.getPartida().getOrdenByIdOrden().getCompania().getNombre(), 410, 657,
                    0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Compaa: ", 410, 657, 0);

        if (ped.getPartida().getOrdenByIdOrden().getClientes() != null) {
            String clien = ped.getPartida().getOrdenByIdOrden().getClientes().getNombre();
            if (clien.length() > 25)
                clien = clien.substring(0, 25);
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Asegurado:" + clien, 410, 647, 0);
        } else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Asegurado:", 410, 647, 0);

        if (ped.getPartida().getOrdenByIdOrden().getSiniestro() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "No Siniestro:" + ped.getPartida().getOrdenByIdOrden().getSiniestro(), 410, 637, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Siniestro:", 410, 637, 0);
    }

    reporte.contenido.setColorFill(BaseColor.BLACK);
    /*reporte.contenido.roundRectangle(50, 20, 180, 1, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Solicita", 120, 10, 0);
    reporte.contenido.roundRectangle(370, 20, 180, 1, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Autoriza", 440, 10, 0);*/

    reporte.finTexto();
    reporte.contenido.setFontAndSize(bf, 12);
    //agregamos renglones vacios para dejar un espacio
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));

    Font font = new Font(Font.FontFamily.HELVETICA, 6, Font.BOLD);

    BaseColor cabecera = BaseColor.GRAY;
    BaseColor contenido = BaseColor.WHITE;
    int centro = Element.ALIGN_CENTER;
    int izquierda = Element.ALIGN_LEFT;
    int derecha = Element.ALIGN_RIGHT;

    tabla.addCell(reporte.celda("Part.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Cant.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Uni.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Descripcin", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("No Parte", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Costo C/U", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Total", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
}

From source file:Compras.Formatos.java

private void cabeceraCompraEx(PDF reporte, BaseFont bf, PdfPTable tabla, Pedido ped) {
    reporte.contenido.setLineWidth(0.5f);
    reporte.contenido.setColorStroke(new GrayColor(0.2f));
    reporte.contenido.setColorFill(new GrayColor(0.9f));
    reporte.contenido.roundRectangle(35, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(35, 625, 180, 80, 0);

    reporte.contenido.roundRectangle(215, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(215, 625, 180, 80, 0);

    reporte.contenido.roundRectangle(395, 695, 180, 10, 0);
    reporte.contenido.roundRectangle(395, 625, 180, 80, 0);

    reporte.inicioTexto();//  ww w. j  a  va 2  s  .  c om
    reporte.contenido.setFontAndSize(bf, 13);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.agregaObjeto(reporte.crearImagen("imagenes/grande300115.jpg", 30, -40, 60));
    reporte.contenido.setFontAndSize(bf, 12);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "ORDEN DE COMPRA: " + ped.getIdPedido(), 35,
            710, 0);
    reporte.contenido.setFontAndSize(bf, 7);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT,
            "Fecha:" + new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date()), 570, 710, 0);

    //ord = (Orden)session.get(Orden.class, ord.getIdOrden()); 

    //************************datos del proveedor****************************
    DateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");//YYYY-MM-DD HH:MM:SS
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS DEL PROVEEDOR", 73, 697, 0);

    String nomb = ped.getProveedorByIdProveedor().getNombre();
    if (nomb.length() > 37)
        nomb = nomb.substring(0, 36);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, nomb, 40, 687, 0);

    if (ped.getProveedorByIdProveedor().getDireccion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                ped.getProveedorByIdProveedor().getDireccion(), 40, 677, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Dir:", 40, 677, 0);

    if (ped.getProveedorByIdProveedor().getColonia() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Col: " + ped.getProveedorByIdProveedor().getColonia(), 40, 667, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Col:", 40, 667, 0);

    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            "Edo: " + ped.getProveedorByIdProveedor().getEstado(), 40, 657, 0);

    if (ped.getProveedorByIdProveedor().getTel1() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Tel: " + ped.getProveedorByIdProveedor().getTel1(), 40, 647, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Tel:", 40, 647, 0);

    if (ped.getProveedorByIdProveedor().getTel1() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Cto: " + ped.getProveedorByIdProveedor().getRepresentante(), 40, 637, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Cto:", 40, 637, 0);

    if (ped.getProveedorByIdProveedor().getEmail() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Email: " + ped.getProveedorByIdProveedor().getEmail(), 40, 627, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Email: ", 40, 627, 0);

    //**********************datos de facturacion*****************************
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS DE FACTURACIN", 250, 697, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ped.getProveedorByIdEmpresa().getNombre(), 220,
            687, 0);
    if (ped.getProveedorByIdEmpresa().getDireccion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                ped.getProveedorByIdEmpresa().getDireccion(), 220, 677, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Dir:", 220, 677, 0);
    if (ped.getProveedorByIdEmpresa().getColonia() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Col: " + ped.getProveedorByIdEmpresa().getColonia(), 220, 667, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Col:", 220, 667, 0);
    if (ped.getProveedorByIdEmpresa().getPoblacion() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "Pob: " + ped.getProveedorByIdEmpresa().getPoblacion(), 220, 657, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Pob:", 220, 657, 0);
    if (ped.getProveedorByIdEmpresa().getCp() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "CP: " + ped.getProveedorByIdEmpresa().getCp(), 220, 647, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "CP:", 220, 647, 0);
    if (ped.getProveedorByIdEmpresa().getRfc() != null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "RFC: " + ped.getProveedorByIdEmpresa().getRfc(), 220, 637, 0);
    else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "RFC:", 220, 537, 0);

    //**********************datos de la unidad*****************************
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "DATOS LA UNIDAD", 450, 697, 0);
    if (ped.getPartida() == null) {
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "No Orden: " + ped.getOrdenExterna().getIdOrden(), 410, 687, 0);
        if (ped.getOrdenExterna().getTipo() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Tipo: " + ped.getOrdenExterna().getTipo().getTipoNombre(), 410, 677, 0);

        /*if(ped.getOrdenExterna().getNoSerie()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: "+ped.getOrdenExterna().getNoSerie(), 410, 667, 0);
        else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: ", 410, 667, 0);*/

        if (ped.getOrdenExterna().getModelo() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Modelo: " + ped.getOrdenExterna().getModelo(), 410, 667, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Modelo: ", 410, 667, 0);

        if (ped.getOrdenExterna().getCompania() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Compaa: " + ped.getOrdenExterna().getCompania().getNombre(), 410, 657, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Compaa: ", 410, 657, 0);

        if (ped.getOrdenExterna().getAsegurado() != null) {
            String clien = ped.getOrdenExterna().getAsegurado();
            if (clien.length() > 25)
                clien = clien.substring(0, 25);
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Asegurado:" + clien, 410, 647, 0);
        } else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Asegurado:", 410, 647, 0);

        if (ped.getOrdenExterna().getSiniestro() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "No Siniestro:" + ped.getOrdenExterna().getSiniestro(), 410, 637, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Siniestro:", 410, 637, 0);
    } else {
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                "No Orden: " + ped.getPartida().getOrdenByIdOrden().getIdOrden(), 410, 687, 0);
        if (ped.getPartida().getOrdenByIdOrden().getTipo() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Tipo: " + ped.getPartida().getOrdenByIdOrden().getTipo().getTipoNombre(), 410, 677, 0);

        /*if(ped.getOrdenExterna().getNoSerie()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: "+ped.getOrdenExterna().getNoSerie(), 410, 667, 0);
        else
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Serie: ", 410, 667, 0);*/

        if (ped.getPartida().getOrdenByIdOrden().getModelo() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Modelo: " + ped.getPartida().getOrdenByIdOrden().getModelo(), 410, 667, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Modelo: ", 410, 667, 0);

        if (ped.getPartida().getOrdenByIdOrden().getCompania() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "Compaa: " + ped.getPartida().getOrdenByIdOrden().getCompania().getNombre(), 410, 657,
                    0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Compaa: ", 410, 657, 0);

        if (ped.getPartida().getOrdenByIdOrden().getClientes() != null) {
            String clien = ped.getPartida().getOrdenByIdOrden().getClientes().getNombre();
            if (clien.length() > 25)
                clien = clien.substring(0, 25);
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Asegurado:" + clien, 410, 647, 0);
        } else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Asegurado:", 410, 647, 0);

        if (ped.getPartida().getOrdenByIdOrden().getSiniestro() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
                    "No Siniestro:" + ped.getPartida().getOrdenByIdOrden().getSiniestro(), 410, 637, 0);
        else
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "No Siniestro:", 410, 637, 0);
    }

    reporte.contenido.setColorFill(BaseColor.BLACK);
    /*reporte.contenido.roundRectangle(50, 20, 180, 1, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Solicita", 120, 10, 0);
    reporte.contenido.roundRectangle(370, 20, 180, 1, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Autoriza", 440, 10, 0);*/

    reporte.finTexto();
    reporte.contenido.setFontAndSize(bf, 12);
    //agregamos renglones vacios para dejar un espacio
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));

    Font font = new Font(Font.FontFamily.HELVETICA, 6, Font.BOLD);

    BaseColor cabecera = BaseColor.GRAY;
    BaseColor contenido = BaseColor.WHITE;
    int centro = Element.ALIGN_CENTER;
    int izquierda = Element.ALIGN_LEFT;
    int derecha = Element.ALIGN_RIGHT;

    tabla.addCell(reporte.celda("#", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Cant.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Descripcin", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Part P.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("No Parte", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Costo C/U", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Total", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
}

From source file:Compras.Formatos.java

private void cabeceraPre(PDF reporte, BaseFont bf, PdfPTable tabla) {
    reporte.contenido.setLineWidth(0.5f);
    //reporte.contenido.setColorStroke(new GrayColor(0.2f));
    reporte.contenido.setColorFill(new GrayColor(0.9f));
    reporte.contenido.roundRectangle(35, 660, 543, 40, 5);//cuadro cliente
    reporte.contenido.roundRectangle(35, 618, 543, 40, 5);//cuadro unidad
    //reporte.contenido.roundRectangle(35, 600, 543, 14, 5);//cuadro cabecera tabla

    reporte.contenido.roundRectangle(353, 738, 223, 10, 0);//cuadro fecha
    reporte.contenido.roundRectangle(353, 728, 223, 10, 0);//cuadro F.Fiscal
    reporte.contenido.roundRectangle(353, 718, 223, 10, 0);//cuadro C. SAT
    reporte.contenido.roundRectangle(353, 708, 223, 10, 0);//cuadro C. Emisor

    Configuracion con = (Configuracion) session.get(Configuracion.class, 1);

    reporte.inicioTexto();/*from   w  ww.  j  av a2s  . c om*/
    reporte.agregaObjeto(reporte.crearImagen("imagenes/factura300115.jpg", 00, -32, 40));
    reporte.contenido.setFontAndSize(bf, 10);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_CENTER, "FACTURA", 520, 765, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_CENTER, "", 520, 755, 0);
    reporte.contenido.setFontAndSize(bf, 8);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Fecha:", 425, 740, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date()), 430, 740, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Folio Fiscal:", 425, 730, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Certificado SAT:", 425, 720, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Certificado Emisor:", 425, 710, 0);
    reporte.contenido.setFontAndSize(bf, 6);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            "2a. DE LA CADENA S/N COL. SAN PEDRO TOTOLTEPEC MEXICO CP 50200", 40, 702, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Tel. (01 722) 199-24- 04", 570, 702, 0);

    ord = (Orden) session.get(Orden.class, ord.getIdOrden());
    reporte.contenido.setFontAndSize(bf, 8);
    //************************datos del cliente****************************
    DateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");//YYYY-MM-DD HH:MM:SS
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Cliente: ", 80, 692, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Direccion: ", 80, 682, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Ciudad: ", 80, 672, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "R.F.C.: ", 80, 662, 0);

    //**********************datos de la unidad*****************************
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Marca: ", 80, 650, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Tipo: ", 80, 640, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "No. Serie: ", 80, 630, 0);
    //reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "asegurado: ", 80, 620, 0);

    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Modelo: ", 350, 650, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Placas: ", 350, 640, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Poliza: ", 350, 630, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Km: ", 350, 620, 0);

    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Sinisestro: ", 490, 650, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "INC: ", 490, 640, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Reporte: ", 490, 630, 0);

    if (factura == null) {
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getMarca().getMarcaNombre(), 80, 650,
                0);
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getTipo().getTipoNombre(), 80, 640, 0);
        if (ord.getNoSerie() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getNoSerie(), 80, 630, 0);

        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "" + ord.getModelo(), 350, 650, 0);
        if (ord.getNoPlacas() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getNoPlacas(), 350, 640, 0);
        if (ord.getPoliza() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getPoliza(), 350, 630, 0);

        if (ord.getTipoCliente().compareTo("2") == 0 || ord.getTipoCliente().compareTo("3") == 0) {
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Tercero: ", 80, 620, 0);
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getClientes().getNombre(), 80, 620,
                    0);
        } else {
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Asegurado: ", 80, 620, 0);
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getClientes().getNombre(), 80, 620,
                    0);
        }

        if (ord.getKm() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, ord.getKm(), 365, 620, 0);

        if (ord.getSiniestro() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getSiniestro(), 490, 650, 0);
        if (ord.getInciso() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getInciso(), 490, 640, 0);
        if (ord.getNoReporte() != null)
            reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getNoReporte(), 490, 630, 0);
    }
    reporte.finTexto();

    //agregamos renglones vacios para dejar un espacio
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));

    Font font = new Font(Font.FontFamily.HELVETICA, 6, Font.BOLD);
    Font font_mini = new Font(Font.FontFamily.HELVETICA, 1, Font.BOLD);
    BaseColor cabecera = BaseColor.GRAY;
    BaseColor contenido = BaseColor.WHITE;
    int centro = Element.ALIGN_CENTER;
    int izquierda = Element.ALIGN_LEFT;
    int derecha = Element.ALIGN_RIGHT;

    tabla.addCell(reporte.celda("Cant", font, contenido, centro, 0, 1, Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(reporte.celda("U/Med", font, contenido, centro, 0, 1, Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(reporte.celda("D E S C R I P C I O N", font, contenido, centro, 0, 1,
            Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(
            reporte.celda("Precio c/u", font, contenido, centro, 0, 1, Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(
            reporte.celda("T O T A L", font, contenido, centro, 0, 1, Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(reporte.celda(" ", font_mini, null, centro, 5, 1, Rectangle.BOTTOM));
}

From source file:Compras.Formatos.java

private void cabeceraFac(PDF reporte, BaseFont bf, PdfPTable tabla, Factura fac) {
    reporte.contenido.setLineWidth(0.5f);
    reporte.contenido.setColorFill(new GrayColor(0.9f));
    reporte.contenido.roundRectangle(35, 660, 543, 40, 5);//cuadro cliente
    reporte.contenido.roundRectangle(35, 618, 543, 40, 5);//cuadro unidad

    reporte.contenido.roundRectangle(353, 738, 223, 10, 0);//cuadro fecha
    reporte.contenido.roundRectangle(353, 728, 223, 10, 0);//cuadro F.Fiscal
    reporte.contenido.roundRectangle(353, 718, 223, 10, 0);//cuadro C. SAT
    reporte.contenido.roundRectangle(353, 708, 223, 10, 0);//cuadro C. Emisor

    Configuracion con = (Configuracion) session.get(Configuracion.class, 1);

    reporte.inicioTexto();/*from   w w  w  .  java  2s  .  co  m*/
    reporte.agregaObjeto(reporte.crearImagen("imagenes/factura300115.jpg", 00, -32, 40));
    reporte.contenido.setFontAndSize(bf, 10);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_CENTER, "FACTURA", 520, 765, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_CENTER, fac.getFolio(), 520, 755, 0);
    reporte.contenido.setFontAndSize(bf, 8);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Fecha:", 425, 740, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            fac.getFechaFiscal()/*new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date())*/, 430, 740,
            0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Folio Fiscal:", 425, 730, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, fac.getFFiscal(), 430, 730, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Certificado SAT:", 425, 720, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Certificado Emisor:", 425, 710, 0);
    reporte.contenido.setFontAndSize(bf, 6);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            "2a. DE LA CADENA S/N COL. SAN PEDRO TOTOLTEPEC MEXICO CP 50200", 40, 702, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Tel. (01 722) 199-24- 04", 570, 702, 0);

    reporte.contenido.setFontAndSize(bf, 8);
    //************************datos del cliente****************************
    DateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");//YYYY-MM-DD HH:MM:SS
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Cliente: " + fac.getNombreReceptor(), 80,
            692, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, fac.getNombreReceptor(), 85, 692, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Direccion: ", 80, 682, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT,
            fac.getCalleReceptor() + " " + fac.getNumeroExteriorReceptor() + " Col:" + fac.getColoniaReceptor(),
            85, 682, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Ciudad: ", 80, 672, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT,
            fac.getMunicipioReceptor() + " " + fac.getMunicipioReceptor(), 85, 672, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "R.F.C.: ", 80, 662, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, fac.getRfcReceptor(), 85, 662, 0);

    //**********************datos de la unidad*****************************
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Marca: ", 80, 650, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Tipo: ", 80, 640, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "No. Serie: ", 80, 630, 0);
    //reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "asegurado: ", 80, 620, 0);

    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Modelo: ", 350, 650, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Placas: ", 350, 640, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Poliza: ", 350, 630, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Km: ", 350, 620, 0);

    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Sinisestro: ", 490, 650, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "INC: ", 490, 640, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Reporte: ", 490, 630, 0);

    /*if(factura==null)
    {
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getMarca().getMarcaNombre(), 80, 650, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getTipo().getTipoNombre(), 80, 640, 0);
    if(ord.getNoSerie()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getNoSerie(), 80, 630, 0);
            
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ""+ord.getModelo(), 350, 650, 0);
    if(ord.getNoPlacas()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getNoPlacas(), 350, 640, 0);
    if(ord.getPoliza()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getPoliza(), 350, 630, 0);
            
    if(ord.getTipoCliente().compareTo("2")==0 || ord.getTipoCliente().compareTo("3")==0)
    {
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Tercero: ", 80, 620, 0);
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getClientes().getNombre(), 80, 620, 0);
    }
    else
    {
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, "Asegurado: ", 80, 620, 0);
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getClientes().getNombre(), 80, 620, 0);
    }
            
    if(ord.getKm()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, ord.getKm(), 365, 620, 0);
            
    if(ord.getSiniestro()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getSiniestro(), 490, 650, 0);
    if(ord.getInciso()!=null)
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getInciso(), 490, 640, 0);
    if(ord.getNoReporte()!=null)
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, ord.getNoReporte(), 490, 630, 0);
    }*/
    reporte.finTexto();

    //agregamos renglones vacios para dejar un espacio
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));
    reporte.agregaObjeto(new Paragraph(" "));

    Font font = new Font(Font.FontFamily.HELVETICA, 6, Font.BOLD);
    Font font_mini = new Font(Font.FontFamily.HELVETICA, 1, Font.BOLD);
    BaseColor cabecera = BaseColor.GRAY;
    BaseColor contenido = BaseColor.WHITE;
    int centro = Element.ALIGN_CENTER;
    int izquierda = Element.ALIGN_LEFT;
    int derecha = Element.ALIGN_RIGHT;

    tabla.addCell(reporte.celda("Cant", font, contenido, centro, 0, 1, Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(reporte.celda("U/Med", font, contenido, centro, 0, 1, Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(reporte.celda("D E S C R I P C I O N", font, contenido, centro, 0, 1,
            Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(
            reporte.celda("Precio c/u", font, contenido, centro, 0, 1, Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(
            reporte.celda("T O T A L", font, contenido, centro, 0, 1, Rectangle.RECTANGLE + Rectangle.TOP));
    tabla.addCell(reporte.celda(" ", font_mini, null, centro, 5, 1, Rectangle.BOTTOM));
}

From source file:Compras.reportePedidos.java

public void cabecera(PDF reporte, BaseFont bf, PdfPTable tabla) {
    reporte.contenido.setLineWidth(0.5f);
    reporte.contenido.setColorStroke(new GrayColor(0.2f));
    reporte.contenido.setColorFill(new GrayColor(0.9f));
    reporte.contenido.roundRectangle(30, 700, 210, 45, 5);
    reporte.contenido.roundRectangle(250, 700, 325, 45, 5);
    Session session = HibernateUtil.getSessionFactory().openSession();
    session.beginTransaction().begin();/* ww  w . jav  a 2s.c o m*/
    Configuracion con = (Configuracion) session.get(Configuracion.class, 1);
    reporte.inicioTexto();
    reporte.contenido.setFontAndSize(bf, 14);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, con.getEmpresa(), 30, 585, 0);
    reporte.contenido.setFontAndSize(bf, 8);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, "Reporte de pedidos", 30, 575, 0);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT,
            "Fecha:" + new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date()), 750, 585, 0);
    reporte.finTexto();
    if (session != null)
        if (session.isOpen())
            session.close();

    //agregamos renglones vacios para dejar un espacio
    reporte.agregaObjeto(new Paragraph(" "));

    Font font = new Font(Font.FontFamily.HELVETICA, 6, Font.BOLD);

    BaseColor cabecera = BaseColor.GRAY;
    BaseColor contenido = BaseColor.WHITE;
    int centro = Element.ALIGN_CENTER;
    int izquierda = Element.ALIGN_LEFT;
    int derecha = Element.ALIGN_RIGHT;

    tabla.addCell(reporte.celda("Pedido", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Fecha", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("O. Taller", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Usuario", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Prov.", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Nombre de Proveedor", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Facturar a", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Observaciones", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Autorizo1", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Autorizo2", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("Monto Tot", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
}

From source file:Compras.reportePedidos.java

public void cabeceraReporte(PDF reporte, BaseFont bf, PdfPTable tabla) {
    reporte.contenido.setLineWidth(0.5f);
    reporte.contenido.setColorStroke(new GrayColor(0.2f));
    reporte.contenido.setColorFill(new GrayColor(0.9f));
    reporte.contenido.roundRectangle(30, 700, 210, 45, 5);
    reporte.contenido.roundRectangle(250, 700, 325, 45, 5);
    Session session = HibernateUtil.getSessionFactory().openSession();
    session.beginTransaction().begin();/*www . ja  va  2 s . c  om*/
    Configuracion con = (Configuracion) session.get(Configuracion.class, 1);
    reporte.inicioTexto();
    reporte.contenido.setFontAndSize(bf, 14);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, con.getEmpresa(), 30, 585, 0);
    reporte.contenido.setFontAndSize(bf, 8);
    reporte.contenido.setColorFill(BaseColor.BLACK);
    String cabeza = "Reporte";
    if (l_id_cliente.getText().compareTo("") != 0 && t_datos.getRowCount() > 0) {
        cabeza += " Proveedor: " + t_datos.getValueAt(0, 5).toString();
    }
    if (t_fecha1.getText().compareTo("AAAA-MM-DD") != 0)
        cabeza += " del: " + t_fecha1.getText();
    if (t_fecha2.getText().compareTo("AAAA-MM-DD") != 0)
        cabeza += "  al: " + t_fecha2.getText();
    if (t_orden.getText().compareTo("") != 0)
        cabeza += "  Orden: " + t_orden.getText();
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, cabeza, 30, 575, 0);
    String texto = "";
    int[] lista = t_datos.getSelectedRows();
    if (t_datos.getSelectedRows().length > 0) {
        for (int x = 0; x < t_datos.getSelectedRows().length; x++) {
            texto += t_datos.getValueAt(lista[x], 0) + ", ";
        }
    } else {
        if (t_datos.getRowCount() > 0) {
            for (int x = 0; x < t_datos.getRowCount(); x++) {
                texto += t_datos.getValueAt(x, 0) + ", ";
            }
        }
    }
    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT,
            "Fecha:" + new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date()), 750, 585, 0);
    reporte.finTexto();
    if (session != null)
        if (session.isOpen())
            session.close();

    //agregamos renglones vacios para dejar un espacio
    reporte.agregaObjeto(new Paragraph(" "));

    Font font = new Font(Font.FontFamily.HELVETICA, 7, Font.BOLD);

    BaseColor cabecera = BaseColor.GRAY;
    BaseColor contenido = BaseColor.WHITE;
    int centro = Element.ALIGN_CENTER;
    int izquierda = Element.ALIGN_LEFT;
    int derecha = Element.ALIGN_RIGHT;

    tabla.addCell(
            reporte.celda("MATERIAL PEDIDOS:" + texto, font, cabecera, centro, 8, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("PEDIDO", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("NP", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("DESCRIPCIN", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("CANT", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("MED", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("PRECIO", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("ORDEN", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
    tabla.addCell(reporte.celda("PARTIDA", font, cabecera, centro, 0, 1, Rectangle.RECTANGLE));
}

From source file:Contabilidad.RCuentas.java

public void cabecera(PDF reporte, BaseFont bf, PdfPTable tabla, String titulo1, int op) {
    Session session = HibernateUtil.getSessionFactory().openSession();
    try {/*from  ww w  .  j  av a2  s .c o m*/
        reporte.contenido.setLineWidth(0.5f);
        reporte.contenido.setColorStroke(new GrayColor(0.2f));
        reporte.contenido.setColorFill(new GrayColor(0.9f));

        Configuracion con = (Configuracion) session.get(Configuracion.class, 1);
        reporte.inicioTexto();
        reporte.contenido.setFontAndSize(bf, 14);
        reporte.contenido.setColorFill(BaseColor.BLACK);
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, con.getEmpresa(), 35, 570, 0);
        reporte.contenido.setFontAndSize(bf, 8);
        reporte.contenido.setColorFill(BaseColor.BLACK);
        String titulo = titulo1;
        if (op == 1) {
            if (t_fecha3.getText().compareTo("AAAA-MM-DD") != 0)
                titulo += " apartir del " + t_fecha3.getText();

            if (t_fecha4.getText().compareTo("AAAA-MM-DD") != 0)
                titulo += " al " + t_fecha4.getText();
        }
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_LEFT, titulo, 35, 560, 0);
        reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT,
                "Fecha:" + new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date()), 750, 570, 0);
        if (op == 1) {
            if (valores != null) {
                String val = "Estatus: ";
                if (lista.getSelectedValues().length > 0) {
                    for (int m = 0; m < valores.length; m++) {
                        val += valores[m].toString() + ", ";
                    }
                    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, val, 750, 560, 0);
                } else {
                    for (int mm = 0; mm < lista.getModel().getSize(); mm++) {
                        val += lista.getModel().getElementAt(mm).toString() + ", ";
                    }
                    reporte.contenido.showTextAligned(PdfContentByte.ALIGN_RIGHT, val, 750, 560, 0);
                }
            }
        }

        reporte.finTexto();
        //agregamos renglones vacios para dejar un espacio
        reporte.agregaObjeto(new Paragraph(" "));

        Font font = new Font(Font.FontFamily.HELVETICA, 6, Font.BOLD);

        BaseColor cabecera = BaseColor.GRAY;
        BaseColor contenido = BaseColor.WHITE;
        int centro = Element.ALIGN_CENTER;
        int izquierda = Element.ALIGN_LEFT;
        int derecha = Element.ALIGN_RIGHT;
        if (op == 1) {
            for (int a = 0; a < tabla.getNumberOfColumns(); a++) {
                tabla.addCell(reporte.celda(t_datos.getColumnName(a), font, cabecera, centro, 0, 1,
                        Rectangle.RECTANGLE));
            }
        }
    } catch (Exception e) {
        System.out.println(e);
    }
    if (session != null)
        if (session.isOpen())
            session.close();
}

From source file:control.ReportHandler.java

public void writeTotalEnrolledReport() throws DocumentException, FileNotFoundException {
    Document doc = new Document();

    Calendar c = Calendar.getInstance();
    String file = "" + c.get(Calendar.DAY_OF_MONTH) + "_" + (c.get(Calendar.MONTH) + 1) + "_"
            + c.get(Calendar.YEAR) + "_T_" + c.get(Calendar.HOUR_OF_DAY) + "_" + c.get(Calendar.MINUTE)
            + ".pdf";
    PdfWriter.getInstance(doc, new FileOutputStream(new File(his.His.reportEnrolledDir + "/" + file)));

    doc.open();/*  ww  w. j  a v a2 s . com*/

    PdfPTable totalTable = new PdfPTable(1);
    totalTable.setSpacingAfter(10f);
    PdfPTable tableP = new PdfPTable(4);
    PdfPTable tableGs = new PdfPTable(3);

    PdfPCell tableGsnameCell = new PdfPCell(new Phrase("Navn", columnFont));
    tableGsnameCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell tableGsbirthCell = new PdfPCell(new Phrase("Fdselsdag", columnFont));
    tableGsbirthCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell tableGsPersonCell = new PdfPCell(new Phrase("Person navn", columnFont));
    tableGsPersonCell.setBackgroundColor(BaseColor.BLACK);

    tableGs.addCell(tableGsnameCell);
    tableGs.addCell(tableGsbirthCell);
    tableGs.addCell(tableGsPersonCell);

    PdfPCell tablePnameCell = new PdfPCell(new Phrase("Navn", columnFont));
    tablePnameCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell tablePaddressCell = new PdfPCell(new Phrase("Adresse", columnFont));
    tablePaddressCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell tablePenrollerCell = new PdfPCell(new Phrase("Indskriver", columnFont));
    tablePenrollerCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell tablePtotalGuestsCell = new PdfPCell(new Phrase("Total gster", columnFont));
    tablePtotalGuestsCell.setBackgroundColor(BaseColor.BLACK);

    tableP.addCell(tablePnameCell);
    tableP.addCell(tablePaddressCell);
    tableP.addCell(tablePenrollerCell);
    tableP.addCell(tablePtotalGuestsCell);

    HashSet<Enrollment> enA = enR.getEnrollments();
    int totalCounter = 0;
    int totalCounter_NoHoene = 0;

    Iterator<Enrollment> enI = enA.iterator();

    while (enI.hasNext()) {
        totalCounter++;
        Enrollment en = enI.next();
        Person enP = en.getEnrolledPerson();
        if (!enP.isHoene()) {
            totalCounter_NoHoene++;
        }
        String nameP = enP.getFirstname() + " " + enP.getMiddlename() + " " + enP.getLastname();
        String addressP = enP.getAddress();

        User enU = en.getEnrolledByUser();
        String nameU = enU.getFirstname() + " " + enU.getMiddlename() + " " + enU.getLastname();

        Set<Guest> enGs = en.getGuests();
        String totalGs = String.valueOf(enGs.size());
        totalCounter += enGs.size();
        totalCounter_NoHoene += enGs.size();

        PdfPCell namePCell = new PdfPCell(new Phrase(nameP));
        PdfPCell birthPCell = new PdfPCell(new Phrase(addressP));

        PdfPCell nameUCell = new PdfPCell(new Phrase(nameU));

        PdfPCell totalGsCell = new PdfPCell(new Phrase(totalGs));

        tableP.addCell(namePCell);
        tableP.addCell(birthPCell);
        tableP.addCell(nameUCell);
        tableP.addCell(totalGsCell);

        Iterator<Guest> enGsI = enGs.iterator();

        while (enGsI.hasNext()) {
            Guest g = enGsI.next();

            String nameG = g.getFirstname() + " " + g.getMiddlename() + " " + g.getLastname();

            PdfPCell nameGCell = new PdfPCell(new Phrase(nameG));
            PdfPCell birthGCell = new PdfPCell(new Phrase(g.getBirthdayDate()));
            PdfPCell personGCell = new PdfPCell(new Phrase(nameP));

            tableGs.addCell(nameGCell);
            tableGs.addCell(birthGCell);
            tableGs.addCell(personGCell);
        }
    }

    PdfPCell totalCell = new PdfPCell(new Phrase("Total indskrevne: " + totalCounter));
    totalTable.addCell(totalCell);

    PdfPCell totalNoHoeneCell = new PdfPCell(
            new Phrase("Total indskrevne uden hner: " + totalCounter_NoHoene));
    totalTable.addCell(totalNoHoeneCell);

    doc.add(new Phrase("Personer"));
    doc.add(tableP);
    doc.add(totalTable);
    doc.add(new Phrase("Gster"));
    doc.add(tableGs);

    doc.close();

}

From source file:control.ReportHandler.java

public void writeTotalPersonReport() throws DocumentException, FileNotFoundException {
    Document doc = new Document(PageSize.A4.rotate());

    Calendar c = Calendar.getInstance();
    String file = "" + c.get(Calendar.DAY_OF_MONTH) + "_" + (c.get(Calendar.MONTH) + 1) + "_"
            + c.get(Calendar.YEAR) + "_T_" + c.get(Calendar.HOUR_OF_DAY) + "_" + c.get(Calendar.MINUTE)
            + ".pdf";
    PdfWriter.getInstance(doc, new FileOutputStream(new File(his.His.reportPersonsDir + "/" + file)));
    doc.open();//from w w w .  ja v a2  s. co m

    PdfPTable table = new PdfPTable(7);
    table.setWidths(new float[] { 10f, 10f, 10f, 10f, 5f, 5f, 5f });
    PdfPTable totalTable = new PdfPTable(1);

    PdfPCell nameCell = new PdfPCell(new Phrase("Navn", columnFont));
    nameCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell addressCell = new PdfPCell(new Phrase("Adresse", columnFont));
    addressCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell birthCell = new PdfPCell(new Phrase("Fdselsdag", columnFont));
    birthCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell createdCell = new PdfPCell(new Phrase("Oprettelsesdato", columnFont));
    createdCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell hoeneCell = new PdfPCell(new Phrase("Hne", columnFont));
    hoeneCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell reserveCell = new PdfPCell(new Phrase("Reserve", columnFont));
    reserveCell.setBackgroundColor(BaseColor.BLACK);
    PdfPCell oneOneCell = new PdfPCell(new Phrase("1-1", columnFont));
    oneOneCell.setBackgroundColor(BaseColor.BLACK);

    table.addCell(nameCell);
    table.addCell(addressCell);
    table.addCell(birthCell);
    table.addCell(createdCell);
    table.addCell(hoeneCell);
    table.addCell(reserveCell);
    table.addCell(oneOneCell);

    HashSet<Person> persons = peR.getPersons();
    Iterator<Person> personsI = persons.iterator();

    PdfPCell totalCell = new PdfPCell(new Phrase("Total: " + persons.size()));
    totalTable.addCell(totalCell);

    while (personsI.hasNext()) {
        Person p = personsI.next();

        String name = p.getFirstname() + " " + p.getMiddlename() + " " + p.getLastname();
        String hoene = "Nej";
        if (p.isHoene()) {
            hoene = "Ja";
        }
        String reserve = "Nej";
        if (p.isReserve()) {
            reserve = "Ja";
        }
        String oneOne = "Nej";
        if (p.isOneOne()) {
            oneOne = "Ja";
        }

        PdfPCell nameC = new PdfPCell(new Phrase(name));
        PdfPCell addressC = new PdfPCell(new Phrase(p.getAddress()));
        PdfPCell birthC = new PdfPCell(new Phrase(p.getBirthdayDate()));
        PdfPCell createdC = new PdfPCell(new Phrase(p.getCreationDate()));
        PdfPCell hoeneC = new PdfPCell(new Phrase(hoene));
        PdfPCell reserveC = new PdfPCell(new Phrase(reserve));
        PdfPCell oneOneC = new PdfPCell(new Phrase(oneOne));

        table.addCell(nameC);
        table.addCell(addressC);
        table.addCell(birthC);
        table.addCell(createdC);
        table.addCell(hoeneC);
        table.addCell(reserveC);
        table.addCell(oneOneC);
    }

    doc.add(new Phrase("Personer"));
    doc.add(table);
    doc.add(totalTable);

    doc.close();
}