maia/.svn/pristine/70/70bcc8af576423cffac5ac9697d...

1351 lines
69 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-10-17T16:19:09 -->
<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="ingresoVentaArmaExplosivo" pageWidth="1236" pageHeight="10595" orientation="Landscape" whenNoDataType="AllSectionsNoDetail" columnWidth="1196" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" isIgnorePagination="true" uuid="80331279-9be4-4003-ad3d-d3b8bfdf2084">
<property name="com.jaspersoft.studio.data.defaultdataadapter" value="oracle"/>
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
<property name="com.jaspersoft.studio.unit." value="pixel"/>
<template><![CDATA[$P{pathstyle}]]></template>
<parameter name="pathimage" class="java.lang.String" isForPrompting="false">
<parameterDescription><![CDATA[]]></parameterDescription>
<defaultValueExpression><![CDATA["repo:/maia/1/image/logo"]]></defaultValueExpression>
</parameter>
<parameter name="pathstyle" class="java.lang.String" isForPrompting="false">
<defaultValueExpression><![CDATA["repo:/maia/1/style/style"]]></defaultValueExpression>
</parameter>
<parameter name="workingdate" class="java.lang.String" isForPrompting="false">
<defaultValueExpression><![CDATA["2014-09-20"]]></defaultValueExpression>
</parameter>
<parameter name="company" class="java.lang.Integer" isForPrompting="false">
<parameterDescription><![CDATA[compania de trabajo]]></parameterDescription>
<defaultValueExpression><![CDATA[1]]></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="fechaReporte" class="java.lang.String"/>
<parameter name="coordinadorMilitar" class="java.lang.String"/>
<parameter name="usuario" class="java.lang.String"/>
<parameter name="fechaInicio" class="java.lang.String"/>
<parameter name="fechaFin" class="java.lang.String"/>
<parameter name="codArmasDecomisadasLst" class="java.util.Collection">
<parameterDescription><![CDATA[lista de codigos de armas decomisadas]]></parameterDescription>
</parameter>
<parameter name="SUBREPORT_DIR" class="java.lang.String">
<defaultValueExpression><![CDATA["repo:/maia/1/modules/armas/subreports/"]]></defaultValueExpression>
</parameter>
<parameter name="nombreJefCentro" class="java.lang.String"/>
<parameter name="personCodeJefCentro" class="java.lang.String"/>
<parameter name="numeroDocumento" class="java.lang.String"/>
<parameter name="nombreCentroControl" class="java.lang.String"/>
<parameter name="nombreRazonSocial" class="java.lang.String"/>
<parameter name="numeroDocumentoVend" class="java.lang.String"/>
<parameter name="representanteLegal" class="java.lang.String"/>
<parameter name="representanteLegalIdent" class="java.lang.String"/>
<parameter name="direccion" class="java.lang.String"/>
<parameter name="telefono" class="java.lang.String"/>
<parameter name="tipoDocumento" class="java.lang.String"/>
<queryString language="SQL">
<![CDATA[select distinct a.ctotal,
(select b.description from tgenecatalogdetail b where b.catalog = a.clase and b.catalogcode = a.clasecodigo) as clase,
(select b.description from tgenecatalogdetail b where b.catalog = a.tipoarmaexplosivo and b.catalogcode = a.tipoarmaexplosivocodigo) as tipo,
b.lote as lote,
j.factura as factura,
nvl((select d.description from tgenecatalogdetail d where d.catalog = j.tipomovimiento and d.catalogcode = j.tipomovimientocodigo), 'INGRESO' )as tiporegistro,
trunc(a.fecha) as fecha,
a.saldoanterior as saldoanterior,
case a.ingresoegreso when 'ING' then a.cantidadmovimiento else 0 end as ingreso,
case a.ingresoegreso when 'EGR' then a.cantidadmovimiento else 0 end as egreso,
a.total as saldo,
(select x.name from tcustpersondetail x where x.personcode=NVL(j.personcodecomprador,e.personcode) and x.dateto = to_date('31/12/2999','dd/MM/yyyy')) as nombre,
(select z.identification from tcustpersondetail z where z.personcode=NVL(j.personcodecomprador,e.personcode) and z.dateto = to_date('31/12/2999','dd/MM/yyyy')) as cedula,
(select max(y.address) from tcustpersonaddress y where y.personcode=NVL(j.personcodecomprador,e.personcode) and y.principal = 'Y' and y.dateto = to_date('31/12/2999','dd/MM/yyyy')) as direccion,
(select max(u.phonenumber) from tcustpersonphone u where u.personcode=NVL(j.personcodecomprador,e.personcode) and u.dateto = to_date('31/12/2999','dd/MM/yyyy')) as telefono,
a.unidadmedidapeso as unidad,
a.unidadmedidapesocodigo as unidadcodigo
FROM tarmtotalpersona a
inner join tcustpersondetail e on a.personcodigo = e.personcode
inner join TARMTIPOARMAEXPLOSIVO x on a.clase=x.clase and a.tipoarmaexplosivo = x.tipoarmaexplosivo and a.unidadmedidapeso = x.unidadmedidapeso
left join tarmmovimientoarmas j on j.cmovimiento = a.cmovimiento
inner join tarmarmas b on a.carma = b.carma
inner join tarmregistroarmas k on b.cregistro=k.cregistro
where e.dateto = to_date('31/12/2999','dd/MM/yyyy')
and e.identificationcatalog = $P{tipoDocumento}
and e.identification = $P{numeroDocumento}
and trunc(a.fecha) >= to_date( $P{fechaInicio} ,'dd/MM/yyyy')
and trunc(a.fecha) <= to_date( $P{fechaFin} ,'dd/MM/yyyy')
order by a.ctotal]]>
</queryString>
<field name="clase" class="java.lang.String"/>
<field name="tipo" class="java.lang.String"/>
<field name="lote" class="java.lang.String"/>
<field name="factura" class="java.lang.String"/>
<field name="tiporegistro" class="java.lang.String"/>
<field name="fecha" class="java.util.Date">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<field name="saldoanterior" class="java.lang.String"/>
<field name="ingreso" class="java.lang.String"/>
<field name="egreso" class="java.lang.String"/>
<field name="saldo" class="java.lang.String"/>
<field name="nombre" class="java.lang.String"/>
<field name="cedula" class="java.lang.String"/>
<field name="direccion" class="java.lang.String"/>
<field name="telefono" class="java.lang.String"/>
<field name="unidad" class="java.lang.String"/>
<background>
<band splitType="Stretch"/>
</background>
<title>
<band height="190" splitType="Stretch">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<staticText>
<reportElement style="title" x="223" y="16" width="734" height="20" forecolor="#000000" uuid="a5555ed3-8bce-44fd-afbb-28084239a1a1">
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
<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="Center"/>
<text><![CDATA[COMANDO CONJUNTO DE LAS FUERZAS ARMADAS]]></text>
</staticText>
<staticText>
<reportElement key="" style="title1" x="223" y="36" width="734" height="18" forecolor="#000000" uuid="98c268e9-4cb8-4184-9c02-537b79b6957c">
<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"/>
<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="Center"/>
<text><![CDATA[DEPARTAMENTO DE CONTROL DE ARMAS]]></text>
</staticText>
<image>
<reportElement x="159" y="16" width="64" height="92" uuid="5c1c706c-0485-4d8f-be4c-9ad18ad76225">
<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"/>
</reportElement>
<imageExpression><![CDATA[$P{pathLogoIzquierda}]]></imageExpression>
</image>
<staticText>
<reportElement key="" style="title2" x="223" y="68" width="734" height="16" forecolor="#000000" uuid="a056d06a-cfc1-4922-b643-c38d1a76ced3">
<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"/>
<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>
<textElement textAlignment="Center"/>
<text><![CDATA[LIBRO DE CONTROL DEL INGRESO Y VENTAS DE ARMAS, MUNICIONES, EXPLOSIVOS, ACCESORIOS, S. QUÍMICAS Y OTRAS ]]></text>
</staticText>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="title3" stretchType="RelativeToTallestObject" x="223" y="54" width="734" height="14" forecolor="#000000" uuid="f4e50898-607e-47f7-91c1-0475bd3f03db">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$P{nombreCentroControl}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="title3" stretchType="RelativeToTallestObject" x="223" y="100" width="734" height="14" forecolor="#000000" uuid="ee1583cc-bd25-47ce-a6cf-05dbd1bdbb8c">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA["De: "+$P{fechaInicio} + " Al: "+$P{fechaFin}]]></textFieldExpression>
</textField>
<image>
<reportElement x="957" y="10" width="80" height="98" uuid="7c474f2a-dd84-49ba-9e39-27cad34e3c89">
<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"/>
</reportElement>
<imageExpression><![CDATA[$P{pathLogoDerecha}]]></imageExpression>
</image>
<staticText>
<reportElement key="" style="title2" x="223" y="84" width="734" height="16" forecolor="#000000" uuid="85de560b-3a95-44e4-a4d3-0bd0611b42b0">
<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"/>
<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>
<textElement textAlignment="Center"/>
<text><![CDATA[(Art. 29 de la Ley de Armas y Art. 55 del Reglamento a la Ley de Armas)]]></text>
</staticText>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="title3" stretchType="RelativeToTallestObject" x="151" y="119" width="295" height="16" forecolor="#000000" uuid="861041f7-6be8-4495-bcca-f55169cffb47">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left" verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$P{nombreRazonSocial}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="title3" stretchType="RelativeToTallestObject" x="151" y="139" width="295" height="16" forecolor="#000000" uuid="1101b0c0-fd37-422b-bde0-632444dcd257">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left" verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$P{representanteLegal}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="title3" stretchType="RelativeToTallestObject" x="151" y="159" width="295" height="16" forecolor="#000000" uuid="d316caad-24e2-42be-bddd-7257cd453811">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left" verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$P{direccion}]]></textFieldExpression>
</textField>
<staticText>
<reportElement style="title3" x="0" y="119" width="151" height="16" uuid="e7230d52-d2f5-41d9-b591-97b0fb12ef37">
<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"/>
<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>
<text><![CDATA[NOMBRE / RAZÓN SOCIAL:]]></text>
</staticText>
<staticText>
<reportElement style="title3" x="0" y="139" width="151" height="16" uuid="42f9df9e-6688-4228-9d79-d238678559db">
<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"/>
<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>
<text><![CDATA[REPRESENTANTE LEGAL:]]></text>
</staticText>
<staticText>
<reportElement style="title3" x="0" y="159" width="151" height="16" uuid="c3ed5d0a-5796-4c47-a3a7-e431fdcafc94">
<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"/>
<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>
<text><![CDATA[DIRECCIÓN:]]></text>
</staticText>
<staticText>
<reportElement style="title3" x="446" y="119" width="120" height="16" uuid="9c271c54-b77d-4ecd-a07d-f397bfb2c273">
<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"/>
<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>
<text><![CDATA[No. DOCUMENTO:]]></text>
</staticText>
<staticText>
<reportElement style="title3" x="446" y="139" width="120" height="16" uuid="f007a7af-fa2d-4e14-958d-f6003a06e732">
<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"/>
<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>
<text><![CDATA[No. CÉDULA:]]></text>
</staticText>
<staticText>
<reportElement style="title3" x="446" y="159" width="120" height="16" uuid="88cf982d-0c8e-4217-ad81-bc3d547a23a9">
<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"/>
<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>
<text><![CDATA[TELÉFONO:]]></text>
</staticText>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="title3" stretchType="RelativeToTallestObject" x="566" y="119" width="255" height="16" forecolor="#000000" uuid="10535e75-1793-48bd-b677-c2d2673548fa">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left" verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$P{numeroDocumento}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="title3" stretchType="RelativeToTallestObject" x="566" y="139" width="255" height="16" forecolor="#000000" uuid="41357c9c-d313-4314-88e7-8369025a1f27">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left" verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$P{representanteLegalIdent}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement style="title3" stretchType="RelativeToTallestObject" x="566" y="159" width="255" height="16" forecolor="#000000" uuid="21988957-8399-4f4d-aa3d-b418aad13b81">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left" verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$P{telefono}]]></textFieldExpression>
</textField>
</band>
</title>
<columnHeader>
<band height="53" splitType="Stretch">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<staticText>
<reportElement style="title2" stretchType="RelativeToTallestObject" x="0" y="0" width="28" height="53" forecolor="#000000" uuid="a56649bd-1301-4722-93ab-4296227efea9">
<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>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[ORD.]]></text>
</staticText>
<staticText>
<reportElement style="title2" stretchType="RelativeToTallestObject" x="28" y="0" width="119" height="53" forecolor="#000000" uuid="2855d5a8-74a4-4103-a919-ee42294f8267">
<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"/>
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[CLASE]]></text>
</staticText>
<staticText>
<reportElement style="title2" stretchType="RelativeToTallestObject" x="147" y="0" width="131" height="53" forecolor="#000000" uuid="fa752abe-ce12-4b29-bcec-c38c3f805fcd">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[TIPO]]></text>
</staticText>
<staticText>
<reportElement style="title2" stretchType="RelativeToTallestObject" x="278" y="0" width="55" height="53" forecolor="#000000" uuid="3e5f1362-12ec-4a33-8364-453be1d29a32">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[SERIE / LOTE]]></text>
</staticText>
<staticText>
<reportElement style="title2" stretchType="RelativeToTallestObject" x="413" y="0" width="55" height="53" forecolor="#000000" uuid="6e7f3ffc-cf20-4856-93aa-9fd5ac2e82d4">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[FACTURA]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="468" y="0" width="69" height="53" forecolor="#000000" uuid="568c65ee-758a-4290-ac21-1555c02a8188">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[FECHA]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="537" y="27" width="40" height="26" forecolor="#000000" uuid="f67c4afe-34ee-4269-bf9b-6707466cc5a4">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[PESO]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="537" y="0" width="80" height="27" forecolor="#000000" uuid="6b8188dc-5bed-4945-88de-330242f55688">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[SALDO ANTER.]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="577" y="27" width="40" height="26" forecolor="#000000" uuid="44605cfe-470d-4c4a-8ee7-4201a6e9e77e">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[UNID.]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="617" y="0" width="80" height="27" forecolor="#000000" uuid="7f4e0b3b-1b02-4dec-8f64-0b021d700e2c">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[INGRESOS]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="617" y="27" width="40" height="26" forecolor="#000000" uuid="0846db9f-baaf-45f0-938c-faf8122a8684">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[PESO]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="657" y="27" width="40" height="26" forecolor="#000000" uuid="98f03ff3-2232-4c88-89a6-af47ce7d93d7">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[UNID.]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="697" y="0" width="80" height="27" forecolor="#000000" uuid="783354b0-1d5f-4640-b2fc-085d4d66c240">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[EGRESOS]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="697" y="27" width="40" height="26" forecolor="#000000" uuid="a9fb9840-a9f8-44ac-8c81-9da4b03632f7">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[PESO]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="737" y="27" width="40" height="26" forecolor="#000000" uuid="db096421-4571-4a03-8baf-5fb4b50d2778">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[UNID.]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="777" y="0" width="80" height="27" forecolor="#000000" uuid="cfa60029-53e4-4222-a080-2ed79e0796ac">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[SALDO]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="777" y="27" width="40" height="26" forecolor="#000000" uuid="fae5d3b5-5605-4d55-9d50-5bb77d534fea">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[PESO]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="817" y="27" width="40" height="26" forecolor="#000000" uuid="1d69438c-9b0d-4015-add5-d5a243440487">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[UNID.]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="857" y="0" width="336" height="27" forecolor="#000000" uuid="92d4e2d9-e138-4860-88de-59dd4728ed3d">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[DATOS CLIENTE]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="857" y="27" width="130" height="26" forecolor="#000000" uuid="1deb7afe-de8d-4c55-86c4-174e3934db00">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[NOMBRE]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="987" y="27" width="65" height="26" forecolor="#000000" uuid="b191ef1a-bada-4e2f-b186-bf762f867799">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[C.I.]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="1052" y="27" width="80" height="26" forecolor="#000000" uuid="8c7fed1f-a924-435b-bb69-9d7eb21c2075">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[DIRECCIÓN]]></text>
</staticText>
<staticText>
<reportElement style="title2" x="1132" y="27" width="61" height="26" forecolor="#000000" uuid="0ea24435-bdf7-4fdb-8a0b-4f2b7de4f386">
<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="local_mesure_unitwidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.width" value="px"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[TELÉFONO]]></text>
</staticText>
<staticText>
<reportElement style="title2" stretchType="RelativeToTallestObject" x="333" y="0" width="80" height="53" forecolor="#000000" uuid="8614f295-0f9d-4b94-9493-ce8f9fa73690">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box>
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement textAlignment="Center" verticalAlignment="Top">
<font size="7" isBold="true"/>
</textElement>
<text><![CDATA[TIPO DE REGISTRO]]></text>
</staticText>
</band>
</columnHeader>
<detail>
<band height="44" splitType="Stretch">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="28" y="0" width="119" height="39" forecolor="#000000" uuid="0b746cf5-9b9f-408a-95f2-9f6f27235cf3">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{clase}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="147" y="0" width="131" height="39" forecolor="#000000" uuid="01155e11-5d80-4479-96f8-9810754ea07a">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{tipo}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="278" y="0" width="55" height="39" forecolor="#000000" uuid="028c27ae-3e3f-44d1-867e-7b7a34c73287">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{lote}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="413" y="0" width="55" height="39" forecolor="#000000" uuid="fc6aa335-637b-4842-8e56-bdbf8f12c8b8">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{factura}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="468" y="0" width="69" height="39" forecolor="#000000" uuid="cb91ed70-8c99-4b75-ada4-119510136b74">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[new SimpleDateFormat("dd-MM-yyyy").format($F{fecha})]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="537" y="0" width="40" height="39" forecolor="#000000" uuid="7f213275-b518-48bd-8076-079cca412cad">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
<paragraph lineSpacing="Proportional"/>
</textElement>
<textFieldExpression><![CDATA[$F{unidad}.equals("UNIDAD") ? " ":$F{saldoanterior}+" "+$F{unidad}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="577" y="0" width="40" height="39" forecolor="#000000" uuid="4ed3e24d-254f-4c76-953f-66e06129a570">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{unidad}.equals("UNIDAD") ? $F{saldoanterior}+" "+$F{unidad}:" "]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="617" y="0" width="40" height="39" forecolor="#000000" uuid="6b5a7890-697c-4896-bdd0-2d80cfd39f2d">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
<paragraph lineSpacing="Proportional"/>
</textElement>
<textFieldExpression><![CDATA[$F{unidad}.equals("UNIDAD") ? " ":$F{ingreso}+" "+$F{unidad}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="657" y="0" width="40" height="39" forecolor="#000000" uuid="76c6a8a9-5619-4933-887d-db90111748ed">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{unidad}.equals("UNIDAD") ? $F{ingreso}+" "+$F{unidad}:" "]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="697" y="0" width="40" height="39" forecolor="#000000" uuid="49c0d34d-28c0-4e05-b25e-74a22160196d">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{unidad}.equals("UNIDAD") ? " ":$F{egreso}+" "+$F{unidad}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="737" y="0" width="40" height="39" forecolor="#000000" uuid="07bf4ad7-8730-4fc8-9442-a7a74c9332c0">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{unidad}.equals("UNIDAD") ? $F{egreso}+" "+$F{unidad}:" "]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="777" y="0" width="40" height="39" forecolor="#000000" uuid="de1cb2c8-1789-4a02-a888-6f7f2e7ef451">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{unidad}.equals("UNIDAD") ? " ":$F{saldo}+" "+$F{unidad}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="817" y="0" width="40" height="39" forecolor="#000000" uuid="0a8e3433-6160-4851-9602-ee9b15806be1">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{unidad}.equals("UNIDAD") ? $F{saldo}+" "+$F{unidad}:" "]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="857" y="0" width="130" height="39" forecolor="#000000" uuid="98937e48-e355-4316-bd92-e5525d66884e">
<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"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{nombre}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="987" y="0" width="65" height="39" forecolor="#000000" uuid="b9affb78-0a96-40ae-b9c7-da95a933bb25">
<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"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{cedula}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="1052" y="0" width="80" height="39" forecolor="#000000" uuid="9773ff17-6386-46eb-bfd5-763ea2dc69d1">
<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"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{direccion}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="1132" y="0" width="61" height="39" forecolor="#000000" uuid="5bcabcba-113f-4db5-bb0c-22fa938c5c33">
<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"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{telefono}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="333" y="0" width="80" height="39" forecolor="#000000" uuid="6eeff6d3-fefa-4131-9d4a-33b096113cd0">
<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="com.jaspersoft.studio.unit.width" value="px"/>
<property name="local_mesure_unitwidth" value="pixel"/>
<property name="local_mesure_unity" value="pixel"/>
<property name="com.jaspersoft.studio.unit.y" value="px"/>
</reportElement>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$F{tiporegistro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement key="" style="normal1" stretchType="RelativeToTallestObject" x="0" y="0" width="28" height="39" forecolor="#000000" uuid="b2cd44d5-2830-4627-ab7d-d7d01e068c4d">
<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>
<box leftPadding="2" rightPadding="2">
<topPen lineWidth="0.5"/>
<leftPen lineWidth="0.5"/>
<bottomPen lineWidth="0.5"/>
<rightPen lineWidth="0.5"/>
</box>
<textElement verticalAlignment="Top">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$V{COLUMN_COUNT}]]></textFieldExpression>
</textField>
</band>
</detail>
<columnFooter>
<band height="13" splitType="Stretch">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</band>
</columnFooter>
<pageFooter>
<band height="45" splitType="Stretch">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</band>
</pageFooter>
<summary>
<band height="34" splitType="Stretch">
<property name="local_mesure_unitheight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.height" value="px"/>
</band>
</summary>
</jasperReport>