maia/.svn/tmp/svn-267DCB0C

840 lines
42 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with Jaspersoft Studio version 5.6.1.final using JasperReports Library version 5.6.1 -->
<!-- 2016-02-18T10:12:01 -->
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="reporteCertificado" pageWidth="1100" pageHeight="900" orientation="Landscape" columnWidth="1060" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="80331279-9be4-4003-ad3d-d3b8bfdf2084">
<property name="net.sf.jasperreports.export.csv.write.header" value="true"/>
<property name="com.jaspersoft.studio.data.defaultdataadapter" value="One Empty Record"/>
<property name="com.jaspersoft.studio.unit." value="pixel"/>
<template><![CDATA[$P{pathstyle}]]></template>
<parameter name="pathstyle" class="java.lang.String" isForPrompting="false">
<defaultValueExpression><![CDATA["repo:/maia/1/style/style"]]></defaultValueExpression>
</parameter>
<parameter name="pathLogoIzquierda" class="java.lang.String">
<defaultValueExpression><![CDATA["repo:/maia/1/image/comandoconjunto"]]></defaultValueExpression>
</parameter>
<parameter name="pathLogoDerecha" class="java.lang.String">
<defaultValueExpression><![CDATA["repo:/maia/1/image/selloarmas"]]></defaultValueExpression>
</parameter>
<parameter name="SUBREPORT_DIR" class="java.lang.String">
<defaultValueExpression><![CDATA["repo:/maia/1/modules/armas/subreports/"]]></defaultValueExpression>
</parameter>
<parameter name="csolicitud" class="java.lang.String"/>
<parameter name="lugarFecha" class="java.lang.String"/>
<parameter name="flagAgencia" class="java.lang.Boolean">
<parameterDescription><![CDATA[]]></parameterDescription>
</parameter>
<parameter name="flagArmas" class="java.lang.Boolean"/>
<parameter name="flagDoc" class="java.lang.Boolean"/>
<parameter name="flagGuardias" class="java.lang.Boolean"/>
<parameter name="centroControl" class="java.lang.String"/>
<parameter name="gradoUsuario" class="java.lang.String"/>
<parameter name="usuario" class="java.lang.String"/>
<parameter name="codResponsable" class="java.lang.String"/>
<parameter name="email" class="java.lang.String"/>
<queryString language="SQL">
<![CDATA[select
rownum,
--DATOS DE LA SOLICITUD
solicitud.fregistro as fechasolicitud,
tipotramite.description as tipotramite,
categoria.description as categoria,
soltramite.numerotramite as numerotramite,
autorizacion.description as tramite,
actividad.description as usoactividad,
--DATOS DE LA PERSONA
personadetalle.name as nombre,
personadetalle.identification as cedula,
personadetalle.legalrepresent as nombrerl,
pais.description as paisorigen,
canton.description as canton,
parroquia.description as parroquia,
phonehome.phonenumber as telefonoconvencional,
estadocivil.description as estadocivil,
p.height as estatura,
tipopersona.description as tipopersona,
solicitud.lugarorigen as lugarorigen,
documento.fechaemision as fechaemision,
tipodoc.description as tipodocumento,
personadetalle.legalrepresentidentification as cedularl,
provincia.description as provincia,
ciudad.description as ciudad,
personadireccion.address as direccion,
phonecel.phonenumber as celular,
p.gender as genero,
profesion.description as profesion,
solicitud.lugardestino as lugardestino,
documento.fechaexpiracion as fechaexpiracion,
tramite.cabecera as cabecera,
tramite.pie as pie
from tarmsolicitud solicitud
inner join tarmsolicitudtramite soltramite on soltramite.csolicitud = solicitud.csolicitud
inner join tarmtramite tramite on tramite.ctramite = soltramite.ctramite
--TIPO DE TRAMITE
left join tgenecatalogdetail tipotramite on tipotramite.catalog=tramite.tipotramite and tipotramite.catalogcode=tramite.tipotramitecodigo
--CATEGORIA
left join tgenecatalogdetail categoria on categoria.catalog=tramite.categoria and categoria.catalogcode=tramite.categoriacodigo
--AUTORIZACION
left join tgenecatalogdetail autorizacion on autorizacion.catalog=tramite.tipoautorizacion and autorizacion.catalogcode=tramite.tipoautorizacioncodigo
--USO ACTIVIDAD
left join tgenecatalogdetail actividad on actividad.catalog=tramite.usoactividad and actividad.catalogcode=tramite.usoactividadcodigo
--DATOS DE LA PERSONA
inner join tcustperson persona on persona.personcode = solicitud.personcode
inner join tcustpersondetail personadetalle
on personadetalle.personcode = persona.personcode
and to_char(personadetalle.dateto,'yyyy-MM-dd') = '2999-12-31'
inner join tcustpersonaddress personadireccion
on personadireccion.personcode = personadetalle.personcode and personadireccion.principal = 'Y'
and personadireccion.dateto = TO_DATE (TO_CHAR (personadetalle.dateto, 'YYYY-MON-DD HH24:MI:SS'),'YYYY-MON-DD HH24:MI:SS')
left join tcustpeople p
on p.personcode = personadetalle.personcode
and p.dateto = TO_DATE (TO_CHAR (p.dateto, 'YYYY-MON-DD HH24:MI:SS'),'YYYY-MON-DD HH24:MI:SS')
--DATOS DE PAIS,PROVINCIA,CIUDAD,PARROQUIA DE LA PERSONA
inner join tgenecountry pais
on pais.countrycode = personadireccion.countrycode
inner join tgeneprovince provincia
on provincia.provincecode = personadireccion.provincecode
and provincia.countrycode = personadireccion.countrycode
inner join tgenecanton canton
on canton.cantoncode = personadireccion.cantoncode
and canton.provincecode = personadireccion.provincecode
and canton.countrycode = personadireccion.countrycode
inner join tgenecity ciudad
on ciudad.citycode = personadireccion.citycode
and ciudad.cantoncode = personadireccion.cantoncode
and ciudad.provincecode = personadireccion.provincecode
and ciudad.countrycode = personadireccion.countrycode
inner join tgeneparroquia parroquia
on parroquia.parroquiacode = personadireccion.parroquiacode
and parroquia.cantoncode = personadireccion.cantoncode
and parroquia.provincecode = personadireccion.provincecode
and parroquia.countrycode = personadireccion.countrycode
--TELEFONOS
left join tcustpersonphone phonehome
on phonehome.personcode=personadetalle.personcode
and phonehome.phonetypecatalog = 1
and to_char(phonehome.dateto,'yyyy-MM-dd') = '2999-12-31'
left join tcustpersonphone phonecel
on phonecel.personcode=personadetalle.personcode
and phonecel.phonetypecatalog = 2
and to_char(phonecel.dateto,'yyyy-MM-dd') = '2999-12-31'
--ESTADO CIVIL
left join tgenecatalogdetail estadocivil on estadocivil.catalog=p.maritalstatuscatalog
and estadocivil.catalogcode=p.maritalstatuscatalogcode
--TIPO DE PERSONA
left join tgenecatalogdetail tipopersona
on tipopersona.catalog=personadetalle.persontypecatalog
and tipopersona.catalogcode=personadetalle.persontypecatalogcode
--FECHA DE EMISION/EXPIRACION DE DOCUMENTO
inner join tarmdocumentohabilitante documento
on documento.csolicitud = solicitud.csolicitud
and documento.personcode = solicitud.personcode
--TIPO DOCUMENTO
left join tgenecatalogdetail tipodoc
on tipodoc.catalog=personadetalle.identificationcatalog
and tipodoc.catalogcode=personadetalle.identificationcatalogcode
--PROFESION
left join tgenecatalogdetail profesion
on profesion.catalog=p.professioncatalog
and profesion.catalogcode=p.professioncatalogcode
--FILTRO DE BUSQUEDA
where solicitud.csolicitud= $P{csolicitud}]]>
</queryString>
<field name="fechasolicitud" class="java.util.Date">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="tipotramite" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="categoria" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="numerotramite" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="tramite" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="usoactividad" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="nombre" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="cedula" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="nombrerl" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="paisorigen" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="canton" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="parroquia" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="telefonoconvencional" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="estadocivil" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="tipopersona" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="lugarorigen" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="fechaemision" class="java.util.Date">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="tipodocumento" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="cedularl" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="provincia" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="ciudad" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="direccion" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="celular" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="genero" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="profesion" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="lugardestino" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="fechaexpiracion" class="java.util.Date">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="cabecera" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="pie" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="estatura" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<group name="informacionArmas"/>
<group name="informacionGuardias"/>
<group name="informacionAgencias"/>
<group name="requisitos"/>
<group name="listarDocumentos"/>
<group name="InfoArmasGroup1">
<groupHeader>
<band height="19">
<printWhenExpression><![CDATA[$P{flagArmas}]]></printWhenExpression>
<subreport>
<reportElement x="0" y="0" width="860" height="19" uuid="d7c4e2a1-5c97-44e0-bc37-2e7345d43a68">
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<subreportParameter name="csolicitud">
<subreportParameterExpression><![CDATA[$P{csolicitud}]]></subreportParameterExpression>
</subreportParameter>
<connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
<subreportExpression><![CDATA[$P{SUBREPORT_DIR} + "informacionArmas"]]></subreportExpression>
</subreport>
</band>
</groupHeader>
</group>
<group name="InfoGuardiasGroup2">
<groupHeader>
<band height="19">
<printWhenExpression><![CDATA[$P{flagGuardias}]]></printWhenExpression>
<subreport>
<reportElement x="0" y="0" width="859" height="19" uuid="a4813eb7-bd46-453d-8d79-5a02a95dc2dc">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<subreportParameter name="csolicitud">
<subreportParameterExpression><![CDATA[$P{csolicitud}]]></subreportParameterExpression>
</subreportParameter>
<connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
<subreportExpression><![CDATA[$P{SUBREPORT_DIR} + "informacionGuardias"]]></subreportExpression>
</subreport>
</band>
</groupHeader>
</group>
<group name="InfoAgenciasGroup1">
<groupHeader>
<band height="19">
<printWhenExpression><![CDATA[$P{flagAgencia}]]></printWhenExpression>
<subreport>
<reportElement x="0" y="0" width="860" height="19" uuid="da128070-4a36-452e-8a97-ca7576491b23">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<subreportParameter name="csolicitud">
<subreportParameterExpression><![CDATA[$P{csolicitud}]]></subreportParameterExpression>
</subreportParameter>
<connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
<subreportExpression><![CDATA[$P{SUBREPORT_DIR} + "informacionAgenciasSucursales"]]></subreportExpression>
</subreport>
</band>
</groupHeader>
</group>
<group name="InfoRequisitosGroup1"/>
<group name="InfoDocGroup1">
<groupHeader>
<band height="19">
<printWhenExpression><![CDATA[$P{flagDoc}]]></printWhenExpression>
<subreport>
<reportElement x="0" y="0" width="1009" height="19" uuid="30b18b62-d627-4f19-aca1-06152f58c8a3">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<subreportParameter name="csolicitud">
<subreportParameterExpression><![CDATA[$P{csolicitud}]]></subreportParameterExpression>
</subreportParameter>
<connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
<subreportExpression><![CDATA[$P{SUBREPORT_DIR} + "listarDocumentos"]]></subreportExpression>
</subreport>
</band>
</groupHeader>
</group>
<background>
<band splitType="Stretch"/>
</background>
<title>
<band height="501">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<staticText>
<reportElement style="title1" x="100" y="149" width="660" height="20" forecolor="#000000" uuid="a5555ed3-8bce-44fd-afbb-28084239a1a1"/>
<textElement textAlignment="Center"/>
<text><![CDATA[COMANDO CONJUNTO DE LAS FUERZAS ARMADAS]]></text>
</staticText>
<staticText>
<reportElement key="" style="title2" x="100" y="172" width="660" height="16" forecolor="#000000" uuid="98c268e9-4cb8-4184-9c02-537b79b6957c">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement textAlignment="Center"/>
<text><![CDATA[DEPARTAMENTO DE CONTROL DE ARMAS]]></text>
</staticText>
<staticText>
<reportElement style="title3" x="1" y="272" width="858" height="15" forecolor="#000000" uuid="b7269dae-8fea-40f5-a8f0-4fb5b1935423">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[Que luego de haber revisado la información del sistema de Control de Armas, se obtiene los siguientes datos:]]></text>
</staticText>
<image>
<reportElement x="10" y="127" width="80" height="80" uuid="3290f869-ef8a-4381-8e57-7aeff12ca363">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<imageExpression><![CDATA[$P{pathLogoIzquierda}]]></imageExpression>
</image>
<image>
<reportElement x="770" y="127" width="80" height="80" uuid="9052917f-d24c-47b3-ae9f-c2ef5b5dfc80">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<imageExpression><![CDATA[$P{pathLogoDerecha}]]></imageExpression>
</image>
<staticText>
<reportElement style="normalNegrita" x="0" y="306" width="180" height="16" forecolor="#000000" uuid="3bb8e17c-e4b2-4403-83b0-b0604f3b180d">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[NOMBRE / RAZÓN SOCIAL:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="322" width="180" height="16" forecolor="#000000" uuid="f87edae9-6df5-4c82-b40a-3937ad6d6d89">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[No DOCUMENTO:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="1" y="338" width="180" height="16" forecolor="#000000" uuid="009443dd-5321-4e42-bc2c-7400e645cd44">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[NOMBRE REPRESENTANTE LEGAL:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="354" width="180" height="16" forecolor="#000000" uuid="a14cb52b-d731-4e19-ba36-6f0f8b32cd4a">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[PAÍS ORIGEN:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="370" width="180" height="16" forecolor="#000000" uuid="808df12d-879c-4b4a-b6c6-14f0e748caef">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[CANTÓN:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="386" width="180" height="16" forecolor="#000000" uuid="6f70e23b-ac5b-4c5e-9173-8f536a391a7b">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[PARROQUIA:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="402" width="180" height="16" forecolor="#000000" uuid="e4f3f8ef-35ba-4965-aa83-8ce8ca454701">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[TELÉFONO:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="418" width="180" height="16" forecolor="#000000" uuid="5684f31f-2641-41c0-89ff-90b0152cd5b8">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[ESTADO CIVIL:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="434" width="180" height="16" forecolor="#000000" uuid="4290cfb9-d03a-491a-bf5d-5fae9fdb4bf8">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[ESTATURA:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="450" width="180" height="16" forecolor="#000000" uuid="77335193-a00e-4a24-a664-66e0e9c286dc">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[TIPO DE PERSONA:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="466" width="180" height="16" forecolor="#000000" uuid="98ae2b12-ac36-4855-8d4b-70c92b0657e6">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[LUGAR DE ORIGEN:]]></text>
</staticText>
<textField isStretchWithOverflow="true">
<reportElement style="normal" stretchType="RelativeToBandHeight" x="180" y="306" width="680" height="16" uuid="395cc6b1-bcbf-4737-bb71-9dc78a2b00c3">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{nombre} == null ? "" : $F{nombre}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="322" width="250" height="16" uuid="54dfa112-3d42-40d5-9178-dc6d0728cf17">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{cedula} == null ? "" : $F{cedula}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="181" y="338" width="249" height="16" uuid="258c7831-fd11-491b-b8c1-2fd85bbcfe1d">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{nombrerl} == null ? "" : $F{nombrerl}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="354" width="250" height="16" uuid="15426e8f-581f-4c6f-8355-919fd30012fc">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{paisorigen} == null ? "" : $F{paisorigen}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="370" width="250" height="16" uuid="175d9f6c-a45c-446c-959d-6f7bfc7e492c">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<textFieldExpression><![CDATA[$F{canton} == null ? "" : $F{canton}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="386" width="250" height="16" uuid="5e5e5fe1-450d-4a8b-b712-05b7a245be1f">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{parroquia} == null ? "" : $F{parroquia}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="402" width="250" height="16" uuid="145e8eed-eff8-4c6f-bef7-0e3fe260c3a3">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{telefonoconvencional} == null ? "" : $F{telefonoconvencional}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="418" width="250" height="16" uuid="ab65a5b6-4da9-4b57-b178-8eea796e51ff">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{estadocivil} == null ? "" : $F{estadocivil}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="450" width="250" height="16" uuid="56646f05-15ef-48ac-8eca-94777a7a032e">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{tipopersona} == null ? "" : $F{tipopersona}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="434" width="250" height="16" uuid="ffd9c73f-80b2-4a4c-8fcc-b279cabdbd62">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{estatura} == null ? "" : $F{estatura}]]></textFieldExpression>
</textField>
<staticText>
<reportElement style="normalNegrita" x="430" y="322" width="180" height="16" forecolor="#000000" uuid="111b7962-7c48-4d01-9d57-bed64c836f6d">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[TIPO DOCUMENTO:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="338" width="180" height="16" forecolor="#000000" uuid="9ba22306-bf0a-4d3b-95cc-8747c7ff7beb">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[ACTIVIDAD ECONÓMICA:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="354" width="180" height="16" forecolor="#000000" uuid="5543005c-1ecb-4803-9e74-1c0d0e5bccf9">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[CÉDULA REPRESENTANTE LEGAL:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="370" width="180" height="16" forecolor="#000000" uuid="9c2b583b-138e-45c2-9cae-ece65b217c35">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[PROVINCIA:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="386" width="180" height="16" forecolor="#000000" uuid="eb65881f-96c8-4f2b-b2eb-229170df994f">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[CIUDAD:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="402" width="180" height="16" forecolor="#000000" uuid="43bf5d93-681c-4fdb-a83b-792a01f80c68">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[DIRECCIÓN:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="418" width="180" height="16" forecolor="#000000" uuid="9f7f29aa-9076-45bd-ad5c-c31d3a38dca4">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[TELÉFONO CELULAR:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="434" width="180" height="16" forecolor="#000000" uuid="b3617dda-4d02-4197-a426-cea3fd7d0034">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[GÉNERO:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="450" width="180" height="16" forecolor="#000000" uuid="41363e95-eb69-46e8-9ff4-15cb5a99c1b4">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[PROFESIÓN:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="0" y="482" width="180" height="16" forecolor="#000000" uuid="370435b5-bc62-4c49-baff-894f4a5ab022">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[CORREO ELECTRÓNICO:]]></text>
</staticText>
<staticText>
<reportElement style="normalNegrita" x="430" y="466" width="180" height="16" forecolor="#000000" uuid="f8809fea-d4b4-4a58-8a5e-33f429c0ecd8">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[LUGAR DE DESTINO:]]></text>
</staticText>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="322" width="250" height="16" uuid="f4877331-52d5-4e6c-977d-05a2a78723fb">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{tipodocumento} == null ? "" : $F{tipodocumento}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="354" width="250" height="16" uuid="e10fd72a-3dcd-42c9-84e8-642d0c3b461e"/>
<textFieldExpression><![CDATA[$F{cedularl} == null ? "" : $F{cedularl}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="370" width="250" height="16" uuid="2dbf6ff9-8628-4d25-bd2f-32658b95624f">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{provincia} == null ? "" : $F{provincia}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="386" width="250" height="16" uuid="4e5b6656-7d2c-443a-9c99-fdfab59bda87">
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{ciudad} == null ? "" : $F{ciudad}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="402" width="250" height="16" uuid="ce699d08-050e-4861-bc04-047f1efad8b4">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{direccion} == null ? "" : $F{direccion}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="418" width="250" height="16" uuid="2122d295-2325-4b85-8adc-4a3d968fc679">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{celular} == null ? "" : $F{celular}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="434" width="250" height="16" uuid="e0ea6e82-0aeb-4b2a-814e-f19d025a613e">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{genero} == null ? "" : $F{genero}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="450" width="250" height="16" uuid="a9e71530-4595-4fd0-9a0e-88dfe5b74241">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{profesion} == null ? "" : $F{profesion}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="180" y="466" width="250" height="16" uuid="4cf86629-9f58-4947-93cc-0ea0229a253c">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{lugarorigen} == null ? "" : $F{lugarorigen}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="610" y="466" width="250" height="16" uuid="d55c68cf-5bd6-4ce6-bfe5-b3af8b29cb6c">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{lugardestino} == null ? "" : $F{lugardestino}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="title2" x="100" y="188" width="660" height="16" uuid="7c100f9b-26dd-43e4-8b0d-266544072024">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement textAlignment="Center"/>
<textFieldExpression><![CDATA[$P{centroControl}]]></textFieldExpression>
</textField>
<staticText>
<reportElement style="title4" x="100" y="223" width="660" height="30" uuid="d1b3e381-015b-4359-a1f7-8c16a46fb09b"/>
<textElement textAlignment="Center"/>
<text><![CDATA[CERTIFICA]]></text>
</staticText>
<textField>
<reportElement style="normal" isPrintRepeatedValues="false" x="180" y="482" width="250" height="16" uuid="7a835f9b-5805-44bf-b375-a7dddae301c4">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$P{email}]]></textFieldExpression>
</textField>
</band>
</title>
<pageFooter>
<band height="32">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<textField>
<reportElement x="0" y="0" width="860" height="19" uuid="6cc42f95-4519-44d5-ac93-5402e84635a1">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$F{pie}]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="741" y="19" width="40" height="13" uuid="d8fdb409-1a3c-4f80-a9fe-4fed91d82bba">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textFieldExpression><![CDATA["Página"]]></textFieldExpression>
</textField>
<textField>
<reportElement style="normal" x="420" y="19" width="321" height="13" uuid="dae0a268-0ec4-4895-b188-758c6a91e990"/>
<textFieldExpression><![CDATA[$P{lugarFecha}]]></textFieldExpression>
</textField>
<staticText>
<reportElement style="normal" x="308" y="19" width="112" height="13" uuid="e441d13c-c74c-4c69-ad86-e61c3250dbb1"/>
<text><![CDATA[Fecha emisión / hora:]]></text>
</staticText>
<textField>
<reportElement style="normal" x="50" y="19" width="258" height="13" uuid="8b29d9ea-7dcd-43cc-881d-275a2244cf8e"/>
<textFieldExpression><![CDATA[$P{usuario}]]></textFieldExpression>
</textField>
<staticText>
<reportElement key="" style="normal" x="0" y="19" width="50" height="13" uuid="2c7a9752-e4e7-4783-998e-ce5f9d158e26"/>
<text><![CDATA[Usuario:]]></text>
</staticText>
<textField>
<reportElement style="normal" x="808" y="19" width="23" height="13" uuid="c5ea03ec-0868-49b8-9e03-8f891b7d0e51">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textFieldExpression><![CDATA["de"]]></textFieldExpression>
</textField>
<textField evaluationTime="Page">
<reportElement style="normal" x="781" y="19" width="27" height="13" uuid="5ccc4744-e249-416d-9c24-938aac3c519d"/>
<textFieldExpression><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
<textField evaluationTime="Report">
<reportElement style="normal" x="831" y="19" width="27" height="13" uuid="26626f75-b3e8-4236-b343-a227821c2bfb"/>
<textFieldExpression><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
</band>
</pageFooter>
<summary>
<band height="148" splitType="Stretch">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<textField>
<reportElement style="normalNegrita" x="0" y="116" width="611" height="16" uuid="878a2ed2-cfdb-4d34-a674-3f42e00fe317">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$P{gradoUsuario}]]></textFieldExpression>
</textField>
<staticText>
<reportElement style="normalNegrita" x="0" y="132" width="50" height="16" uuid="817bebd2-7aa3-4ecd-9ff5-f2aa17588e5f">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<text><![CDATA[JEFE DEL]]></text>
</staticText>
<textField>
<reportElement style="normalNegrita" x="50" y="132" width="559" height="16" uuid="fe0e1d02-73c8-4d97-879e-0bf3189956f4">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<textFieldExpression><![CDATA[$P{centroControl}]]></textFieldExpression>
</textField>
<subreport>
<reportElement x="0" y="1" width="308" height="115" uuid="410dc71a-5fd9-42ac-9945-63d87e61ce4b">
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<subreportParameter name="codResponsable">
<subreportParameterExpression><![CDATA[$P{codResponsable}]]></subreportParameterExpression>
</subreportParameter>
<connectionExpression><![CDATA[$P{REPORT_CONNECTION}]]></connectionExpression>
<subreportExpression><![CDATA[$P{SUBREPORT_DIR} + "firmaGeneralReport"]]></subreportExpression>
</subreport>
</band>
</summary>
</jasperReport>