Example usage for com.itextpdf.text Font setFamily

List of usage examples for com.itextpdf.text Font setFamily

Introduction

In this page you can find the example usage for com.itextpdf.text Font setFamily.

Prototype

public void setFamily(final String family) 

Source Link

Document

Sets the family using a String ("Courier", "Helvetica", "Times New Roman", "Symbol" or "ZapfDingbats").

Usage

From source file:biblioteca.reportes.PdfCreator.java

License:Open Source License

/**
 * createPdf es una funcin estatica que funciona como plantilla para generar
 * reportes dinamicos, segn la necesidad del usuario.
 * @param path La direccin del archivo donde se guardar el pdf
 * @param titulo El Ttulo que llevar el pdf
 * @param encabezado Un texto que se mostrar bajo el ttulo
 * @param tabla La tabla de resultados que mostrar el pdf
 *//*  w w  w .j  av a  2  s  .  co m*/
static public void createPdf(String path, String titulo, String encabezado, PdfPTable tabla) {
    Document document = new Document();
    // step 2
    try {
        PdfWriter.getInstance(document, new FileOutputStream(path));
        Font myFontTitle = new Font();
        myFontTitle.setFamily("Arial");
        myFontTitle.setStyle(Font.BOLD);
        myFontTitle.setSize(14);
        Font Univallef = new Font();
        Univallef.setColor(BaseColor.RED);
        Univallef.setFamily("Arial");
        Univallef.setSize(18);
        Image header = Image
                .getInstance(PdfCreator.class.getResource("/biblioteca/gui/resources/minilogo.png"));
        header.setAlignment(Image.ALIGN_CENTER);
        header.scaleToFit(50, 75);
        Paragraph Univalle = new Paragraph("Universidad del Valle", Univallef);
        Univalle.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph pTitulo = new Paragraph(titulo, myFontTitle);
        pTitulo.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph biblioteca = new Paragraph("Biblioteca Digital EISC", myFontTitle);
        biblioteca.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph developers = new Paragraph(
                "Desarrollado por:\n Mara Cristina Bustos \n Alejandro Valds Villada", myFontTitle);
        developers.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph Fecha = new Paragraph("Fecha y Hora del Reporte: " + fecha, myFontTitle);
        document.open();
        // step 4
        document.add(header);
        document.add(new Paragraph("\r\n"));
        document.add(Univalle);
        document.add(new Paragraph("\r\n"));
        document.add(pTitulo);
        document.add(new Paragraph("\r\n"));
        document.add(biblioteca);
        document.add(new Paragraph("\r\n"));
        document.add(developers);
        document.add(new Paragraph("\r\n"));
        document.add(Fecha);
        document.add(new Paragraph("\r\n"));
        document.add(new Paragraph(encabezado + (tabla.getRows().size() - 1)));
        document.add(new Paragraph("\r\n"));
        document.add(tabla);
        // step 5
        document.close();
    } catch (DocumentException de) {
        System.err.println(de);
    } catch (IOException ioex) {
        System.err.println(ioex);
    }
}

From source file:biblioteca.reportes.PdfCreator.java

License:Open Source License

static public void createArrayListPdf(String path, String titulo, String encabezado,
        ArrayList<PdfPTable> tablas) {
    Document document = new Document();
    ArrayList<String> NombreTablas = new DaoReportesEstadisticas().getNombreTablas();
    //step 2/*from   ww w . ja v a 2s.  co  m*/
    try {
        PdfWriter.getInstance(document, new FileOutputStream(path));
        Font myFontTitle = new Font();
        myFontTitle.setFamily("Arial");
        myFontTitle.setStyle(Font.BOLD);
        myFontTitle.setSize(12);
        Font Univallef = new Font();
        Univallef.setColor(BaseColor.RED);
        Univallef.setFamily("Arial");
        Univallef.setSize(18);
        Image header = Image
                .getInstance(PdfCreator.class.getResource("/biblioteca/gui/resources/minilogo.png"));
        header.setAlignment(Image.ALIGN_CENTER);
        header.scaleToFit(50, 75);
        Paragraph Univalle = new Paragraph("Universidad del Valle", Univallef);
        Univalle.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph pTitulo = new Paragraph(titulo, myFontTitle);
        pTitulo.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph biblioteca = new Paragraph("Biblioteca Digital EISC", myFontTitle);
        biblioteca.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph developers = new Paragraph(
                "Desarrollado por:\n Mara Cristina Bustos \n Alejandro Valds Villada", myFontTitle);
        developers.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph Fecha = new Paragraph("Fecha y Hora de Reporte: " + fecha, myFontTitle);
        document.open();
        // step 4
        document.add(header);
        document.add(new Paragraph("\r\n"));
        document.add(Univalle);
        document.add(new Paragraph("\r\n"));
        document.add(pTitulo);
        document.add(new Paragraph("\r\n"));
        document.add(biblioteca);
        document.add(new Paragraph("\r\n"));
        document.add(developers);
        document.add(new Paragraph("\r\n"));
        document.add(Fecha);
        document.add(new Paragraph("\r\n"));
        for (int i = 0; i < tablas.size(); i++) {
            document.add(new Paragraph(NombreTablas.get(i)));
            document.add(new Paragraph(encabezado + (tablas.get(i).getRows().size() - 1)));
            document.add(new Paragraph("\r\n"));
            document.add(tablas.get(i));
        }
        // step 5
        document.close();
    } catch (DocumentException de) {
        System.err.println(de);
    } catch (IOException ioex) {
        System.err.println(ioex);
    }
}

From source file:biblioteca.reportes.PdfCreator.java

License:Open Source License

static public void createDinamicPdf(String path, String titulo, String encabezado,
        ArrayList<Element> contenido) {
    Document document = new Document();
    //step 2//from ww  w  .  ja  v a2  s.  c o  m
    try {
        PdfWriter.getInstance(document, new FileOutputStream(path));
        Font myFontTitle = new Font();
        myFontTitle.setFamily("Arial");
        myFontTitle.setStyle(Font.BOLD);
        myFontTitle.setSize(12);
        Font Univallef = new Font();
        Univallef.setColor(BaseColor.RED);
        Univallef.setFamily("Arial");
        Univallef.setSize(18);
        Image header = Image
                .getInstance(PdfCreator.class.getResource("/biblioteca/gui/resources/minilogo.png"));
        header.setAlignment(Image.ALIGN_CENTER);
        header.scaleToFit(50, 75);
        Paragraph Univalle = new Paragraph("Universidad del Valle", Univallef);
        Univalle.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph pTitulo = new Paragraph(titulo, myFontTitle);
        pTitulo.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph biblioteca = new Paragraph("Biblioteca Digital EISC", myFontTitle);
        biblioteca.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph developers = new Paragraph(
                "Desarrollado por:\n Mara Cristina Bustos \n Alejandro Valds Villada", myFontTitle);
        developers.setAlignment(Paragraph.ALIGN_CENTER);
        Paragraph Fecha = new Paragraph("Fecha y Hora de Reporte: " + fecha, myFontTitle);
        //Paragraph Introduccion = new Paragraph("Reporte de usuarios registrados");
        document.open();
        // step 4
        document.add(header);
        document.add(new Paragraph("\r\n"));
        document.add(Univalle);
        document.add(new Paragraph("\r\n"));
        document.add(pTitulo);
        document.add(new Paragraph("\r\n"));
        document.add(biblioteca);
        document.add(new Paragraph("\r\n"));
        document.add(developers);
        document.add(new Paragraph("\r\n"));
        document.add(Fecha);
        document.add(new Paragraph("\r\n"));
        // document.add(Introduccion);
        document.add(new Paragraph("\r\n"));
        for (int i = 0; i < contenido.size(); i++) {
            document.add(contenido.get(i).getClass().equals(new PdfPTable(2).getClass())
                    ? (PdfPTable) contenido.get(i)
                    : contenido.get(i));
        }
        // step 5
        document.close();
    } catch (DocumentException de) {
        System.err.println(de);
    } catch (IOException ioex) {
        System.err.println(ioex);
    }
}

From source file:BusinessLogic.Controller.HandleCertificate.java

public void downloadCertificate(ContractDAO contrDAO, CertificateDAO certificateDAO, UserDAO usDAO,
        HttpServletResponse response, int idUser, int option) throws DocumentException, IOException {
    User user = usDAO.searchByPkID(idUser);
    List<Certificate> certificateObject = certificateDAO.searchUserAproved();
    List<Certificate> certificateReturn = new ArrayList<Certificate>();
    if (certificateObject != null) {
        certificateReturn.clear();//from  w w  w .j  ava2  s. com
        for (int i = 0; i < certificateObject.size(); i++) {
            if (certificateObject.get(i).getFkuserID().getPkID().equals(user.getPkID())) {
                certificateReturn.add(certificateObject.get(i));
            }
        }
    }
    Contract contractObject = contrDAO.getUserContract(new User(user.getPkID()));
    Certificate cert = certificateReturn.get(option);
    Document document = new Document();
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    PdfWriter.getInstance(document, baos);
    document.open();
    Font fuente = new Font();
    fuente.setStyle(Font.BOLD);
    fuente.setColor(BaseColor.BLACK);
    fuente.setFamily(Font.FontFamily.TIMES_ROMAN.toString());
    fuente.setSize(15);
    Paragraph header = new Paragraph("\n\n\n\n\nEL DEPARTAMENTO DE GESTION HUMANA\n"
            + "DE TALENTO-HUMANO LTDA\n\n\n\n\n" + "CERTIFICA QUE:\n\n\n\n\n", fuente);
    header.setAlignment(Element.ALIGN_CENTER);
    Calendar fecha = new GregorianCalendar();
    int annio = fecha.get(Calendar.YEAR);
    int mes = fecha.get(Calendar.MONTH) + 1;
    int dia = fecha.get(Calendar.DAY_OF_MONTH);
    Paragraph endtext = new Paragraph("\n\nSe expide la presente certificacion a solicitud"
            + " del interesado a la fecha de : " + dia + "/" + mes + "/" + annio
            + "\n\n\nCordialmente\n\n\nEdwin Alexander Bohorquez\nGERENTE GENERAL DE TALENTO-HUMANO LTDA");
    endtext.setAlignment(Element.ALIGN_LEFT);
    String typeCertificate = "";
    if (cert.getType().toLowerCase().equals("laboral")) {
        typeCertificate = "Laboral";
        document.add(header);
        List<String> positionlist = new ArrayList<String>();
        for (Position cargo : contractObject.getPositionSet()) {
            positionlist.add(cargo.getName());
        }
        Paragraph body = new Paragraph(user.getName().toUpperCase() + " " + user.getLastname().toUpperCase()
                + " con cedula de ciudadania No." + user.getIdentifyCard() + ", trabaja en esta empresa"
                + " desde " + contractObject.getStartDate() + ", desempeandose actualmente como "
                + positionlist + " con una asignacion mensual de $" + contractObject.getSalary()
                + ".Su contrato de trabajo es a termino " + contractObject.getType() + ".");
        body.setAlignment(Element.ALIGN_JUSTIFIED_ALL);
        document.add(body);
        document.add(endtext);
    } else if (cert.getType().toLowerCase().equals("nmina")) {
        typeCertificate = "Nomina";
        Paragraph Payroll_header = new Paragraph("DEPARTAMENTO DE CONTABILIDAD\n" + "TALENTO-HUMANO LTDA\n\n"
                + "LIQUIDACION DE NOMINA:\n" + "Nombre del empleado : " + user.getName() + " "
                + user.getLastname() + "\n" + "Cedula : " + user.getIdentifyCard() + "\n\n", fuente);
        Payroll_header.setAlignment(Element.ALIGN_CENTER);
        document.add(Payroll_header);
        double commissions = 10000;
        double extra_hours = 50000;
        double transportation_aid = 63600;
        double totalAccrued = contractObject.getSalary() + commissions + extra_hours + transportation_aid;

        PdfPTable basetable = new PdfPTable(2);
        PdfPCell headertable = new PdfPCell(new Paragraph("Tabla Base", fuente));
        headertable.setColspan(2);
        basetable.addCell(headertable);
        PdfPCell cell1 = new PdfPCell(new Paragraph("Salario Basico : "));
        PdfPCell cell2 = new PdfPCell(new Paragraph(String.valueOf(contractObject.getSalary())));
        PdfPCell cell3 = new PdfPCell(new Paragraph("Comisiones : "));
        PdfPCell cell4 = new PdfPCell(new Paragraph(String.valueOf(commissions)));
        PdfPCell cell5 = new PdfPCell(new Paragraph("Horas Extras : "));
        PdfPCell cell6 = new PdfPCell(new Paragraph(String.valueOf(extra_hours)));
        PdfPCell cell7 = new PdfPCell(new Paragraph("Auxilio de transporte : "));
        PdfPCell cell8 = new PdfPCell(new Paragraph(String.valueOf(transportation_aid)));
        PdfPCell ce9 = new PdfPCell(new Paragraph("Total Devengado : "));
        PdfPCell ce10 = new PdfPCell(new Paragraph(" $ " + String.valueOf(totalAccrued)));
        basetable.setWidthPercentage(100F);
        basetable.setHorizontalAlignment(Element.ALIGN_CENTER);
        basetable.addCell(cell1);
        basetable.addCell(cell2);
        basetable.addCell(cell3);
        basetable.addCell(cell4);
        basetable.addCell(cell5);
        basetable.addCell(cell6);
        basetable.addCell(cell7);
        basetable.addCell(cell8);
        basetable.addCell(ce9);
        basetable.addCell(ce10);
        document.add(basetable);

        PdfPTable tableliquidation = new PdfPTable(2);
        PdfPCell title = new PdfPCell(
                new Paragraph("Liquidacion. Deducciones de nomina(Conceptos a cargo del empleado) ", fuente));
        title.setColspan(2);
        tableliquidation.addCell(title);
        PdfPCell cell9 = new PdfPCell(new Paragraph("Salud (4%) : "));
        PdfPCell cell10 = new PdfPCell(new Paragraph(String.valueOf(contractObject.getSalary() * 0.04)));
        PdfPCell cell11 = new PdfPCell(new Paragraph("Pension (4%) : "));
        PdfPCell cell12 = new PdfPCell(new Paragraph(String.valueOf(contractObject.getSalary() * 0.04)));

        tableliquidation.setWidthPercentage(100F);
        tableliquidation.setHorizontalAlignment(Element.ALIGN_CENTER);
        tableliquidation.addCell(cell9);
        tableliquidation.addCell(cell10);
        tableliquidation.addCell(cell11);
        tableliquidation.addCell(cell12);
        document.add(tableliquidation);

        PdfPTable tablesocialSecurity = new PdfPTable(2);
        PdfPCell title2 = new PdfPCell(new Paragraph("Seguridad Social a cargo del empleador", fuente));
        title2.setColspan(2);
        tablesocialSecurity.addCell(title2);
        PdfPCell cell13 = new PdfPCell(new Paragraph("Salud (8.5%) : "));
        PdfPCell cell14 = new PdfPCell(new Paragraph(String.valueOf(contractObject.getSalary() * 0.085)));
        PdfPCell cell15 = new PdfPCell(new Paragraph("Pension (12%) : "));
        PdfPCell cell16 = new PdfPCell(new Paragraph(String.valueOf(contractObject.getSalary() * 0.12)));
        PdfPCell cell17 = new PdfPCell(new Paragraph("A.R.P : "));
        PdfPCell cell18 = new PdfPCell(new Paragraph(String.valueOf(contractObject.getSalary() * 0.00522)));

        tablesocialSecurity.setWidthPercentage(100F);
        tablesocialSecurity.setHorizontalAlignment(Element.ALIGN_CENTER);
        tablesocialSecurity.addCell(cell13);
        tablesocialSecurity.addCell(cell14);
        tablesocialSecurity.addCell(cell15);
        tablesocialSecurity.addCell(cell16);
        tablesocialSecurity.addCell(cell17);
        tablesocialSecurity.addCell(cell18);
        document.add(tablesocialSecurity);

        PdfPTable social_benefits = new PdfPTable(2);
        PdfPCell title3 = new PdfPCell(new Paragraph("Prestaciones Sociales", fuente));
        title3.setColspan(2);
        social_benefits.addCell(title3);
        PdfPCell cell19 = new PdfPCell(new Paragraph("Prima de servicios : "));
        PdfPCell cell20 = new PdfPCell(new Paragraph(String.valueOf(totalAccrued * 0.0833)));
        PdfPCell cell21 = new PdfPCell(new Paragraph("Cesantias : "));
        PdfPCell cell22 = new PdfPCell(new Paragraph(String.valueOf(totalAccrued * 0.0833)));
        PdfPCell cell23 = new PdfPCell(new Paragraph("Intereses sobre las cesantias : "));
        PdfPCell cell24 = new PdfPCell(new Paragraph(String.valueOf(totalAccrued * 0.0833 * 0.12)));
        PdfPCell cell25 = new PdfPCell(new Paragraph("Vacaciones : "));
        PdfPCell cell26 = new PdfPCell(new Paragraph(String.valueOf(contractObject.getSalary() * 0.0417)));
        social_benefits.setWidthPercentage(100F);
        social_benefits.setHorizontalAlignment(Element.ALIGN_CENTER);
        social_benefits.addCell(cell19);
        social_benefits.addCell(cell20);
        social_benefits.addCell(cell21);
        social_benefits.addCell(cell22);
        social_benefits.addCell(cell23);
        social_benefits.addCell(cell24);
        social_benefits.addCell(cell25);
        social_benefits.addCell(cell26);
        document.add(social_benefits);

        PdfPTable fiscal_contributions = new PdfPTable(2);
        PdfPCell title4 = new PdfPCell(new Paragraph("Aportes Parafiscales", fuente));
        title4.setColspan(2);
        fiscal_contributions.addCell(title4);
        PdfPCell cell27 = new PdfPCell(new Paragraph("Cajas de compensacion familiar (4%) : "));
        PdfPCell cell28 = new PdfPCell(
                new Paragraph(String.valueOf((contractObject.getSalary() + extra_hours + commissions) * 0.04)));
        PdfPCell cell29 = new PdfPCell(new Paragraph("I.CB.F (3%) : "));
        PdfPCell cell30 = new PdfPCell(
                new Paragraph(String.valueOf((contractObject.getSalary() + extra_hours + commissions) * 0.03)));
        PdfPCell cell31 = new PdfPCell(new Paragraph("Sena (2%) : "));
        PdfPCell cell32 = new PdfPCell(
                new Paragraph(String.valueOf((contractObject.getSalary() + extra_hours + commissions) * 0.02)));
        fiscal_contributions.setWidthPercentage(100F);
        fiscal_contributions.setHorizontalAlignment(Element.ALIGN_CENTER);
        fiscal_contributions.addCell(cell27);
        fiscal_contributions.addCell(cell28);
        fiscal_contributions.addCell(cell29);
        fiscal_contributions.addCell(cell30);
        fiscal_contributions.addCell(cell31);
        fiscal_contributions.addCell(cell32);
        document.add(fiscal_contributions);

        PdfPTable totalValue = new PdfPTable(2);
        PdfPCell title5 = new PdfPCell(new Paragraph("Neto a pagar al empleado", fuente));
        title5.setColspan(2);
        totalValue.addCell(title5);
        PdfPCell cell33 = new PdfPCell(new Paragraph(" Total devengado - salud - pension"));
        cell33.setColspan(2);
        PdfPCell cell34 = new PdfPCell(new Paragraph(
                " $ " + String.valueOf(totalAccrued - contractObject.getSalary() * 0.08), fuente));
        cell34.setColspan(2);
        totalValue.setWidthPercentage(100F);
        totalValue.setHorizontalAlignment(Element.ALIGN_CENTER);
        totalValue.addCell(cell33);
        totalValue.addCell(cell34);
        document.add(totalValue);

        document.add(endtext);
    } else if (cert.getType().toLowerCase().equals("salud")) {
        typeCertificate = "Salud";
        document.add(header);
        Paragraph body = new Paragraph(user.getName().toUpperCase() + " " + user.getLastname().toUpperCase()
                + " con cedula de ciudadania No." + user.getIdentifyCard() + ", esta afiliado desde "
                + contractObject.getStartHealthDate() + " a la empresa de salud "
                + contractObject.getHealthEnterprise() + ".");
        body.setAlignment(Element.ALIGN_JUSTIFIED_ALL);
        document.add(body);
        document.add(endtext);
    } else if (cert.getType().toLowerCase().equals("pensin")) {
        typeCertificate = "Pension";
        document.add(header);
        Paragraph body = new Paragraph(user.getName().toUpperCase() + " " + user.getLastname().toUpperCase()
                + " con cedula de ciudadania No." + user.getIdentifyCard()
                + ", esta afiliado a la empresa de pension " + contractObject.getPensionEnterprise()
                + ".La fecha de inicio de pension es " + contractObject.getStartPensionDate() + ".");
        body.setAlignment(Element.ALIGN_JUSTIFIED_ALL);
        document.add(body);
        document.add(endtext);
    }
    document.close();
    response.setHeader("Expires", "0");
    response.setHeader("Cache-Control", "must-revalidate, post-check=0, pre-check=0");
    response.setHeader("Pragma", "public");
    response.setContentType("application/octet-strem");
    File f = new File("Certificado" + typeCertificate + ".pdf");
    response.setHeader("Content-Disposition", "attachment;filename=" + f.getName());
    response.setContentLength(baos.size());
    System.out.println("Hasta aca crea el pdf bien");
    OutputStream os = response.getOutputStream();
    System.out.println("Ac'a ya deberia haber descargado");
    baos.writeTo(os);
    os.flush();
    os.close();
}

From source file:com.javaPdf.app.GeneradorContrato.java

public static void writePDF() {

    //        Document document = new Document() ;
    Document document = new Document(PageSize.LETTER, 65, 65, 60, 60);

    try {/*from  www  . jav  a  2 s . co  m*/

        /*Font que usaran las palabras destacadas con NEGRITA*/

        Font font_negrita = FontFactory.getFont("Times New Roman");
        font_negrita.setSize(11);
        font_negrita.setStyle(Font.BOLD);
        font_negrita.setFamily(Font.FontFamily.TIMES_ROMAN.toString());

        Scanner sc = new Scanner(System.in);

        Calendar calendarioGragoriano = new GregorianCalendar(12, Calendar.MONTH, 2017);

        /*Inicializar un objeto de tipo Calendar con un metodo de clase (Static) el cual
        obtiene una onstancia de la clase puede ser mas sencillo*/
        Calendar calendario = Calendar.getInstance();

        System.out.println(Calendar.DAY_OF_MONTH);
        System.out.println(calendario.getTime());

        /*Datos ingresados por teclado*/

        System.out.println("Ingrese el NOMBRE DEL EMPLEADOR: ");

        Chunk nombreEmpleador = new Chunk("[EMPLEADOR]", font_negrita);

        System.out.println("Ingrese el RUT DEL EMPLEADOR: ");

        Chunk rutEmpleador = new Chunk("xx.xxx.xxx-x", font_negrita);
        System.out.println("Ingrese el NOMBRE DEL TRABAJADOR: ");
        //            Chunk nombreTrabajador = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk nombreTrabajador = new Chunk(sc.nextLine(), font_negrita);

        System.out.println("Ingrese el RUT DEL TRABAJADOR: ");
        //            Chunk rutTrabajador = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk rutTrabajador = new Chunk(sc.nextLine(), font_negrita);

        System.out.println("Ingrese la DIRECCIN DEL TRABAJADOR: ");
        //            Chunk direccionTrabajador = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk direccionTrabajador = new Chunk(sc.nextLine(), font_negrita);

        System.out.println("Ingrese la COMUNA DEL TRABAJADOR: ");
        //            Chunk comunaTrabajador = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk comunaTrabajador = new Chunk(sc.nextLine(), font_negrita);

        System.out.println("Ingrese la FECHA DE NACIMIENTO DEL TRABAJADOR: ");
        //            Chunk fechaNacimientoTrabajador = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk fechaNacimientoTrabajador = new Chunk(sc.nextLine(), font_negrita);

        System.out.println("Ingrese el SUELDO QUE TENDRA EL TRABAJADOR: ");
        //            Chunk sueldoTrabajador = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk sueldoTrabajador = new Chunk(sc.nextLine(), font_negrita);

        System.out.println("Ingrese la FUNCION QUE TENDRA EL TRABAJADOR: ");
        //            Chunk funcionTrabajador = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk funcionTrabajador = new Chunk(sc.nextLine().toUpperCase(), font_negrita);

        System.out.println("Ingrese la FECHA DE INICIO DE CONTRATO DEL TRABAJADOR: ");
        //            Chunk fechaInicioContrato = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk fechaInicioContrato = new Chunk(sc.nextLine(), font_negrita);

        System.out.println("Ingrese la FECHA DE TERMINO DE CONTRATO DEL TRABAJADOR: ");
        //            Chunk fechaTerminoContrato = new Chunk ("DATO DE PRUEBA", font_negrita);
        Chunk fechaTerminoContrato = new Chunk(sc.nextLine(), font_negrita);

        /*Clausulas*/
        Chunk primero = new Chunk(TEXTOPRIMERO, font_negrita);
        Chunk segundo = new Chunk(TEXTOSEGUNDO, font_negrita);
        Chunk tercero = new Chunk(TEXTOTERCERO, font_negrita);
        Chunk cuarto = new Chunk(TEXTOCUARTO, font_negrita);
        Chunk quinto = new Chunk(TEXTOQUINTO, font_negrita);
        Chunk sexto = new Chunk(TEXTOSEXTO, font_negrita);
        Chunk septimo = new Chunk(TEXTOSEPTIMO, font_negrita);
        Chunk octavo = new Chunk(TEXTOOCTAVO, font_negrita);
        Chunk noveno = new Chunk(TEXTONOVENO, font_negrita);
        //            Chunk afp = new Chunk (TEXTONOVENO2, font_negrita);
        //            Chunk salud = new Chunk (TEXTONOVENO4, font_negrita);
        //            Chunk cesantia = new Chunk (TEXTONOVENO6, font_negrita);
        Chunk decimo = new Chunk(TEXTODECIMO, font_negrita);
        Chunk undecimo = new Chunk(TEXTOUNDECIMO, font_negrita);

        //            Calendar calendario = Calendar.getInstance();
        SimpleDateFormat formateador = new SimpleDateFormat("dd 'de' MMMM 'de' yyyy", new Locale("es"));
        Date fechaDate = new Date();
        Chunk fecha = new Chunk(formateador.format(fechaDate), font_negrita);

        String path = new File(".").getCanonicalPath();
        String FILE_NAME = path + "/CONTRATO " + nombreTrabajador + " RUT " + rutTrabajador + ".pdf";

        PdfWriter.getInstance(document, new FileOutputStream(new File(FILE_NAME)));

        //            Image firmaEmpleador = Image.getInstance(path + "/img/firmaEmpleador.png");
        //            firmaEmpleador.scaleAbsoluteWidth(150f);
        //            firmaEmpleador.scaleAbsoluteHeight(70f);
        //            firmaEmpleador.setAbsolutePosition(70f, 200f);
        //            
        Image timbreGerencia = Image.getInstance(path + "/img/timbreGerencia.png");
        timbreGerencia.scaleAbsoluteWidth(90f);
        timbreGerencia.scaleAbsoluteHeight(75f);
        timbreGerencia.setAbsolutePosition(230, 200f);
        //            
        Image firmaTrabajador = Image.getInstance(path + "/img/firmaTrabajador.png");
        firmaTrabajador.scaleAbsoluteWidth(160f);
        firmaTrabajador.scaleAbsoluteHeight(70f);
        firmaTrabajador.setAbsolutePosition(350, 175f);
        //            
        //            Image todoEnUno = Image.getInstance(path + "/img/todoEnUno.png");
        //            todoEnUno.scaleAbsoluteWidth(550);
        //            todoEnUno.scaleAbsoluteHeight(150);
        //            todoEnUno.setAbsolutePosition(15, 120f);

        document.open();
        FontFactory.registerDirectories();

        /*Parrafo de Titulo*/

        String tituloContrato_texto = "CONTRATO DE TRABAJO:\n";

        Font font_titulo = FontFactory.getFont("Times New Roman");
        font_titulo.setSize(14);
        font_titulo.setStyle(Font.BOLD | Font.UNDERLINE);
        font_titulo.setFamily(Font.FontFamily.TIMES_ROMAN.toString());
        Paragraph parrafoTitulo = new Paragraph(tituloContrato_texto, font_titulo);
        parrafoTitulo.setAlignment(Element.ALIGN_CENTER);

        document.add(parrafoTitulo);

        Font font_primer_parrafo = FontFactory.getFont("Times New Roman");
        font_primer_parrafo.setSize(11);
        //            font_primer_parrafo.setStyle(Font.BOLD | Font.UNDERLINE);
        font_primer_parrafo.setFamily(Font.FontFamily.TIMES_ROMAN.toString());

        Paragraph primer_parrafo = new Paragraph();

        /*Agregar CHunks a el parrafo*/
        /*PRIMER PARRAFO*/
        primer_parrafo.setAlignment(Element.ALIGN_JUSTIFIED);
        primer_parrafo.setLeading(15);
        primer_parrafo.setFont(font_primer_parrafo);
        primer_parrafo.add(TEXTO1);
        primer_parrafo.add(fecha);
        primer_parrafo.add(TEXTO2);
        primer_parrafo.add(nombreEmpleador);
        primer_parrafo.add(TEXTO3);
        primer_parrafo.add(rutEmpleador);
        primer_parrafo.add(TEXTO4);
        primer_parrafo.add(nombreTrabajador);
        primer_parrafo.add(TEXTO5);
        primer_parrafo.add(rutTrabajador);
        primer_parrafo.add(TEXTO6);
        primer_parrafo.add(direccionTrabajador);
        primer_parrafo.add(TEXTO7);
        primer_parrafo.add(comunaTrabajador);
        primer_parrafo.add(TEXTO8);
        primer_parrafo.add(fechaNacimientoTrabajador);
        primer_parrafo.add(TEXTO9);

        /*PRIMERA CLAUSULA*/
        primer_parrafo.add(primero);
        primer_parrafo.add(TEXTOPRIMERO1);
        primer_parrafo.add(funcionTrabajador);
        primer_parrafo.add(TEXTOPRIMERO2);

        /*SEGUNDA CLAUSULA*/
        primer_parrafo.add(segundo);
        //            primer_parrafo.add(TEXTOSEGUNDO1);

        /*TERCERA CLAUSULA*/
        primer_parrafo.add(tercero);
        primer_parrafo.add(TEXTOTERCERO1);
        primer_parrafo.add(Chunk.TABBING);
        primer_parrafo.add(TEXTOTERCERO2A);
        primer_parrafo.add(sueldoTrabajador);
        primer_parrafo.add(TEXTOTERCERO3A);
        primer_parrafo.add(Chunk.TABBING);
        primer_parrafo.add(TEXTOTERCERO4B);

        /*CUARTA CLAUSULA*/
        primer_parrafo.add(cuarto);
        //            primer_parrafo.add(TEXTOCUARTO1);

        /*QUINTA CLAUSULA*/
        primer_parrafo.add(quinto);
        //            primer_parrafo.add(TEXTOQUINTO1);

        /*SEXTA CLAUSULA*/
        primer_parrafo.add(sexto);
        //            primer_parrafo.add(TEXTOSEXTO1);

        /*SEPTIMA CLAUSULA*/
        primer_parrafo.add(septimo);
        //            primer_parrafo.add(TEXTOSEPTIMO1);
        primer_parrafo.add(Chunk.TABBING);
        //            primer_parrafo.add(TEXTOSEPTIMO2A);
        primer_parrafo.add(Chunk.TABBING);
        //            primer_parrafo.add(TEXTOSEPTIMO3B);
        primer_parrafo.add(Chunk.TABBING);
        //            primer_parrafo.add(TEXTOSEPTIMO4C);
        primer_parrafo.add(Chunk.TABBING);
        //            primer_parrafo.add(TEXTOSEPTIMO5D);
        primer_parrafo.add(Chunk.TABBING);
        //            primer_parrafo.add(TEXTOSEPTIMO6E);
        primer_parrafo.add(Chunk.TABBING);
        //            primer_parrafo.add(TEXTOSEPTIMO7F);
        primer_parrafo.add(Chunk.TABBING);
        //            primer_parrafo.add(TEXTOSEPTIMO8G);
        primer_parrafo.add(Chunk.TABBING);
        //            primer_parrafo.add(TEXTOSEPTIMO9H);

        /*OCTAVA CLAUSULA*/
        primer_parrafo.add(octavo);
        //            primer_parrafo.add(TEXTOOCTAVO1);

        /*NOVENA CLAUSULA*/
        primer_parrafo.add(noveno);
        //            primer_parrafo.add(TEXTONOVENO1);
        //            primer_parrafo.add(afp);
        //            primer_parrafo.add(TEXTONOVENO3);
        //            primer_parrafo.add(salud);
        //            primer_parrafo.add(TEXTONOVENO5);
        //            primer_parrafo.add(cesantia);

        /*public static final String TEXTONOVENO2 = " PROVIDA";
        public static final String TEXTONOVENO3 = "  Salud:";
        public static final String TEXTONOVENO4 = "FONASA";
        public static final String TEXTONOVENO5 = ", y las de cesanta en:";
        public static final String TEXTONOVENO6 = " AFC. \n\n";*/

        /*DCIMA CLAUSULA*/
        primer_parrafo.add(decimo);
        primer_parrafo.add(TEXTODECIMO1);
        primer_parrafo.add(fechaInicioContrato);
        primer_parrafo.add(TEXTODECIMO2);
        primer_parrafo.add(fechaTerminoContrato);
        primer_parrafo.add(TEXTODECIMO3);

        /*UNDECIMA CLAUSULA*/
        primer_parrafo.add(undecimo);
        //            primer_parrafo.add(TEXTOUNDECIMO1);

        document.add(primer_parrafo);

        //            document.add(todoEnUno);
        document.add(timbreGerencia);
        document.add(firmaTrabajador);
        document.addAuthor("IGVI");
        document.addTitle("CONTRATO DE TRABAJO IGVI");
        document.close();

    } catch (DocumentException e) {
        e.getMessage();
    } catch (IOException e) {
        e.getMessage();
    }

}

From source file:org.sistemafinanciero.rest.impl.CuentaBancariaRESTService.java

License:Apache License

@Override
public Response getCartillaInformacion(BigInteger id) {
    OutputStream file;/*from   www  .j a va 2 s .  c o  m*/

    CuentaBancariaView cuentaBancaria = cuentaBancariaServiceNT.findById(id);
    SocioView socio = socioServiceNT.findById(cuentaBancaria.getIdSocio());
    Set<Titular> listTitulares = cuentaBancariaServiceNT.getTitulares(id, false);

    Moneda moneda = monedaServiceNT.findById(cuentaBancaria.getIdMoneda());

    SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("dd/MM/yyyy");
    BaseColor baseColor = BaseColor.LIGHT_GRAY;
    Font font = FontFactory.getFont("Arial", 10f);
    Font fontBold = FontFactory.getFont("Arial", 10f, Font.BOLD);
    try {
        file = new FileOutputStream(new File(cartillaURL + "\\" + id + ".pdf"));
        Document document = new Document(PageSize.A4);// *4
        PdfWriter writer = PdfWriter.getInstance(document, file);
        document.open();

        /******************* TITULO ******************/
        //Image img = Image.getInstance("/images/logo_coop_contrato.png");
        Image img = Image.getInstance("//usr//share//jboss//archivos//logoCartilla//logo_coop_contrato.png");
        img.setAlignment(Image.LEFT | Image.UNDERLYING);
        document.add(img);

        Paragraph parrafoPrincipal = new Paragraph();
        parrafoPrincipal.setSpacingAfter(30);
        parrafoPrincipal.setSpacingBefore(50);
        parrafoPrincipal.setAlignment(Element.ALIGN_CENTER);

        Chunk titulo = new Chunk("CARTILLA DE INFORMACIN\n");
        Font fuenteTitulo = new Font();
        fuenteTitulo.setSize(18);
        fuenteTitulo.setFamily("Arial");
        fuenteTitulo.setStyle(Font.BOLD | Font.UNDERLINE);
        titulo.setFont(fuenteTitulo);
        parrafoPrincipal.add(titulo);

        if (cuentaBancaria.getTipoCuenta().toString() == "AHORRO") {

            /******************* TIPO CUENTA Y TEXTO DE INTRODUCCION CUENTA AHORRO **********************/
            Chunk subTituloAhorro = new Chunk("APERTURA CUENTA DE AHORRO\n");
            Font fuenteSubtituloAhorro = new Font();
            fuenteSubtituloAhorro.setSize(13);
            fuenteSubtituloAhorro.setFamily("Arial");
            fuenteSubtituloAhorro.setStyle(Font.BOLD | Font.UNDERLINE);
            subTituloAhorro.setFont(fuenteSubtituloAhorro);
            parrafoPrincipal.add(subTituloAhorro);

            document.add(parrafoPrincipal);

            Chunk mensajeIntroAhorro = new Chunk(
                    "La apertura de una cuenta de ahorro generar intereses y dems beneficios complementarios de acuerdo al saldo promedio mensual o saldo diario establecido en la Cartilla de Informacin. Para estos efectos, se entiende por saldo promedio mensual, la suma del saldo diario dividida entre el nmero de das del mes. La cuenta de ahorro podr generar comisiones y gastos de acuerdo a las condiciones aceptadas en la Cartilla de Informacin.\n\n",
                    font);
            mensajeIntroAhorro.setLineHeight(13);

            Paragraph parrafoIntroAhorro = new Paragraph();
            parrafoIntroAhorro.setLeading(11f);
            parrafoIntroAhorro.add(mensajeIntroAhorro);
            parrafoIntroAhorro.setAlignment(Element.ALIGN_JUSTIFIED);
            document.add(parrafoIntroAhorro);
        }

        if (cuentaBancaria.getTipoCuenta().toString() == "PLAZO_FIJO") {

            /******************* TIPO CUENTA Y TEXTO DE INTRODUCCION CUENTA AHORRO **********************/
            Chunk subTituloPF = new Chunk("APERTURA CUENTA A PLAZO FIJO\n");
            Font fuenteSubtituloPF = new Font();
            fuenteSubtituloPF.setSize(13);
            fuenteSubtituloPF.setFamily("Arial");
            fuenteSubtituloPF.setStyle(Font.BOLD | Font.UNDERLINE);
            subTituloPF.setFont(fuenteSubtituloPF);
            parrafoPrincipal.add(subTituloPF);

            document.add(parrafoPrincipal);

            Chunk mensajeIntroPF = new Chunk(
                    "La presente cartilla de informacin forma parte integrante de las condiciones aplicables a los contratos de depsitos y servicios complementarios suscritos por las partes y tiene por finalidad establecer el detalle de las tareas de inters que se retribuir al cliente.\n\n",
                    font);
            mensajeIntroPF.setLineHeight(12);

            Paragraph parrafoIntroPF = new Paragraph();
            parrafoIntroPF.setLeading(11f);
            parrafoIntroPF.add(mensajeIntroPF);
            parrafoIntroPF.setAlignment(Element.ALIGN_JUSTIFIED);

            document.add(parrafoIntroPF);
        }

        if (cuentaBancaria.getTipoCuenta().toString() == "CORRIENTE") {

            /******************* TIPO CUENTA Y TEXTO DE INTRODUCCION CUENTA CORRIENTE **********************/
            Chunk subTituloCC = new Chunk("APERTURA CUENTA CORRIENTE\n");
            Font fuenteSubtituloCC = new Font();
            fuenteSubtituloCC.setSize(13);
            fuenteSubtituloCC.setFamily("Arial");
            fuenteSubtituloCC.setStyle(Font.BOLD | Font.UNDERLINE);
            subTituloCC.setFont(fuenteSubtituloCC);
            parrafoPrincipal.add(subTituloCC);

            document.add(parrafoPrincipal);

            Chunk mensajeIntroCC = new Chunk(
                    "El cliente podr disponer del saldo de su cuenta en cualquier momento a travs de ventanillas (en horarios de atencin al pblico de las Agencias y Oficinas de la Casa de Cambios Ventura). Asimismo, podr realizar abonos en su cuenta en efectivo, a travs de cheques u rdenes de pago en cualquier momento a travs de las ventanillas.\n\n",
                    font);
            mensajeIntroCC.setLineHeight(12);

            Paragraph parrafoIntroCC = new Paragraph();
            parrafoIntroCC.setLeading(11f);
            parrafoIntroCC.add(mensajeIntroCC);
            parrafoIntroCC.setAlignment(Element.ALIGN_JUSTIFIED);
            document.add(parrafoIntroCC);
        }

        /******************* DATOS BASICOS DEL SOCIO **********************/
        PdfPTable table1 = new PdfPTable(4);
        table1.setWidthPercentage(100);

        PdfPCell cabecera1 = new PdfPCell(new Paragraph("DATOS B?SICOS DEL CLIENTE", fontBold));
        cabecera1.setColspan(4);
        cabecera1.setBackgroundColor(baseColor);

        PdfPCell cellCodigoSocio = new PdfPCell(new Paragraph("Codigo Cliente:", fontBold));
        cellCodigoSocio.setColspan(1);
        cellCodigoSocio.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellCodigoSocioValue = new PdfPCell(new Paragraph(socio.getIdsocio().toString(), font));
        cellCodigoSocioValue.setColspan(3);
        cellCodigoSocioValue.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellApellidosNombres = new PdfPCell(new Paragraph(
                cuentaBancaria.getTipoPersona().equals(TipoPersona.NATURAL) ? "Apellidos y Nombres:"
                        : "Razn Social:",
                fontBold));
        cellApellidosNombres.setColspan(1);
        cellApellidosNombres.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellApellidosNombresValue = new PdfPCell(new Paragraph(cuentaBancaria.getSocio(), font));
        cellApellidosNombresValue.setColspan(3);
        cellApellidosNombresValue.setBorder(Rectangle.NO_BORDER);

        table1.addCell(cabecera1);
        table1.addCell(cellCodigoSocio);
        table1.addCell(cellCodigoSocioValue);
        table1.addCell(cellApellidosNombres);
        table1.addCell(cellApellidosNombresValue);

        PdfPCell cellDNI = new PdfPCell(new Paragraph(socio.getTipoDocumento(), fontBold));
        cellDNI.setBorder(Rectangle.NO_BORDER);
        PdfPCell cellDNIValue = new PdfPCell(new Paragraph(socio.getNumeroDocumento(), font));
        cellDNIValue.setBorder(Rectangle.NO_BORDER);
        PdfPCell cellFechaNaciemiento = new PdfPCell(new Paragraph(
                cuentaBancaria.getTipoPersona().equals(TipoPersona.NATURAL) ? "Fecha de Nacimiento:"
                        : "Fecha de Constitucin",
                fontBold));
        cellFechaNaciemiento.setBorder(Rectangle.NO_BORDER);
        PdfPCell cellFechaNacimientoValue = new PdfPCell(
                new Paragraph(DATE_FORMAT.format(socio.getFechaNacimiento()), font));
        cellFechaNacimientoValue.setBorder(Rectangle.NO_BORDER);

        table1.addCell(cellDNI);
        table1.addCell(cellDNIValue);
        table1.addCell(cellFechaNaciemiento);
        table1.addCell(cellFechaNacimientoValue);

        document.add(table1);
        document.add(new Paragraph("\n"));

        /******************* TITULARES **********************/
        PdfPTable table2 = new PdfPTable(7);
        table2.setWidthPercentage(100);

        PdfPCell cabecera2 = new PdfPCell(new Paragraph("TITULARES", fontBold));
        cabecera2.setColspan(7);
        cabecera2.setBackgroundColor(baseColor);
        table2.addCell(cabecera2);

        PdfPCell cellTipoDocumentoCab = new PdfPCell(new Paragraph("Tipo Doc.", fontBold));
        PdfPCell cellNumeroDocumentoCab = new PdfPCell(new Paragraph("Num. Doc.", fontBold));
        PdfPCell cellApellidoPaternoCab = new PdfPCell(new Paragraph("Ap. Paterno", fontBold));
        PdfPCell cellApellidoMaternoCab = new PdfPCell(new Paragraph("Ap. Materno", fontBold));
        PdfPCell cellNombresCab = new PdfPCell(new Paragraph("Nombres", fontBold));
        PdfPCell cellSexoCab = new PdfPCell(new Paragraph("Sexo", fontBold));
        PdfPCell cellFechaNacimientoCab = new PdfPCell(new Paragraph("Fec. Nac.", fontBold));

        cellTipoDocumentoCab.setBorder(Rectangle.NO_BORDER);
        cellNumeroDocumentoCab.setBorder(Rectangle.NO_BORDER);
        cellApellidoPaternoCab.setBorder(Rectangle.NO_BORDER);
        cellApellidoMaternoCab.setBorder(Rectangle.NO_BORDER);
        cellNombresCab.setBorder(Rectangle.NO_BORDER);
        cellSexoCab.setBorder(Rectangle.NO_BORDER);
        cellFechaNacimientoCab.setBorder(Rectangle.NO_BORDER);

        table2.addCell(cellTipoDocumentoCab);
        table2.addCell(cellNumeroDocumentoCab);
        table2.addCell(cellApellidoPaternoCab);
        table2.addCell(cellApellidoMaternoCab);
        table2.addCell(cellNombresCab);
        table2.addCell(cellSexoCab);
        table2.addCell(cellFechaNacimientoCab);

        for (Titular titular : listTitulares) {
            PersonaNatural personaNatural = titular.getPersonaNatural();

            PdfPCell cellTipoDocumento = new PdfPCell(
                    new Paragraph(personaNatural.getTipoDocumento().getAbreviatura(), font));
            PdfPCell cellNumeroDocumento = new PdfPCell(
                    new Paragraph(personaNatural.getNumeroDocumento(), font));
            PdfPCell cellApellidoPaterno = new PdfPCell(
                    new Paragraph(personaNatural.getApellidoPaterno(), font));
            PdfPCell cellApellidoMaterno = new PdfPCell(
                    new Paragraph(personaNatural.getApellidoMaterno(), font));
            PdfPCell cellNombres = new PdfPCell(new Paragraph(personaNatural.getNombres(), font));
            PdfPCell cellSexo = new PdfPCell(new Paragraph(personaNatural.getSexo().toString(), font));
            PdfPCell cellFechaNacimiento = new PdfPCell(
                    new Paragraph(DATE_FORMAT.format(personaNatural.getFechaNacimiento()), font));

            cellTipoDocumento.setBorder(Rectangle.NO_BORDER);
            cellNumeroDocumento.setBorder(Rectangle.NO_BORDER);
            cellApellidoPaterno.setBorder(Rectangle.NO_BORDER);
            cellApellidoMaterno.setBorder(Rectangle.NO_BORDER);
            cellNombres.setBorder(Rectangle.NO_BORDER);
            cellSexo.setBorder(Rectangle.NO_BORDER);
            cellFechaNacimiento.setBorder(Rectangle.NO_BORDER);

            table2.addCell(cellTipoDocumento);
            table2.addCell(cellNumeroDocumento);
            table2.addCell(cellApellidoPaterno);
            table2.addCell(cellApellidoMaterno);
            table2.addCell(cellNombres);
            table2.addCell(cellSexo);
            table2.addCell(cellFechaNacimiento);
        }

        document.add(table2);

        if (cuentaBancaria.getTipoCuenta().toString() == "AHORRO"
                || cuentaBancaria.getTipoCuenta().toString() == "CORRIENTE") {
            Paragraph modalidadCuenta = new Paragraph();
            String value;
            Chunk modalidad = new Chunk("Modalidad de la Cuenta: ", fontBold);

            if (cuentaBancaria.getCantidadRetirantes() == 1)
                value = "INDIVIDUAL";
            else
                value = "MANCOMUNADA";

            Chunk modalidadValue = new Chunk(value + "\n\n", font);
            modalidadCuenta.add(modalidad);
            modalidadCuenta.add(modalidadValue);
            document.add(modalidadCuenta);
        }

        if (cuentaBancaria.getTipoCuenta().toString() == "PLAZO_FIJO") {
            document.add(new Paragraph("\n"));
        }

        /******************* PRODUCTOS Y SERVICIOS **********************/
        PdfPTable table3 = new PdfPTable(4);
        table3.setWidthPercentage(100);

        PdfPCell cabecera3 = new PdfPCell(new Paragraph("PRODUCTOS Y SERVICIOS", fontBold));
        cabecera3.setColspan(4);
        cabecera3.setBackgroundColor(baseColor);
        table3.addCell(cabecera3);

        PdfPCell cellProductoCab = new PdfPCell(new Paragraph("Producto", fontBold));
        PdfPCell cellMonedaCab = new PdfPCell(new Paragraph("Moneda", fontBold));
        PdfPCell cellNumeroCuentaCab = new PdfPCell(new Paragraph("Nmero Cuenta", fontBold));
        PdfPCell cellFechaAperturaCab = new PdfPCell(new Paragraph("Fecha Apertura", fontBold));
        cellProductoCab.setBorder(Rectangle.NO_BORDER);
        cellMonedaCab.setBorder(Rectangle.NO_BORDER);
        cellNumeroCuentaCab.setBorder(Rectangle.NO_BORDER);
        cellFechaAperturaCab.setBorder(Rectangle.NO_BORDER);
        table3.addCell(cellProductoCab);
        table3.addCell(cellMonedaCab);
        table3.addCell(cellNumeroCuentaCab);
        table3.addCell(cellFechaAperturaCab);

        PdfPCell cellProducto = new PdfPCell(
                new Paragraph("CUENTA " + cuentaBancaria.getTipoCuenta().toString(), font));
        PdfPCell cellMoneda = new PdfPCell(new Paragraph(moneda.getDenominacion(), font));
        PdfPCell cellNumeroCuenta = new PdfPCell(new Paragraph(cuentaBancaria.getNumeroCuenta(), font));
        PdfPCell cellFechaApertura = new PdfPCell(
                new Paragraph(DATE_FORMAT.format(cuentaBancaria.getFechaApertura()), font));
        cellProducto.setBorder(Rectangle.NO_BORDER);
        cellMoneda.setBorder(Rectangle.NO_BORDER);
        cellNumeroCuenta.setBorder(Rectangle.NO_BORDER);
        cellFechaApertura.setBorder(Rectangle.NO_BORDER);
        table3.addCell(cellProducto);
        table3.addCell(cellMoneda);
        table3.addCell(cellNumeroCuenta);
        table3.addCell(cellFechaApertura);

        document.add(table3);
        document.add(new Paragraph("\n"));

        /******************* DECLARACIONES Y FIRMAS **********************/
        PdfPTable table4 = new PdfPTable(1);
        table4.setWidthPercentage(100);

        PdfPCell cabecera4 = new PdfPCell(new Paragraph("DECLARACIONES Y FIRMAS", fontBold));
        cabecera4.setBackgroundColor(baseColor);
        table4.addCell(cabecera4);

        Paragraph parrafoDeclaraciones = new Paragraph();

        // Declaraciones Finales
        Chunk parrafoDeclaracionesFinalesCab = new Chunk("\nDECLARACIONES FINALES: ", fontBold);
        Paragraph parrafoDeclaracionesFinalesValue = new Paragraph();

        Chunk declaracionFinal = new Chunk(
                "EL CLIENTE, declara expresamente que previamente a la suscripcin del presente Contrato y la Cartilla de Informacin? que le ha sido entregada para su lectura, ha recibido toda la informacin necesaria acerca de las Condiciones Generales y Especiales aplicables al tipo de servicio contratado, tasas de inters, comisiones y gastos, habindosele absuelto todas sus consultas y/o dudas, por lo que declara tener pleno y exacto conocimiento de las condiciones de el(los) servicio(s) contratado(s).\n",
                font);
        declaracionFinal.setLineHeight(13);
        parrafoDeclaracionesFinalesValue.add(declaracionFinal);

        parrafoDeclaraciones.add(parrafoDeclaracionesFinalesCab);
        parrafoDeclaraciones.add(parrafoDeclaracionesFinalesValue);

        PdfPCell declaraciones = new PdfPCell(parrafoDeclaraciones);
        declaraciones.setBorder(Rectangle.NO_BORDER);
        declaraciones.setHorizontalAlignment(Element.ALIGN_JUSTIFIED);
        table4.addCell(declaraciones);

        document.add(table4);

        // firmas
        Chunk firmaP01 = new Chunk("...........................................");
        Chunk firmaP02 = new Chunk(".......................................\n");
        Chunk firma01 = new Chunk("Casa de Cambios Ventura");
        Chunk firma02 = new Chunk("      El Cliente       ");

        Paragraph firmas = new Paragraph("\n\n\n\n\n\n\n\n");
        firmas.setAlignment(Element.ALIGN_CENTER);

        firmas.add(firmaP01);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(firmaP02);

        firmas.add(firma01);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(firma02);

        document.add(firmas);

        // Contrato de Cuentas bancarias
        DateFormat df = DateFormat.getDateInstance(DateFormat.LONG);
        String fechaAhora = df.format(cuentaBancaria.getFechaApertura());

        Font fontTituloContrato = FontFactory.getFont("Arial", 12f, Element.ALIGN_CENTER);
        Font fontSubtituloContrato = FontFactory.getFont("Arial", 10f, Font.BOLD);
        Font fontDescripcionContrato = FontFactory.getFont("Arial", 10f);

        Paragraph tituloContrato = new Paragraph("\n\n\n\n\n\n\n\n");
        Paragraph contenidoContrato = new Paragraph();
        Paragraph piePaginaContrato = new Paragraph();
        tituloContrato.setAlignment(Element.ALIGN_CENTER);
        tituloContrato.setSpacingAfter(10f);
        contenidoContrato.setAlignment(Element.ALIGN_JUSTIFIED);
        contenidoContrato.setLeading(11f);
        piePaginaContrato.setAlignment(Element.ALIGN_RIGHT);

        if (cuentaBancaria.getTipoCuenta().toString() == "AHORRO") {
            //titulo y descripcion
            Chunk tituloContratoAhorro = new Chunk(
                    "CONTRATO DE CUENTA DE AHORROS Y SERVICIOS FINANCIEROS CONEXOS\n", fontTituloContrato);
            Chunk descripcionContratoAhorro = new Chunk(
                    "Conste por el presente documento el CONTRATO DE CUENTA DE AHORROS Y SERVICIOS FINANCIEROS CONEXOS, que celebran, de una parte CASA DE CAMBIOS VENTURA?, a quien en adelante se le denominar CAMBIOS VENTURA, y de la otra parte EL CLIENTE, cuyas generales de Ley y su firma puesta en seal de conformidad y aceptacin de todos los trminos del presente contrato, constan en el presente instrumento.\n"
                            + "Los trminos y condiciones de este contrato que constan a continuacin, sern de observancia y aplicacin respecto de la/s cuenta/s de ahorros y servicios financieros conexos, as como las transacciones y operaciones sobre la cuenta de ahorros que mantenga EL CLIENTE con CAMBIOS VENTURA (en conjunto los Servicios Financieros?), en tanto no se contrapongan a otros de carcter especfico contenidos y/o derivados de contratos y/o solicitudes suscritas y/o aceptadas bajo cualquier medio o mecanismo entre EL CLIENTE y CAMBIOS VENTURA.\n"
                            + "Ninguno de los trminos de este contrato exonera a EL CLIENTE de cumplir los requisitos y formalidades que la ley y/o CAMBIOS VENTURA exijan para la prestacin y/o realizacin de determinados servicios, y/o productos y/u operaciones y/o transacciones.\n\n",
                    fontDescripcionContrato);

            //primer subtitulo y descripcion
            Chunk subtitulo1ContratoAhorro = new Chunk("OPERACIONES Y SERVICIOS FINANCIEROS EN GENERAL\n",
                    fontSubtituloContrato);
            Chunk contenido1ContratoAhorro = new Chunk(
                    "1. El presente contrato, concede a EL CLIENTE, el derecho de usar los productos y servicios de CAMBIOS VENTURA, que integran sus canales terminales de depsitos y/o retiros y Consulta, banca telefnica, banca Internet y aquellos otros que CAMBIOS VENTURA pudiera poner a disposicin de EL CLIENTE cualquier canal de distribucin que estime pertinente, tales como pgina Web, e-mail, mensaje de texto, mensajes, entre otros.\n"
                            + "EL CLIENTE declara que CAMBIOS VENTURA ha cumplido con las disposiciones legales sobre transparencia en la informacin y en ese sentido le ha brindado en forma previa toda la informacin relevante.\n"
                            + "2. Las partes acuerdan que la(s) cuenta(s) y/o el(los) depsito(s) que EL CLIENTE tuviese abiertos o constituidos y/o que abra o constituya en el futuro, podrn ser objeto de afiliaciones a prestaciones adicionales o de ampliaciones de los servicios que ofrece CAMBIOS VENTURA.\n\n",
                    fontDescripcionContrato);

            //segundo subtitulo y descripcion
            Chunk subtitulo2ContratoAhorro = new Chunk("DISPOSICIONES GENERALES\n", fontSubtituloContrato);
            Chunk contenido2ContratoAhorro = new Chunk(
                    "3. Queda acordado por las partes que, como consecuencia de variaciones en las condiciones de mercado, cambios en las estructuras de costos, decisiones comerciales internas, CAMBIOS VENTURA podr modificar las tasas de inters, que son fijas, comisiones y gastos aplicables a los Servicios Financieros, y en general, cualquiera de las condiciones aqu establecidas, debiendo comunicar la modificacin a EL CLIENTE con una anticipacin no menor a cuarenta y cinco (45) das calendario a la fecha o momento a partir de la cual entrar en vigencia la respectiva modificacin.\n"
                            + "De no estar EL CLIENTE conforme con las modificaciones comunicadas tendr la facultad de dar por concluido el presente contrato de pleno derecho, sin penalizacin alguna cursando una comunicacin escrita a CAMBIOS VENTURA.\n"
                            + "4. En caso que EL CLIENTE sea persona jurdica o persona natural representada por apoderados o representantes legales debidamente autorizados y registrados en CAMBIOS VENTURA, este ltimo no asumir responsabilidad alguna por las consecuencias de las operaciones que los citados representantes o apoderados hubieren efectuado en su representacin, an cuando sus poderes hubieren sido revocados o modificados, salvo que tales revocaciones o modificaciones hubieren sido puestas en conocimiento de CAMBIOS VENTURA por escrito y adjuntando los instrumentos pertinentes.\n"
                            + "5. CAMBIOS VENTURA no asume responsabilidad alguna si por caso fortuito o de fuerza mayor no pudiera cumplir con cualquiera de las obligaciones materia del presente contrato y/o con las instrucciones de EL CLIENTE que tengan relacin con los Servicios Financieros, materia del presente contrato. En tales casos CAMBIOS VENTURA, sin responsabilidad alguna para s, dar cumplimiento a la obligacin y/o instruccin tan pronto desaparezca la causa que impidiera su atencin oportuna.\n"
                            + "Se consideran como causas de fuerza mayor o caso fortuito, sin que la enumeracin sea limitativa, las siguientes: a) Interrupcin del sistema de cmputo, red de teleproceso local o de telecomunicaciones; b) Falta de fluido elctrico; c) Terremotos, incendios, inundaciones y otros similares; d) Actos y consecuencias de vandalismo, terrorismo y conmocin civil; e) Huelgas y paros; f) Actos y consecuencias imprevisibles debidamente justificadas por CAMBIOS VENTURA; g) Suministros y abastecimientos a sistemas y canales de distribucin de productos y servicios.\n\n",
                    fontDescripcionContrato);

            //tercer subtitulo y descripcion
            Chunk subtitulo3ContratoAhorro = new Chunk(
                    "CONDICIONES ESPECIALES APLICABLES A LAS CUENTAS DE AHORROS\n", fontSubtituloContrato);
            Chunk contenido3ContratoAhorro = new Chunk(
                    "6. Las cuentas de depsito de ahorro estn sujetas a las disposiciones contenidas en el Art. 229 de la Ley 26702. CAMBIOS VENTURA entrega al titular de la cuenta su correspondiente comprobante de apertura. Toda cantidad que se abone y/o retire de la cuenta de depsito de ahorros constar en hojas sueltas o soportes mecnicos y/o informticos que se entregue a EL CLIENTE.\n\n",
                    fontDescripcionContrato);

            //pie pagina contrato
            Chunk piePagina = new Chunk("Ayacucho" + ", " + fechaAhora, fontDescripcionContrato);

            tituloContrato.add(tituloContratoAhorro);
            contenidoContrato.add(descripcionContratoAhorro);
            contenidoContrato.add(subtitulo1ContratoAhorro);
            contenidoContrato.add(contenido1ContratoAhorro);
            contenidoContrato.add(subtitulo2ContratoAhorro);
            contenidoContrato.add(contenido2ContratoAhorro);
            contenidoContrato.add(subtitulo3ContratoAhorro);
            contenidoContrato.add(contenido3ContratoAhorro);
            piePaginaContrato.add(piePagina);

            document.add(tituloContrato);
            document.add(contenidoContrato);
            document.add(piePaginaContrato);
        }

        if (cuentaBancaria.getTipoCuenta().toString() == "PLAZO_FIJO") {
            //titulo y descripcion
            Chunk tituloContratoPF = new Chunk("CONTRATO DE DEPOSITO A PLAZO FIJO\n", fontTituloContrato);
            Chunk descripcionContratoPF = new Chunk(
                    "El presente contrato regula las Condiciones que CASA DE CAMBIOS VENTURA?, en adelante CAMBIOS VENTURA, establece para el servicio de DEPOSITO A PLAZO FIJO que brindar a favor de EL CLIENTE, cuyas generales de ley y domicilio constan al final del presente documento.\n\n",
                    fontDescripcionContrato);

            //primer subtitulo y descripcion
            Chunk subtitulo1ContratoPF = new Chunk("CONDICIONES GENERALES\n\n", fontSubtituloContrato);
            Chunk contenido1ContratoPF = new Chunk(
                    "1. CAMBIOS VENTURA abre la cuenta de depsito a plazo fijo a solicitud de EL CLIENTE, con la informacin necesaria proporcionada por EL CLIENTE para su identificacin y manejo, la misma que tiene el carcter de declaracin jurada y que se obliga actualizar cuando exista algn cambio.\n"
                            + "CAMBIOS VENTURA, se reserva el derecho de aceptar o denegar la solicitud de apertura de la(s) cuenta(s), as como verificar la informacin proporcionada. Tratndose de personas naturales, la(s) cuenta(s) de depsito podr(n) ser: i) Individuales; ii) Mancomunadas o conjuntas,  a eleccin y libre decisin de EL CLIENTE. Las personas naturales, se identificarn y presentarn copia de su documento oficial de identidad y las Personas Jurdicas presentarn copia del Registro nico del Contribuyente, del documento de su constitucin y la acreditacin de sus representantes legales o apoderados con facultades suficientes para abrir y operar cuentas bancarias.\n"
                            + "2. La(s) cuenta(s), sin excepcin alguna, que mantenga EL CLIENTE en CAMBIOS VENTURA, deber(n) ser manejada(s) personalmente por l o por sus representantes legales acreditados ante CAMBIOS VENTURA. Los menores de edad, los analfabetos, los que adolezcan de incapacidad relativa o absoluta, sern representados por personas autorizadas legalmente. La(s) cuenta(s) y todas las operaciones que sobre sta(s) realice(n) directamente EL CLIENTE o a travs de sus representantes a travs de los medios proporcionados por CAMBIOS VENTURA se considerarn hechas por EL CLIENTE, bajo su responsabilidad. Ser obligacin de EL CLIENTE comunicar a CAMBIOS VENTURA de cualquier designacin, modificacin o revocacin de poderes otorgados a sus representantes, acreditndose en su caso con los instrumentos pblicos o privados que se requieran conforme a las normas sobre la materia. Tratndose de cuentas mancomunadas conjuntas el retiro proceder en ventanilla con los titulares acreditados para tal fin.\n"
                            + "3. Las partes acuerdan que CAMBIOS VENTURA pagar a EL CLIENTE una tasa de inters compensatoria efectiva anual que tenga vigente en su tarifario, para este tipo de operaciones pasivas, por el tiempo efectivo de permanencia de su(s) depsito(s), segn el periodo de capitalizacin pactado. En los casos en que CAMBIOS VENTURA considere el cobro de comisiones por los servicios prestados a EL CLIENTE, as como los gastos que haya tenido que asumir directamente con terceros derivados de la(s) operaciones solicitado(s) por EL CLIENTE.\n"
                            + "4. El(los) depsito(s) podr(n) efectuarse en dinero en efectivo.\n"
                            + "5. CAMBIOS VENTURA queda facultada por EL CLIENTE respecto a su(s) cuenta(s) de depsito a plazo fijo que mantenga para cargar el costo de comisiones, seguros, tributos y otros gastos.\n"
                            + "6. Los fondos existentes en todos los depsitos que EL CLIENTE pudiera mantener en CAMBIOS VENTURA, podrn ser afectados para respaldar las obligaciones directas o indirectas, existentes o futuras, en cualquier moneda que EL CLIENTE adeude o que expresamente haya garantizado frente a CAMBIOS VENTURA, por capital, intereses, comisiones, tributos, gastos, u otro concepto, quedando CAMBIOS VENTURA facultada a aplicarlos de manera parcial o total para la amortizacin y/o cancelacin de dichas obligaciones, para tal efecto CAMBIOS VENTURA podr en cualquier momento, y a su slo criterio, realizar la consolidacin y/o la compensacin entre los saldos deudores y acreedores que EL CLIENTE pudiera tener en los depsitos que mantenga abiertos en CAMBIOS VENTURA, conforme a la Ley General del Sistema Financiero.\n"
                            + "7. Realizar todas las operaciones de cambio de moneda que sean necesarias, y al tipo de cambio vigente en el da en que se realiza la operacin.\n"
                            + "8. CAMBIOS VENTURA podr cerrar o cancelar la(s) cuenta(s) de depsito: a) A solicitud de EL CLIENTE y previo pago de todo saldo deudor u obligacin que pudiera mantener pendiente; b) Cuando sea informada por escrito o tome conocimiento del fallecimiento o liquidacin del patrimonio del titular.\n\n\n\n\n\n",
                    fontDescripcionContrato);

            //pie pagina contrato
            Chunk piePagina = new Chunk("Ayacucho" + ", " + fechaAhora, fontDescripcionContrato);

            tituloContrato.add(tituloContratoPF);
            contenidoContrato.add(descripcionContratoPF);
            contenidoContrato.add(subtitulo1ContratoPF);
            contenidoContrato.add(contenido1ContratoPF);
            piePaginaContrato.add(piePagina);

            document.add(tituloContrato);
            document.add(contenidoContrato);
            document.add(piePaginaContrato);
        }

        if (cuentaBancaria.getTipoCuenta().toString() == "CORRIENTE") {
            //titulo y descripcion
            Chunk tituloContratoCC = new Chunk("CONTRATO DE CUENTA CORRIENTE Y SERVICIOS FINANCIEROS CONEXOS\n",
                    fontTituloContrato);
            Chunk descripcionContratoCC = new Chunk(
                    "Conste por el presente documento el CONTRATO DE CUENTA CORRIENTE Y SERVICIOS FINANCIEROS CONEXOS, que celebran, de una parte CASA DE CAMBIOS VENTURA?, a quien en adelante se le denominar CAMBIOS VENTURA, y de la otra parte EL CLIENTE, cuyas generales de Ley y su firma puesta en seal de conformidad y aceptacin de todos los trminos del presente contrato, constan en el presente instrumento.\n"
                            + "Los trminos y condiciones de este contrato que constan a continuacin, sern de observancia y aplicacin respecto de la cuenta corriente y servicios financieros conexos, as como las transacciones y operaciones sobre las cuentas corrientes que mantenga EL CLIENTE con CAMBIOS VENTURA (en conjunto los Servicios Financieros?), en tanto no se contrapongan a otros de carcter especfico contenidos y/o derivados de contratos y/o solicitudes suscritas y/o aceptadas bajo cualquier medio o mecanismo entre EL CLIENTE y CAMBIOS VENTURA.\n"
                            + "Ninguno de los trminos de este contrato exonera a EL CLIENTE de cumplir los requisitos y formalidades que la ley y/o CAMBIOS VENTURA exijan para la prestacin y/o realizacin de determinados servicios, y/o productos y/u operaciones y/o transacciones.\n\n",
                    fontDescripcionContrato);

            //primer subtitulo y descripcion
            Chunk subtitulo1ContratoCC = new Chunk("OPERACIONES Y SERVICIOS FINANCIEROS  EN GENERAL\n",
                    fontSubtituloContrato);
            Chunk contenido1ContratoCC = new Chunk(
                    "1. El presente contrato, concede a EL CLIENTE, el derecho de usar los productos y servicios de CAMBIOS VENTURA, que integran sus canales terminales de depsitos y/o retiros y Consulta, banca telefnica, banca Internet y aquellos otros que CAMBIOS VENTURA pudiera poner a disposicin de EL CLIENTE cualquier canal de distribucin que estime pertinente, tales como pgina Web, e-mail, mensaje de texto, mensajes, entre otros.\n"
                            + "EL CLIENTE declara que CAMBIOS VENTURA ha cumplido con las disposiciones legales sobre transparencia en la informacin y en ese sentido le ha brindado en forma previa toda la informacin relevante.\n"
                            + "2. Las partes acuerdan que la(s) cuenta(s) y/o el(los) depsito(s) que EL CLIENTE tuviese abiertos o constituidos y/o que abra o constituya en el futuro, podrn ser objeto de afiliaciones a prestaciones adicionales o de ampliaciones de los servicios que ofrece CAMBIOS VENTURA.\n\n",
                    fontDescripcionContrato);

            //segundo subtitulo y descripcion
            Chunk subtitulo2ContratoCC = new Chunk("DISPOSICIONES GENERALES\n", fontSubtituloContrato);
            Chunk contenido2ContratoCC = new Chunk(
                    "3. Queda acordado por las partes que, como consecuencia de variaciones en las condiciones de mercado, cambios en las estructuras de costos, decisiones comerciales internas, CAMBIOS VENTURA podr modificar las tasas de inters, que son fijas, comisiones y gastos aplicables a los Servicios Financieros, y en general, cualquiera de las condiciones aqu establecidas, debiendo comunicar la modificacin a EL CLIENTE con una anticipacin no menor a cuarenta y cinco (45) das calendario a la fecha o momento a partir de la cual entrar en vigencia la respectiva modificacin.\n"
                            + "De no estar EL CLIENTE conforme con las modificaciones comunicadas tendr la facultad de dar por concluido el presente contrato de pleno derecho, sin penalizacin alguna cursando una comunicacin escrita a CAMBIOS VENTURA.\n"
                            + "4. En caso que EL CLIENTE sea persona jurdica o persona natural representada por apoderados o representantes legales debidamente autorizados y registrados en CAMBIOS VENTURA, este ltimo no asumir responsabilidad alguna por las consecuencias de las operaciones que los citados representantes o apoderados hubieren efectuado en su representacin, aun cuando sus poderes hubieren sido revocados o modificados, salvo que tales revocaciones o modificaciones hubieren sido puestas en conocimiento de CAMBIOS VENTURA por escrito y adjuntando los instrumentos pertinentes.\n"
                            + "5. CAMBIOS VENTURA no asume responsabilidad alguna si por caso fortuito o de fuerza mayor no pudiera cumplir con cualquiera de las obligaciones materia del presente contrato y/o con las instrucciones de EL CLIENTE que tengan relacin con los Servicios Financieros, materia del presente contrato. En tales casos CAMBIOS VENTURA, sin responsabilidad alguna para s, dar cumplimiento a la obligacin y/o instruccin tan pronto desaparezca la causa que impidiera su atencin oportuna.\n"
                            + "Se consideran como causas de fuerza mayor o caso fortuito, sin que la enumeracin sea limitativa, las siguientes: a) Interrupcin del sistema de cmputo, red de teleproceso local o de telecomunicaciones; b) Falta de fluido elctrico; c) Terremotos, incendios, inundaciones y otros similares; d) Actos y consecuencias de vandalismo, terrorismo y conmocin civil; e) Huelgas y paros; f) Actos y consecuencias imprevisibles debidamente justificadas por CAMBIOS VENTURA; g) Suministros y abastecimientos a sistemas y canales de distribucin de productos y servicios.\n\n",
                    fontDescripcionContrato);

            //tercer subtitulo y descripcion
            Chunk subtitulo3ContratoCC = new Chunk(
                    "CONDICIONES ESPECIALES APLICABLES A LAS CUENTAS CORRIENTES\n", fontSubtituloContrato);
            Chunk contenido3ContratoCC = new Chunk(
                    "6. Las cuentas de depsito, estn sujetas a las disposiciones contenidas en el Art. 229 de la Ley 26702. CAMBIOS VENTURA entrega al titular de la cuenta su correspondiente comprobante de apertura. Toda cantidad que se abone y/o retire de la cuenta de depsito de ahorros constar en hojas sueltas o soportes mecnicos y/o informticos que se entregue a EL CLIENTE.\n\n\n\n",
                    fontDescripcionContrato);

            //pie pagina contrato
            Chunk piePagina = new Chunk("Ayacucho" + ", " + fechaAhora, fontDescripcionContrato);

            tituloContrato.add(tituloContratoCC);
            contenidoContrato.add(descripcionContratoCC);
            contenidoContrato.add(subtitulo1ContratoCC);
            contenidoContrato.add(contenido1ContratoCC);
            contenidoContrato.add(subtitulo2ContratoCC);
            contenidoContrato.add(contenido2ContratoCC);
            contenidoContrato.add(subtitulo3ContratoCC);
            contenidoContrato.add(contenido3ContratoCC);
            piePaginaContrato.add(piePagina);

            document.add(tituloContrato);
            document.add(contenidoContrato);
            document.add(piePaginaContrato);
        }

        document.close();
        file.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (DocumentException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

    PdfReader reader;
    try {
        reader = new PdfReader(cartillaURL + "\\" + id + ".pdf");
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        PdfStamper pdfStamper = new PdfStamper(reader, out);
        AcroFields acroFields = pdfStamper.getAcroFields();
        acroFields.setField("field_title", "test");
        pdfStamper.close();
        reader.close();
        return Response.ok(out.toByteArray()).type("application/pdf").build();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (DocumentException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(Jsend.getErrorJSend("No encontrado"))
            .build();
}

From source file:org.sistemafinanciero.rest.impl.SocioRESTService.java

License:Apache License

@Override
public Response getCartillaInformacion(BigInteger id) {
    OutputStream file;//from  w  ww .  j  a  va  2 s  .co m

    // CuentaBancariaView cuentaBancaria =
    // cuentaBancariaServiceNT.findById(id);
    SocioView socio = socioServiceNT.findById(id);
    CuentaAporte cuentaAporte = socioServiceNT.getCuentaAporte(id);

    Moneda moneda = cuentaAporte.getMoneda();

    SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("dd/MM/yyyy");
    BaseColor baseColor = BaseColor.LIGHT_GRAY;
    Font font = FontFactory.getFont("Arial", 10f);
    Font fontBold = FontFactory.getFont("Arial", 10f, Font.BOLD);

    try {
        file = new FileOutputStream(new File(cartillaURL + "\\" + id + ".pdf"));
        Document document = new Document(PageSize.A4);// *4
        PdfWriter writer = PdfWriter.getInstance(document, file);
        document.open();

        /******************* TITULO ******************/
        //Image img = Image.getInstance("/images/logo_coop_contrato.png");
        Image img = Image.getInstance("//usr//share//jboss//archivos//logoCartilla//logo_coop_contrato.png");
        img.setAlignment(Image.LEFT | Image.UNDERLYING);
        document.add(img);

        Paragraph parrafoPrincipal = new Paragraph();

        parrafoPrincipal.setSpacingAfter(40);
        parrafoPrincipal.setSpacingBefore(50);
        parrafoPrincipal.setAlignment(Element.ALIGN_CENTER);
        parrafoPrincipal.setIndentationLeft(100);
        parrafoPrincipal.setIndentationRight(50);

        Chunk titulo = new Chunk("CARTILLA DE INFORMACIN\n");
        Font fuenteTitulo = new Font();
        fuenteTitulo.setSize(18);
        fuenteTitulo.setFamily("Arial");
        fuenteTitulo.setStyle(Font.BOLD | Font.UNDERLINE);

        titulo.setFont(fuenteTitulo);
        parrafoPrincipal.add(titulo);

        Chunk subTitulo = new Chunk("APERTURA CUENTA DE APORTE\n");
        Font fuenteSubtitulo = new Font();
        fuenteSubtitulo.setSize(13);
        fuenteSubtitulo.setFamily("Arial");
        fuenteSubtitulo.setStyle(Font.BOLD | Font.UNDERLINE);

        subTitulo.setFont(fuenteSubtitulo);
        parrafoPrincipal.add(subTitulo);
        document.add(parrafoPrincipal);

        /******************* DATOS BASICOS DEL SOCIO **********************/
        PdfPTable table1 = new PdfPTable(4);
        table1.setWidthPercentage(100);

        PdfPCell cabecera1 = new PdfPCell(new Paragraph("DATOS BASICOS DEL SOCIO", fontBold));
        cabecera1.setColspan(4);
        cabecera1.setBackgroundColor(baseColor);

        PdfPCell cellCodigoSocio = new PdfPCell(new Paragraph("Codigo Socio:", fontBold));
        cellCodigoSocio.setColspan(1);
        cellCodigoSocio.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellCodigoSocioValue = new PdfPCell(new Paragraph(socio.getIdsocio().toString(), font));
        cellCodigoSocioValue.setColspan(3);
        cellCodigoSocioValue.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellApellidosNombres = new PdfPCell(new Paragraph(
                socio.getTipoPersona().equals(TipoPersona.NATURAL) ? "Apellidos y Nombres:" : "Razn Social:",
                fontBold));
        cellApellidosNombres.setColspan(1);
        cellApellidosNombres.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellApellidosNombresValue = new PdfPCell(new Paragraph(socio.getSocio(), font));
        cellApellidosNombresValue.setColspan(3);
        cellApellidosNombresValue.setBorder(Rectangle.NO_BORDER);

        table1.addCell(cabecera1);
        table1.addCell(cellCodigoSocio);
        table1.addCell(cellCodigoSocioValue);
        table1.addCell(cellApellidosNombres);
        table1.addCell(cellApellidosNombresValue);

        PdfPCell cellDNI = new PdfPCell(new Paragraph(socio.getTipoDocumento() + ":", fontBold));
        cellDNI.setColspan(1);
        cellDNI.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellDNIValue = new PdfPCell(new Paragraph(socio.getNumeroDocumento(), font));
        cellDNIValue.setColspan(1);
        cellDNIValue.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellFechaNaciemiento = new PdfPCell(
                new Paragraph(socio.getTipoPersona().equals(TipoPersona.NATURAL) ? "Fecha de Nacimiento:"
                        : "Fecha de Constitucin", fontBold));
        cellFechaNaciemiento.setColspan(1);
        cellFechaNaciemiento.setBorder(Rectangle.NO_BORDER);

        PdfPCell cellFechaNacimientoValue = new PdfPCell(
                new Paragraph(DATE_FORMAT.format(socio.getFechaNacimiento()), font));
        cellFechaNacimientoValue.setColspan(1);
        cellFechaNacimientoValue.setBorder(Rectangle.NO_BORDER);

        table1.addCell(cellDNI);
        table1.addCell(cellDNIValue);
        table1.addCell(cellFechaNaciemiento);
        table1.addCell(cellFechaNacimientoValue);

        document.add(table1);
        document.add(new Paragraph("\n"));

        /******************* PRODUCTOS Y SERVICIOS **********************/
        PdfPTable table3 = new PdfPTable(4);
        table3.setWidthPercentage(100);

        PdfPCell cabecera3 = new PdfPCell(new Paragraph("PRODUCTOS Y SERVICIOS", fontBold));
        cabecera3.setColspan(4);
        cabecera3.setBackgroundColor(baseColor);
        table3.addCell(cabecera3);

        PdfPCell cellProductoCab = new PdfPCell(new Paragraph("Producto", fontBold));
        PdfPCell cellMonedaCab = new PdfPCell(new Paragraph("Moneda", fontBold));
        PdfPCell cellNumeroCuentaCab = new PdfPCell(new Paragraph("Nmero Cuenta", fontBold));
        PdfPCell cellFechaAperturaCab = new PdfPCell(new Paragraph("Fecha Apertura", fontBold));
        cellProductoCab.setBorder(Rectangle.NO_BORDER);
        cellMonedaCab.setBorder(Rectangle.NO_BORDER);
        cellNumeroCuentaCab.setBorder(Rectangle.NO_BORDER);
        cellFechaAperturaCab.setBorder(Rectangle.NO_BORDER);
        table3.addCell(cellProductoCab);
        table3.addCell(cellMonedaCab);
        table3.addCell(cellNumeroCuentaCab);
        table3.addCell(cellFechaAperturaCab);

        PdfPCell cellProducto = new PdfPCell(new Paragraph("CUENTA DE APORTE", font));
        PdfPCell cellMoneda = new PdfPCell(new Paragraph(moneda.getDenominacion(), font));
        PdfPCell cellNumeroCuenta = new PdfPCell(new Paragraph(cuentaAporte.getNumeroCuenta(), font));
        PdfPCell cellFechaApertura = new PdfPCell(
                new Paragraph(DATE_FORMAT.format(socio.getFechaAsociado()), font));
        cellProducto.setBorder(Rectangle.NO_BORDER);
        cellMoneda.setBorder(Rectangle.NO_BORDER);
        cellNumeroCuenta.setBorder(Rectangle.NO_BORDER);
        cellFechaApertura.setBorder(Rectangle.NO_BORDER);
        table3.addCell(cellProducto);
        table3.addCell(cellMoneda);
        table3.addCell(cellNumeroCuenta);
        table3.addCell(cellFechaApertura);

        document.add(table3);
        document.add(new Paragraph("\n"));

        /******************* DECLARACIONES Y FIRMAS **********************/
        PdfPTable table4 = new PdfPTable(1);
        table4.setWidthPercentage(100);

        PdfPCell cabecera4 = new PdfPCell(new Paragraph("DECLARACIONES Y FIRMAS", fontBold));
        cabecera4.setBackgroundColor(baseColor);
        table4.addCell(cabecera4);

        Paragraph parrafoDeclaraciones = new Paragraph();
        Chunk parrafo1 = new Chunk(
                "Los aportes individuales sern pagados por los Asociados en forma peridica de conformidad con lo establecido en el Estatuto y el Reglamento de Aportes Sociales de la Cooperativa. El aporte social ordinario de cada Asociado ser mnimo de S/. 10.00 Nuevos Soles si es mayor de edad y S/. 5.00 Nuevos Soles si es menor de edad.\n\n",
                font);
        parrafo1.setLineHeight(13);
        parrafoDeclaraciones.add(parrafo1);

        Chunk parrafoDeclaracionesFinalesCab = new Chunk("DECLARACIN FINAL DEL CLIENTE: ", fontBold);

        Paragraph parrafoDeclaracionesFinalesValue = new Paragraph();
        Chunk parrafo2 = new Chunk(
                "Declaro haber leido previamente las condiciones establecidas en el Contrato de Depsito y la Cartilla de Informacin, asi como haber sido instruido acerca de los alcances y significados de los trminos y condiciones establecidos en dicho documento habiendo sido absueltas y aclaradas a mi satisfaccin todas las consultas efectuadas y/o dudas, suscribe el presente documento en duplicado y con pleno y exacto conocimiento de los mismos.\n",
                font);
        parrafo2.setLineHeight(13);
        parrafoDeclaracionesFinalesValue.add(parrafo2);

        parrafoDeclaraciones.add(parrafoDeclaracionesFinalesCab);
        parrafoDeclaraciones.add(parrafoDeclaracionesFinalesValue);

        PdfPCell declaraciones = new PdfPCell(parrafoDeclaraciones);
        declaraciones.setBorder(Rectangle.NO_BORDER);
        declaraciones.setHorizontalAlignment(Element.ALIGN_JUSTIFIED);
        table4.addCell(declaraciones);

        document.add(table4);

        // firmas
        Chunk firmaP01 = new Chunk("..........................................");
        Chunk firmaP02 = new Chunk("..........................................\n");
        Chunk firma01 = new Chunk("Caja Ventura");
        Chunk firma02 = new Chunk("El Socio     ");

        Paragraph firmas = new Paragraph("\n\n\n\n\n\n");
        firmas.setAlignment(Element.ALIGN_CENTER);

        firmas.add(firmaP01);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(firmaP02);

        firmas.add(firma01);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(Chunk.SPACETABBING);
        firmas.add(firma02);

        document.add(firmas);

        document.close();
        file.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (DocumentException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }

    PdfReader reader;
    try {
        reader = new PdfReader(cartillaURL + "\\" + id + ".pdf");
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        PdfStamper pdfStamper = new PdfStamper(reader, out);
        AcroFields acroFields = pdfStamper.getAcroFields();
        acroFields.setField("field_title", "test");
        pdfStamper.close();
        reader.close();
        return Response.ok(out.toByteArray()).type("application/pdf").build();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (DocumentException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return Response.status(Response.Status.INTERNAL_SERVER_ERROR).entity(Jsend.getErrorJSend("No encontrado"))
            .build();
}

From source file:ro.nextreports.engine.exporter.PdfExporter.java

License:Apache License

private void updateFont(Map<String, Object> style, Font fnt) {
    if (style.containsKey(StyleFormatConstants.FONT_FAMILY_KEY)) {
        String val = (String) style.get(StyleFormatConstants.FONT_FAMILY_KEY);
        fnt.setFamily(val);
    }/*from   w  w  w. ja  v  a  2 s . c  o m*/
    if (style.containsKey(StyleFormatConstants.FONT_SIZE)) {
        Float val = (Float) style.get(StyleFormatConstants.FONT_SIZE);
        fnt.setSize(val);
    }
    if (style.containsKey(StyleFormatConstants.FONT_COLOR)) {
        Color val = (Color) style.get(StyleFormatConstants.FONT_COLOR);
        fnt.setColor(new BaseColor(val));
    }
    if (style.containsKey(StyleFormatConstants.FONT_STYLE_KEY)) {
        if (StyleFormatConstants.FONT_STYLE_NORMAL.equals(style.get(StyleFormatConstants.FONT_STYLE_KEY))) {
            fnt.setStyle(Font.NORMAL);
        }
        if (StyleFormatConstants.FONT_STYLE_BOLD.equals(style.get(StyleFormatConstants.FONT_STYLE_KEY))) {
            fnt.setStyle(Font.BOLD);
        }
        if (StyleFormatConstants.FONT_STYLE_ITALIC.equals(style.get(StyleFormatConstants.FONT_STYLE_KEY))) {
            fnt.setStyle(Font.ITALIC);
        }
        if (StyleFormatConstants.FONT_STYLE_BOLDITALIC.equals(style.get(StyleFormatConstants.FONT_STYLE_KEY))) {
            fnt.setStyle(Font.BOLDITALIC);
        }
    }
}