fixes bug#AL-2308

master
Julio Heredia 2023-03-08 16:32:24 -03:00
parent f225db677d
commit ac328cf5fa
6 changed files with 82 additions and 52 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ventaboletosadm</artifactId>
<version>1.0.67</version>
<version>1.0.68</version>
<packaging>war</packaging>
<properties>

View File

@ -76,6 +76,7 @@ public class RelatorioBPe extends Relatorio {
dataResult.put("valorseguro", rset.getBigDecimal("valorseguro"));
dataResult.put("valoroutros", rset.getBigDecimal("valoroutros"));
dataResult.put("errocontingencia", rset.getString("errocontingencia"));
dataResult.put("evento", rset.getString("evento"));
this.dados.add(dataResult);
}
@ -105,7 +106,7 @@ public class RelatorioBPe extends Relatorio {
sql.append(" SELECT ");
sql.append(" dtvenda, hrvenda, locpuntoventa,numPuntoVenta, origem, destino, dtviagem, vlbpe, valortarifa, valortaxa, valorpedagio, ");
sql.append(" valorseguro, valoroutros, chbpe, protocolo, num_bpe, numserie_bpe, status, obs, qrcode, errocontingencia ");
sql.append(" valorseguro, valoroutros, chbpe, protocolo, num_bpe, numserie_bpe, status, obs, qrcode, errocontingencia, evento ");
sql.append(" FROM ( ");
getSelectFrom(sql, alias);
@ -219,8 +220,6 @@ public class RelatorioBPe extends Relatorio {
sql.append(" locpv.DESCPARADA as locpuntoventa, ");
sql.append(" pv.NUMPUNTOVENTA as numPuntoVenta, ");
sql.append(" TO_CHAR(bol.FECHORVIAJE,'dd/mm/yyyy HH24:MI') as dtviagem, ");
sql.append(" COALESCE(bol.PRECIOPAGADO,0) + coalesce(bol.IMPORTETAXAEMBARQUE,0) + coalesce(bol.IMPORTESEGURO,0) + coalesce(bol.IMPORTEPEDAGIO,0) + coalesce(bol.IMPORTEOUTROS,0) as vlbpe, ");
sql.append(" COALESCE(bol.PRECIOPAGADO,0) as valortarifa, ");
@ -234,29 +233,31 @@ public class RelatorioBPe extends Relatorio {
sql.append(" bol.NUM_BPE as num_bpe, ");
sql.append(" COALESCE(bol.NUMSERIE_BPE, '1') as numserie_bpe, ");
sql.append(" case bpe.codstat ");
sql.append(" CASE bpe.tipoevento WHEN '110111' THEN 'Cancelado' ");
sql.append(" WHEN '110116' THEN 'Alteração de Poltrona' ");
sql.append(" WHEN '110115' THEN 'Não embarcado' ELSE '' END as evento, ");
sql.append(" when '100' then ( ");
sql.append(" case bpe.codstat when '100' then ( ");
sql.append(" case ");
sql.append(" when bpe.tiposubstituicao is null and bpeSub.bpe_id is null and bpe.indcontingencia = 0 then 'Autorizado' ");
sql.append(" when bpe.tiposubstituicao is null and bpeSub.bpe_id is null and bpe.indcontingencia = 1 then 'Aut.Conting.' ");
sql.append(" when bpe.tiposubstituicao is not null then 'Autorizado/Substituição' ");
sql.append(" when bpeSub.bpe_id is not null then 'Autorizado/Substituído' ");
sql.append(" when bpe.tiposubstituicao is not null then 'Autorizado/Substituição' ");
sql.append(" when bpeSub.bpe_id is not null then 'Autorizado/Substituído' ");
sql.append(" else 'Autorizado' ");
sql.append(" end ");
sql.append(" ) ");
sql.append(" when '102' then ( ");
sql.append(" case ");
sql.append(" when bpe.tiposubstituicao is not null then 'Substituição' ");
sql.append(" when bpeSub.bpe_id is not null then 'Substituído' ");
sql.append(" when bpe.tiposubstituicao is not null then 'Substituição' ");
sql.append(" when bpeSub.bpe_id is not null then 'Substituído' ");
sql.append(" end ");
sql.append(" ) ");
sql.append(" when '135' then ( ");
sql.append(" case bpe.tipoevento ");
sql.append(" when '110111' then 'Cancelado' ");
sql.append(" when '110115' then 'Não embarcado' ");
sql.append(" when '110115' then 'Não embarcado' ");
sql.append(" else '' ");
sql.append(" end ");
sql.append(" ) ");
@ -264,8 +265,8 @@ public class RelatorioBPe extends Relatorio {
sql.append(" when '150' then 'Aut.Conting.' ");
sql.append(" when '-1' then 'Pendente Envio' ");
sql.append(" when '-2' then 'Pendente Envio' ");
sql.append(" when '-10' then 'Rejeitado Envio Contingência' ");
sql.append(" when '-20' then 'Rejeitado Envio Contingência' ");
sql.append(" when '-10' then 'Rejeitado Envio Contingência' ");
sql.append(" when '-20' then 'Rejeitado Envio Contingência' ");
sql.append(" else 'Rejeitado' ");
sql.append(" end as status, ");

View File

@ -29,3 +29,4 @@ label.serie=S
label.status=Status
label.obs=Observação
label.erroEnvioContingencia=Erro Envio em Contingência
label.evento=Tipo Evento

View File

@ -29,3 +29,4 @@ label.serie=S
label.status=Status
label.obs=Observação
label.erroEnvioContingencia=Erro Envio em Contingência
label.evento=Tipo Evento

View File

@ -1,5 +1,6 @@
<?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="RelatorioBPeRejeitadoEnvioContingencia" pageWidth="1700" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="1660" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="2de20ee0-535e-49d2-a7be-c24a30351d9f">
<!-- Created with Jaspersoft Studio version last-->
<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="RelatorioBPeRejeitadoEnvioContingencia" pageWidth="1770" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="1730" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="2de20ee0-535e-49d2-a7be-c24a30351d9f">
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
@ -7,6 +8,15 @@
<property name="net.sf.jasperreports.export.xls.exclude.origin.keep.first.band.2" value="columnHeader"/>
<property name="net.sf.jasperreports.export.xls.remove.empty.space.between.rows" value="true"/>
<property name="net.sf.jasperreports.export.xls.remove.empty.space.between.columns" value="true"/>
<property name="com.jaspersoft.studio.unit." value="pixel"/>
<property name="com.jaspersoft.studio.unit.pageHeight" value="pixel"/>
<property name="com.jaspersoft.studio.unit.pageWidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.topMargin" value="pixel"/>
<property name="com.jaspersoft.studio.unit.bottomMargin" value="pixel"/>
<property name="com.jaspersoft.studio.unit.leftMargin" value="pixel"/>
<property name="com.jaspersoft.studio.unit.rightMargin" value="pixel"/>
<property name="com.jaspersoft.studio.unit.columnWidth" value="pixel"/>
<property name="com.jaspersoft.studio.unit.columnSpacing" value="pixel"/>
<parameter name="USUARIO" class="java.lang.String"/>
<parameter name="NOME_RELATORIO" class="java.lang.String"/>
<parameter name="FILTROS" class="java.lang.String"/>
@ -23,10 +33,13 @@
<field name="obs" class="java.lang.String"/>
<field name="qrcode" class="java.lang.String"/>
<field name="errocontingencia" class="java.lang.String"/>
<field name="evento" class="java.lang.String">
<fieldDescription><![CDATA[]]></fieldDescription>
</field>
<title>
<band height="75" splitType="Stretch">
<textField pattern="" isBlankWhenNull="false">
<reportElement uuid="da52f710-3882-4beb-ba6f-870e03f6800d" mode="Transparent" x="0" y="0" width="1371" height="41" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="0" y="0" width="1445" height="41" forecolor="#000000" backcolor="#FFFFFF" uuid="da52f710-3882-4beb-ba6f-870e03f6800d"/>
<textElement textAlignment="Left" verticalAlignment="Middle" rotation="None" markup="none">
<font fontName="SansSerif" size="16" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
@ -34,7 +47,7 @@
<textFieldExpression><![CDATA[$P{NOME_RELATORIO}]]></textFieldExpression>
</textField>
<textField evaluationTime="Report" pattern="" isBlankWhenNull="false">
<reportElement uuid="2f4f1314-9363-4e6d-822f-c85c1890998b" mode="Transparent" x="1639" y="25" width="21" height="16" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="1713" y="25" width="21" height="16" forecolor="#000000" backcolor="#FFFFFF" uuid="2f4f1314-9363-4e6d-822f-c85c1890998b"/>
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="9" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
@ -42,7 +55,7 @@
<textFieldExpression><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
<textField pattern="" isBlankWhenNull="false">
<reportElement uuid="c8a70b8d-369e-48ae-a911-a5d9692316f7" mode="Transparent" x="1371" y="42" width="289" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="1445" y="42" width="289" height="15" forecolor="#000000" backcolor="#FFFFFF" uuid="c8a70b8d-369e-48ae-a911-a5d9692316f7"/>
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="10" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
@ -50,7 +63,7 @@
<textFieldExpression><![CDATA[$R{cabecalho.impressorPor}+" "+$P{USUARIO}]]></textFieldExpression>
</textField>
<textField pattern="dd/MM/yyyy HH:mm" isBlankWhenNull="false">
<reportElement uuid="ad4bbfb8-582d-4aa2-904d-8dfe60e54442" mode="Transparent" x="1556" y="0" width="104" height="25" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="1630" y="0" width="104" height="25" forecolor="#000000" backcolor="#FFFFFF" uuid="ad4bbfb8-582d-4aa2-904d-8dfe60e54442"/>
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="9" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
@ -58,7 +71,7 @@
<textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
</textField>
<textField pattern="" isBlankWhenNull="false">
<reportElement uuid="8601bf20-f5f8-4fed-9445-7adfe580d236" mode="Transparent" x="1371" y="25" width="267" height="16" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="1445" y="25" width="267" height="16" forecolor="#000000" backcolor="#FFFFFF" uuid="8601bf20-f5f8-4fed-9445-7adfe580d236"/>
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="9" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
@ -66,73 +79,73 @@
<textFieldExpression><![CDATA[$R{cabecalho.pagina}+" "+$V{PAGE_NUMBER}+" "+$R{cabecalho.de}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="b48a0903-0b2a-4ae5-ae04-811d097a9f91" x="1371" y="0" width="185" height="25"/>
<reportElement x="1445" y="0" width="185" height="25" uuid="b48a0903-0b2a-4ae5-ae04-811d097a9f91"/>
<textElement textAlignment="Right">
<font size="9" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$R{cabecalho.dataHora}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="3c577f75-c6d6-4c11-a846-bfe71a8a1b42" x="-1" y="58" width="1661" height="1"/>
<reportElement x="-1" y="58" width="1661" height="1" uuid="3c577f75-c6d6-4c11-a846-bfe71a8a1b42"/>
</line>
<textField isStretchWithOverflow="true">
<reportElement uuid="aff6535e-c25b-4f31-ad3a-baacc52e4974" x="-1" y="59" width="1661" height="15"/>
<reportElement x="-1" y="59" width="1735" height="15" uuid="aff6535e-c25b-4f31-ad3a-baacc52e4974"/>
<textElement verticalAlignment="Middle">
<font size="10" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$P{FILTROS}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="84641d2c-21a5-47f0-b4a8-afe7bf700cb6" positionType="Float" x="-1" y="74" width="1661" height="1"/>
<reportElement positionType="Float" x="-1" y="74" width="1661" height="1" uuid="84641d2c-21a5-47f0-b4a8-afe7bf700cb6"/>
</line>
</band>
</title>
<columnHeader>
<band height="15">
<textField>
<reportElement uuid="2d8bc8b7-05a7-493a-ac4f-52f7f39cfa8b" x="0" y="0" width="54" height="15"/>
<reportElement x="0" y="0" width="54" height="15" uuid="2d8bc8b7-05a7-493a-ac4f-52f7f39cfa8b"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.dataVenda}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="aae9977c-b656-4daf-8b9f-8fd3248542e3" x="54" y="0" width="49" height="15"/>
<reportElement x="54" y="0" width="49" height="15" uuid="aae9977c-b656-4daf-8b9f-8fd3248542e3"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.horaVenda}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="38753499-ea21-4051-aaa0-a8cdc36e087d" x="103" y="0" width="117" height="15"/>
<reportElement x="103" y="0" width="117" height="15" uuid="38753499-ea21-4051-aaa0-a8cdc36e087d"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.origem}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="8080038d-0253-4fe8-a21b-75c7257d81c5" x="220" y="0" width="116" height="15"/>
<reportElement x="220" y="0" width="116" height="15" uuid="8080038d-0253-4fe8-a21b-75c7257d81c5"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.destino}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="3998308e-b9fe-465e-b251-47d19d7c4ddd" x="336" y="0" width="63" height="15"/>
<reportElement x="336" y="0" width="63" height="15" uuid="3998308e-b9fe-465e-b251-47d19d7c4ddd"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.dataViagem}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="924ae914-4074-4746-97c0-b11119029cc0" x="399" y="0" width="49" height="15"/>
<reportElement x="399" y="0" width="49" height="15" uuid="924ae914-4074-4746-97c0-b11119029cc0"/>
<textElement textAlignment="Right">
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.valorBPe}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="f9f9f464-c0da-4d85-ad06-06567943eaa8" x="448" y="0" width="270" height="15"/>
<reportElement x="448" y="0" width="270" height="15" uuid="f9f9f464-c0da-4d85-ad06-06567943eaa8"/>
<box leftPadding="5"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
@ -140,28 +153,28 @@
<textFieldExpression><![CDATA[$R{label.chaveAcesso}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="fa7c03df-c59f-4e31-96fa-8a508c19746d" x="718" y="0" width="81" height="15"/>
<reportElement x="718" y="0" width="81" height="15" uuid="fa7c03df-c59f-4e31-96fa-8a508c19746d"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.numBPe}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="abec744e-661d-407e-b21b-92cedc682316" x="799" y="0" width="61" height="15"/>
<reportElement x="799" y="0" width="61" height="15" uuid="abec744e-661d-407e-b21b-92cedc682316"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.serie}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="aaabe6ae-6466-4b39-8f39-b94460463dc8" x="860" y="0" width="77" height="15"/>
<reportElement x="933" y="0" width="77" height="15" uuid="aaabe6ae-6466-4b39-8f39-b94460463dc8"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.status}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="bdb50181-e913-4a43-9344-c599b323706a" x="937" y="0" width="298" height="15"/>
<reportElement x="1010" y="0" width="298" height="15" uuid="bdb50181-e913-4a43-9344-c599b323706a"/>
<box rightPadding="0"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
@ -169,60 +182,67 @@
<textFieldExpression><![CDATA[$R{label.obs}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="52f5546a-ec0d-4d8b-a4f9-8126c2b2743e" x="1235" y="0" width="425" height="15"/>
<reportElement x="1309" y="0" width="425" height="15" uuid="52f5546a-ec0d-4d8b-a4f9-8126c2b2743e"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.erroEnvioContingencia}]]></textFieldExpression>
</textField>
<textField>
<reportElement x="860" y="0" width="73" height="15" uuid="5e52ab74-ed25-490f-8ff5-1e4cc11244dc"/>
<textElement>
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
</textElement>
<textFieldExpression><![CDATA[$R{label.evento}]]></textFieldExpression>
</textField>
</band>
</columnHeader>
<detail>
<band height="15" splitType="Stretch">
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="e29821d0-e770-43f3-a6a2-082204e4a2c4" stretchType="RelativeToTallestObject" x="0" y="0" width="54" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="0" y="0" width="54" height="15" isPrintWhenDetailOverflows="true" uuid="e29821d0-e770-43f3-a6a2-082204e4a2c4"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{dtvenda}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="b8ccaac1-5267-48a0-b637-b595f74b73a7" stretchType="RelativeToTallestObject" x="54" y="0" width="49" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="54" y="0" width="49" height="15" isPrintWhenDetailOverflows="true" uuid="b8ccaac1-5267-48a0-b637-b595f74b73a7"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{hrvenda}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="2a28ff64-e39c-456c-9dc0-514a15406ed2" stretchType="RelativeToTallestObject" x="103" y="0" width="117" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="103" y="0" width="117" height="15" isPrintWhenDetailOverflows="true" uuid="2a28ff64-e39c-456c-9dc0-514a15406ed2"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{origem}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="319b345c-ad14-4025-8fd3-3e34e8cacd54" stretchType="RelativeToTallestObject" x="220" y="0" width="116" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="220" y="0" width="116" height="15" isPrintWhenDetailOverflows="true" uuid="319b345c-ad14-4025-8fd3-3e34e8cacd54"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{destino}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="e6244540-af1b-4d94-8b0f-d2c3e501db61" stretchType="RelativeToTallestObject" x="336" y="0" width="63" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="336" y="0" width="63" height="15" isPrintWhenDetailOverflows="true" uuid="e6244540-af1b-4d94-8b0f-d2c3e501db61"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{dtviagem}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6e5187d9-591a-42ab-a394-3f990ea8adc1" stretchType="RelativeToTallestObject" x="399" y="0" width="49" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="399" y="0" width="49" height="15" isPrintWhenDetailOverflows="true" uuid="6e5187d9-591a-42ab-a394-3f990ea8adc1"/>
<textElement textAlignment="Right">
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{vlbpe}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true" hyperlinkType="Reference" hyperlinkTarget="Blank">
<reportElement uuid="6db62c93-f853-4396-89ce-afcc6d510d91" stretchType="RelativeToTallestObject" x="448" y="0" width="270" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="448" y="0" width="270" height="15" isPrintWhenDetailOverflows="true" uuid="6db62c93-f853-4396-89ce-afcc6d510d91"/>
<box leftPadding="5"/>
<textElement>
<font size="9"/>
@ -231,28 +251,28 @@
<hyperlinkReferenceExpression><![CDATA[$F{qrcode}]]></hyperlinkReferenceExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="07f16df1-fd27-46ba-9262-835eb8dddc96" stretchType="RelativeToTallestObject" x="718" y="0" width="81" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="718" y="0" width="81" height="15" isPrintWhenDetailOverflows="true" uuid="07f16df1-fd27-46ba-9262-835eb8dddc96"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{num_bpe}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="fe71d802-0ba0-4336-b76a-f72a37b23075" stretchType="RelativeToTallestObject" x="799" y="0" width="61" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="799" y="0" width="61" height="15" isPrintWhenDetailOverflows="true" uuid="fe71d802-0ba0-4336-b76a-f72a37b23075"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{numserie_bpe}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="66eaa400-673d-4b37-b2ef-982910e6c78c" stretchType="RelativeToTallestObject" x="860" y="0" width="77" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="933" y="0" width="77" height="15" isPrintWhenDetailOverflows="true" uuid="66eaa400-673d-4b37-b2ef-982910e6c78c"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{status}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="7b8ce326-5e48-4b4f-ba2d-60fabfdc4119" stretchType="RelativeToTallestObject" x="937" y="0" width="298" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="1010" y="0" width="298" height="15" isPrintWhenDetailOverflows="true" uuid="7b8ce326-5e48-4b4f-ba2d-60fabfdc4119"/>
<box rightPadding="5"/>
<textElement>
<font size="9"/>
@ -260,18 +280,25 @@
<textFieldExpression><![CDATA[$F{obs}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="8ce0dd9b-3fc7-4d21-a6fe-25e10cb1c578" stretchType="RelativeToTallestObject" x="1235" y="0" width="425" height="15" isPrintWhenDetailOverflows="true"/>
<reportElement stretchType="RelativeToTallestObject" x="1309" y="0" width="425" height="15" isPrintWhenDetailOverflows="true" uuid="8ce0dd9b-3fc7-4d21-a6fe-25e10cb1c578"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{errocontingencia}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement stretchType="RelativeToTallestObject" x="860" y="0" width="73" height="15" isPrintWhenDetailOverflows="true" uuid="fdb626c9-42c1-44e5-a790-096e8195bc8d"/>
<textElement>
<font size="9"/>
</textElement>
<textFieldExpression><![CDATA[$F{evento}]]></textFieldExpression>
</textField>
</band>
</detail>
<noData>
<band height="28">
<textField>
<reportElement uuid="6b9f63c1-76d9-4dd7-8fce-9bc0d91292af" x="0" y="1" width="575" height="26"/>
<reportElement x="0" y="1" width="575" height="26" uuid="6b9f63c1-76d9-4dd7-8fce-9bc0d91292af"/>
<textElement markup="none">
<font size="11" isBold="true"/>
</textElement>