maia/.svn/pristine/bd/bd87124630b4487d0816c7b8aea...

996 lines
50 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<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="Reporte General" pageWidth="800" pageHeight="842" columnWidth="760" 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"/>
<property name="ireport.zoom" value="1.5"/>
<property name="ireport.x" value="3"/>
<property name="ireport.y" value="454"/>
<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="flagRequisitos" class="java.lang.Boolean">
<parameterDescription><![CDATA[]]></parameterDescription>
</parameter>
<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="tipoAutorizacion" class="java.lang.String"/>
<parameter name="categoria" class="java.lang.String"/>
<parameter name="usoActividad" class="java.lang.String"/>
<parameter name="tipoTramite" class="java.lang.String"/>
<parameter name="noTramite" class="java.lang.String"/>
<parameter name="cabecera" class="java.lang.String"/>
<parameter name="email" class="java.lang.String"/>
<parameter name="direccion" class="java.lang.String"/>
<parameter name="noSolicitud" class="java.lang.String">
<parameterDescription><![CDATA[]]></parameterDescription>
</parameter>
<queryString>
<![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,
solicitud.nombrerazonsocialorigen as nombrerazonsocialorigen,
solicitud.aucp as nosolaucp,
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,
(CASE WHEN UPPER(p.gender)='M' THEN 'MASCULINO' WHEN UPPER(p.gender)='F' THEN 'FEMENINO' ELSE '' END) 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
left join tarmsolicitudtramite soltramite on soltramite.csolicitud = solicitud.csolicitud
left 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
left join tcustperson persona on persona.personcode = solicitud.personcode
left join tcustpersondetail personadetalle
on personadetalle.personcode = persona.personcode
and personadetalle.dateto = TO_DATE (TO_CHAR (personadetalle.dateto, 'YYYY-MON-DD HH24:MI:SS'),'YYYY-MON-DD HH24:MI:SS')
left join tcustpersonaddress personadireccion
on personadireccion.personcode = personadetalle.personcode
and personadireccion.dateto = TO_DATE (TO_CHAR (personadetalle.dateto, 'YYYY-MON-DD HH24:MI:SS'),'YYYY-MON-DD HH24:MI:SS')
and personadireccion.principal = 'Y'
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
left join tgenecountry pais
on pais.countrycode = personadireccion.countrycode
left join tgeneprovince provincia
on provincia.provincecode = personadireccion.provincecode
and provincia.countrycode = personadireccion.countrycode
left join tgenecanton canton
on canton.cantoncode = personadireccion.cantoncode
and canton.provincecode = personadireccion.provincecode
and canton.countrycode = personadireccion.countrycode
left join tgenecity ciudad
on ciudad.citycode = personadireccion.citycode
and ciudad.cantoncode = personadireccion.cantoncode
and ciudad.provincecode = personadireccion.provincecode
and ciudad.countrycode = personadireccion.countrycode
left 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 phonehome.dateto = TO_DATE (TO_CHAR (phonehome.dateto, 'YYYY-MON-DD HH24:MI:SS'),'YYYY-MON-DD HH24:MI:SS')
left join tcustpersonphone phonecel
on phonecel.personcode=personadetalle.personcode AND phonecel.dateto = TO_DATE ('2999-12-31','YYYY-MM-DD')
and phonecel.phonetypecatalog = 2
--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
left 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>
<field name="nombrerazonsocialorigen" class="java.lang.String"/>
<field name="nosolaucp" class="java.lang.String"/>
<group name="informacionArmas"/>
<group name="informacionGuardias"/>
<group name="informacionAgencias"/>
<group name="requisitos"/>
<group name="listarDocumentos"/>
<group name="InfoArmasGroup1">
<groupHeader>
<band height="37">
<printWhenExpression><![CDATA[$P{flagArmas}]]></printWhenExpression>
<subreport>
<reportElement uuid="d7c4e2a1-5c97-44e0-bc37-2e7345d43a68" x="0" y="1" width="760" height="29"/>
<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="35">
<printWhenExpression><![CDATA[$P{flagGuardias}]]></printWhenExpression>
<subreport>
<reportElement uuid="a4813eb7-bd46-453d-8d79-5a02a95dc2dc" x="1" y="4" width="760" height="26">
<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>
<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="38">
<printWhenExpression><![CDATA[$P{flagAgencia}]]></printWhenExpression>
<subreport>
<reportElement uuid="da128070-4a36-452e-8a97-ca7576491b23" x="0" y="4" width="760" height="26">
<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>
<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="38">
<printWhenExpression><![CDATA[$P{flagDoc}]]></printWhenExpression>
<subreport>
<reportElement uuid="30b18b62-d627-4f19-aca1-06152f58c8a3" x="2" y="0" width="760" height="27">
<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>
<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="426">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<staticText>
<reportElement uuid="a5555ed3-8bce-44fd-afbb-28084239a1a1" style="title1" x="90" y="19" width="470" height="20" forecolor="#000000"/>
<textElement textAlignment="Center"/>
<text><![CDATA[COMANDO CONJUNTO DE LAS FUERZAS ARMADAS]]></text>
</staticText>
<staticText>
<reportElement uuid="98c268e9-4cb8-4184-9c02-537b79b6957c" key="" style="title2" x="90" y="42" width="470" height="16" forecolor="#000000">
<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 uuid="b7269dae-8fea-40f5-a8f0-4fb5b1935423" style="title3" x="1" y="141" width="99" height="16" forecolor="#000000">
<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[CATEGORÍA:]]></text>
</staticText>
<staticText>
<reportElement uuid="33e95c51-6de0-4170-99cd-35908e9fce31" style="title3" x="261" y="125" width="89" height="16" forecolor="#000000">
<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[TRÁMITE:]]></text>
</staticText>
<staticText>
<reportElement uuid="9755ef24-6003-430b-b359-a1db3549ac29" style="title3" x="1" y="109" width="99" height="16" forecolor="#000000">
<property name="local_mesure_unitx" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[FECHA DE SOLICITUD:]]></text>
</staticText>
<staticText>
<reportElement uuid="fbe6639b-a192-484d-9dd8-802e5501abeb" style="title3" x="1" y="125" width="99" height="16" forecolor="#000000">
<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[TIPO DE TRÁMITE:]]></text>
</staticText>
<staticText>
<reportElement uuid="2f095ec8-10d9-4b8f-a925-3f1546d5d0e2" style="title3" x="261" y="141" width="89" height="16" forecolor="#000000">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[USO/ACTIVIDAD:]]></text>
</staticText>
<image>
<reportElement uuid="3290f869-ef8a-4381-8e57-7aeff12ca363" x="2" y="26" width="68" height="68">
<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 uuid="9052917f-d24c-47b3-ae9f-c2ef5b5dfc80" x="569" y="9" width="80" height="80">
<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>
<textField>
<reportElement uuid="aeeeab82-2c2d-4f4a-b4f5-82ffaea7b551" style="normal1" x="100" y="109" width="161" height="16"/>
<textElement/>
<textFieldExpression><![CDATA[new SimpleDateFormat("dd-MM-yyyy").format($F{fechasolicitud})]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="9c3d0bee-fc9b-4cbf-9621-a3b93f08a185" style="normal1" x="100" y="125" width="161" height="16"/>
<textElement/>
<textFieldExpression><![CDATA[$P{tipoTramite}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="8c79ed8d-f4dd-411a-823c-a4e089086247" style="normal1" x="100" y="141" width="161" height="16"/>
<textElement/>
<textFieldExpression><![CDATA[$P{categoria}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="653034d4-b722-4ce9-8248-4516b62f0323" style="normal1" x="350" y="125" width="284" height="16"/>
<textElement/>
<textFieldExpression><![CDATA[$P{tipoAutorizacion}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="dd2dc614-43e9-408e-9923-6c09e1fdc171" style="normal1" x="350" y="141" width="284" height="16"/>
<textElement/>
<textFieldExpression><![CDATA[$P{usoActividad}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="9563ac8a-2086-4264-b096-0437f530314a" style="normal" isPrintRepeatedValues="false" x="1" y="157" width="648" height="37">
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box topPadding="2"/>
<textElement verticalAlignment="Middle"/>
<textFieldExpression><![CDATA["Este documento es el soporte de la información ingresada en la solicitud, no es un documento válido para el trámite ingresado, al final del proceso y una vez aprobado el trámite se generara el documento oficial."]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="3bb8e17c-e4b2-4403-83b0-b0604f3b180d" style="title3" x="0" y="202" width="150" height="16" forecolor="#000000">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[NOMBRE / RAZÓN SOCIAL:]]></text>
</staticText>
<staticText>
<reportElement uuid="f87edae9-6df5-4c82-b40a-3937ad6d6d89" style="title3" x="0" y="218" width="150" height="16" forecolor="#000000">
<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 uuid="009443dd-5321-4e42-bc2c-7400e645cd44" style="title3" x="0" y="234" width="149" height="16" forecolor="#000000">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[NOMBRE REPRESENTANTE LEGAL:]]></text>
</staticText>
<staticText>
<reportElement uuid="a14cb52b-d731-4e19-ba36-6f0f8b32cd4a" style="title3" x="0" y="250" width="150" height="16" forecolor="#000000">
<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 uuid="808df12d-879c-4b4a-b6c6-14f0e748caef" style="title3" x="0" y="266" width="150" height="16" forecolor="#000000">
<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 uuid="6f70e23b-ac5b-4c5e-9173-8f536a391a7b" style="title3" x="0" y="282" width="150" height="16" forecolor="#000000">
<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"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[PARROQUIA:]]></text>
</staticText>
<staticText>
<reportElement uuid="e4f3f8ef-35ba-4965-aa83-8ce8ca454701" style="title3" x="0" y="298" width="150" height="16" forecolor="#000000">
<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 uuid="5684f31f-2641-41c0-89ff-90b0152cd5b8" style="title3" x="0" y="314" width="150" height="16" forecolor="#000000">
<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 uuid="4290cfb9-d03a-491a-bf5d-5fae9fdb4bf8" style="title3" x="0" y="330" width="150" height="16" forecolor="#000000">
<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 uuid="77335193-a00e-4a24-a664-66e0e9c286dc" style="title3" x="0" y="346" width="150" height="16" forecolor="#000000">
<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 uuid="98ae2b12-ac36-4855-8d4b-70c92b0657e6" style="title3" x="0" y="378" width="150" height="16" forecolor="#000000">
<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>
<staticText>
<reportElement uuid="bdf07488-cde7-4728-8cf1-2fd9bfe36d0c" style="title3" x="0" y="394" width="150" height="16" forecolor="#000000">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[FECHA EXPEDICIÓN:]]></text>
</staticText>
<textField>
<reportElement uuid="395cc6b1-bcbf-4737-bb71-9dc78a2b00c3" style="normal1" x="150" y="202" width="499" height="16">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{nombre} == null ? "" : $F{nombre}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="54dfa112-3d42-40d5-9178-dc6d0728cf17" style="normal1" x="150" y="218" width="180" height="16">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{cedula} == null ? "" : $F{cedula}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="258c7831-fd11-491b-b8c1-2fd85bbcfe1d" style="normal1" x="150" y="234" width="179" height="16">
<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>
<textElement/>
<textFieldExpression><![CDATA[$F{nombrerl} == null ? "" : $F{nombrerl}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="15426e8f-581f-4c6f-8355-919fd30012fc" style="normal1" x="150" y="250" width="180" height="16">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{paisorigen} == null ? "" : $F{paisorigen}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="175d9f6c-a45c-446c-959d-6f7bfc7e492c" style="normal1" x="150" y="266" width="180" height="16">
<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/>
<textFieldExpression><![CDATA[$F{canton} == null ? "" : $F{canton}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="5e5e5fe1-450d-4a8b-b712-05b7a245be1f" style="normal1" x="150" y="282" width="180" height="16">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{parroquia} == null ? "" : $F{parroquia}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="145e8eed-eff8-4c6f-bef7-0e3fe260c3a3" style="normal1" x="150" y="298" width="180" height="16">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{telefonoconvencional} == null ? "" : $F{telefonoconvencional}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="ab65a5b6-4da9-4b57-b178-8eea796e51ff" style="normal1" x="150" y="314" width="180" height="16">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{estadocivil} == null ? "" : $F{estadocivil}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="56646f05-15ef-48ac-8eca-94777a7a032e" style="normal1" x="150" y="346" width="180" height="16">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{tipopersona} == null ? "" : $F{tipopersona}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="4cf86629-9f58-4947-93cc-0ea0229a253c" style="normal1" x="150" y="378" width="180" height="16">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{lugarorigen} == null ? "" : $F{lugarorigen}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="313c4607-9360-4501-990e-b0396a5cff86" style="normal1" isPrintRepeatedValues="false" x="480" y="394" width="169" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{fechaexpiracion} == null ? "" : (new SimpleDateFormat("dd-MM-yyyy").format($F{fechaexpiracion}))]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="ffd9c73f-80b2-4a4c-8fcc-b279cabdbd62" style="normal1" x="150" y="330" width="180" height="16">
<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>
<textElement/>
<textFieldExpression><![CDATA[$F{estatura} == null ? "" : $F{estatura}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="111b7962-7c48-4d01-9d57-bed64c836f6d" style="title3" x="330" y="218" width="150" height="16" forecolor="#000000">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[TIPO DOCUMENTO:]]></text>
</staticText>
<staticText>
<reportElement uuid="9ba22306-bf0a-4d3b-95cc-8747c7ff7beb" style="title3" x="330" y="234" width="150" height="16" forecolor="#000000">
<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 uuid="5543005c-1ecb-4803-9e74-1c0d0e5bccf9" style="title3" x="330" y="250" width="150" height="16" forecolor="#000000">
<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 uuid="9c2b583b-138e-45c2-9cae-ece65b217c35" style="title3" x="330" y="266" width="150" height="16" forecolor="#000000">
<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 uuid="eb65881f-96c8-4f2b-b2eb-229170df994f" style="title3" x="330" y="282" width="150" height="16" forecolor="#000000">
<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 uuid="43bf5d93-681c-4fdb-a83b-792a01f80c68" style="title3" x="330" y="298" width="150" height="16" forecolor="#000000">
<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 uuid="9f7f29aa-9076-45bd-ad5c-c31d3a38dca4" style="title3" x="330" y="314" width="150" height="16" forecolor="#000000">
<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 uuid="b3617dda-4d02-4197-a426-cea3fd7d0034" style="title3" x="330" y="330" width="150" height="16" forecolor="#000000">
<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 uuid="41363e95-eb69-46e8-9ff4-15cb5a99c1b4" style="title3" x="0" y="410" width="150" height="16" forecolor="#000000">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[PROFESIÓN:]]></text>
</staticText>
<staticText>
<reportElement uuid="370435b5-bc62-4c49-baff-894f4a5ab022" style="title3" x="330" y="346" width="150" height="16" forecolor="#000000">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[EMAIL:]]></text>
</staticText>
<staticText>
<reportElement uuid="f8809fea-d4b4-4a58-8a5e-33f429c0ecd8" style="title3" x="330" y="378" width="150" height="16" forecolor="#000000">
<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>
<staticText>
<reportElement uuid="8a87b4f4-893b-41fa-a00a-dfe92e2db84d" style="title3" x="330" y="394" width="150" height="16" forecolor="#000000">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[FECHA CADUCA:]]></text>
</staticText>
<textField>
<reportElement uuid="be70bb6d-2dae-4212-b722-a388024b33ab" style="normal1" x="150" y="394" width="179" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{fechaemision} == null ? "" : (new SimpleDateFormat("dd-MM-yyyy").format($F{fechaemision}))]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="f4877331-52d5-4e6c-977d-05a2a78723fb" style="normal1" isPrintRepeatedValues="false" x="480" y="218" width="169" height="16">
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{tipodocumento} == null ? "" : $F{tipodocumento}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="e10fd72a-3dcd-42c9-84e8-642d0c3b461e" style="normal1" isPrintRepeatedValues="false" x="480" y="250" width="169" height="16"/>
<textElement/>
<textFieldExpression><![CDATA[$F{cedularl} == null ? "" : $F{cedularl}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="2dbf6ff9-8628-4d25-bd2f-32658b95624f" style="normal1" isPrintRepeatedValues="false" x="480" y="266" width="169" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{provincia} == null ? "" : $F{provincia}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="4e5b6656-7d2c-443a-9c99-fdfab59bda87" style="normal1" isPrintRepeatedValues="false" x="480" y="282" width="169" height="16">
<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/>
<textFieldExpression><![CDATA[$F{ciudad} == null ? "" : $F{ciudad}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="ce699d08-050e-4861-bc04-047f1efad8b4" style="normal1" isPrintRepeatedValues="false" x="480" y="298" width="169" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$P{direccion}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="2122d295-2325-4b85-8adc-4a3d968fc679" style="normal1" isPrintRepeatedValues="false" x="480" y="314" width="169" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{celular} == null ? "" : $F{celular}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="e0ea6e82-0aeb-4b2a-814e-f19d025a613e" style="normal1" isPrintRepeatedValues="false" x="480" y="330" width="169" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{genero} == null ? "" : $F{genero}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true">
<reportElement uuid="a9e71530-4595-4fd0-9a0e-88dfe5b74241" style="normal1" isPrintRepeatedValues="false" x="150" y="410" width="179" height="16" isPrintWhenDetailOverflows="true">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<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>
<textElement/>
<textFieldExpression><![CDATA[$F{profesion} == null ? "" : $F{profesion}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="d55c68cf-5bd6-4ce6-bfe5-b3af8b29cb6c" style="normal1" isPrintRepeatedValues="false" x="480" y="378" width="169" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{lugardestino} == null ? "" : $F{lugardestino}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="7c100f9b-26dd-43e4-8b0d-266544072024" style="title2" x="90" y="58" width="470" height="16">
<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 uuid="b7280497-3d68-417a-808f-38c0a75d31e7" key="" style="title2" x="90" y="77" width="470" height="16" forecolor="#000000">
<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[SOLICITUD TRÁMITE]]></text>
</staticText>
<textField isBlankWhenNull="true">
<reportElement uuid="6a30e22d-6e35-49f7-a128-c00096e1e04e" style="normal1" isPrintRepeatedValues="false" x="480" y="346" width="169" height="16">
<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/>
<textFieldExpression><![CDATA[$P{email}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="c2d0cb8f-6b9a-48cb-9cc7-dade8c91101d" style="title3" x="261" y="109" width="89" height="16" forecolor="#000000">
<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. SOLICITUD:]]></text>
</staticText>
<textField>
<reportElement uuid="3d3ccdbb-cc9e-4b61-add0-1c930d580e0d" style="normal1" x="350" y="109" width="284" height="16"/>
<textElement/>
<textFieldExpression><![CDATA[$P{noSolicitud}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="8ee3fb41-a340-4161-bd6d-7958a8b951ba" style="title3" x="331" y="362" width="150" height="16" forecolor="#000000">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[COMPRADOR/CONSUMIDOR:]]></text>
</staticText>
<textField>
<reportElement uuid="b8c82b6e-3f69-444b-b277-7f1c6a189c54" style="normal1" isPrintRepeatedValues="false" x="481" y="362" width="168" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$P{usuario}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="7a43a57c-ac36-47b2-a1a2-12ff4bbd24aa" style="title3" x="1" y="362" width="150" height="16" forecolor="#000000">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[RAZÓN SOCIAL VENDEDOR:]]></text>
</staticText>
<textField>
<reportElement uuid="3687d26e-fd54-469d-8f8e-e9a1d8822fdd" style="normal1" x="151" y="362" width="180" height="16">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{nombrerazonsocialorigen} == null ? "" : $F{nombrerazonsocialorigen}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="5471ed42-136a-41bd-9ae6-e1c8eb2e505a" style="title3" x="330" y="410" width="150" height="16" forecolor="#000000">
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.x" value="px"/>
</reportElement>
<textElement textAlignment="Left"/>
<text><![CDATA[NO. SOLICITUD / AUCP:]]></text>
</staticText>
<textField>
<reportElement uuid="9b1872a7-2300-4e22-9ed0-085bf6e92c95" style="normal1" isPrintRepeatedValues="false" x="480" y="410" width="169" height="16">
<property name="com.jaspersoft.studio.unit.x" value="px"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<textElement/>
<textFieldExpression><![CDATA[$F{nosolaucp} == null ? "" : $F{nosolaucp}]]></textFieldExpression>
</textField>
</band>
</title>
<pageFooter>
<band height="46">
<textField>
<reportElement uuid="dae0a268-0ec4-4895-b188-758c6a91e990" style="normal" x="385" y="9" width="156" height="13"/>
<textElement/>
<textFieldExpression><![CDATA[$P{lugarFecha}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="e441d13c-c74c-4c69-ad86-e61c3250dbb1" style="normal" x="273" y="9" width="112" height="13"/>
<textElement/>
<text><![CDATA[Fecha emisión / hora:]]></text>
</staticText>
<textField>
<reportElement uuid="8b29d9ea-7dcd-43cc-881d-275a2244cf8e" style="normal" x="70" y="8" width="170" height="13"/>
<textElement/>
<textFieldExpression><![CDATA[$P{usuario}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="2c7a9752-e4e7-4783-998e-ce5f9d158e26" key="" style="normal" x="0" y="8" width="50" height="13"/>
<textElement/>
<text><![CDATA[Usuario:]]></text>
</staticText>
<staticText>
<reportElement uuid="c88fb39c-d0e0-4965-ba0a-f1a42f7efbaa" x="581" y="9" width="40" height="13">
<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>
<textElement/>
<text><![CDATA[Página]]></text>
</staticText>
<textField evaluationTime="Page">
<reportElement uuid="863c93ec-cc3b-4d7a-8f0c-c25f8fa3c7c5" x="621" y="9" width="20" height="13"/>
<textElement/>
<textFieldExpression><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="57fdc0f2-8637-4a2d-97cf-f8c4c9796369" x="641" y="9" width="20" height="13">
<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>
<textElement/>
<text><![CDATA[de]]></text>
</staticText>
<textField evaluationTime="Report">
<reportElement uuid="91ab8f04-592a-430f-851c-6de77f55767c" x="661" y="9" width="20" height="13"/>
<textElement/>
<textFieldExpression><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
</band>
</pageFooter>
</jasperReport>