Merge branch 'master' into AL-4555

master
Lucas Taiã 2024-08-21 23:37:19 +00:00
commit d1b8b197b2
3 changed files with 118 additions and 41 deletions

View File

@ -49,10 +49,15 @@ public class RelatorioVendasBilheteiro extends Relatorio {
sql.append(" c.CORRIDA_ID SERVICO, "); sql.append(" c.CORRIDA_ID SERVICO, ");
sql.append(" c.IMPORTEPEDAGIO PEDAGIO," ); sql.append(" c.IMPORTEPEDAGIO PEDAGIO," );
sql.append(" c.IMPORTETAXAEMBARQUE TX_EMBARQUE," ); sql.append(" c.IMPORTETAXAEMBARQUE TX_EMBARQUE," );
sql.append(" c.IMPORTEOUTROS OUTROS," ); sql.append(" c.IMPORTEOUTROS OUTROS,");
sql.append(" c.IMPORTESEGURO AS VALOR_SEGURO, ");
sql.append(" c.PRECIOPAGADO TARIFA," ); sql.append(" c.PRECIOPAGADO TARIFA," );
sql.append(" (coalesce(c.PRECIOPAGADO,0)+(coalesce(c.IMPORTEPEDAGIO,0)+ coalesce(c.IMPORTETAXAEMBARQUE,0)+ coalesce(c.IMPORTESEGURO,0)+ coalesce(c.IMPORTEOUTROS,0))) TOTAL_BILHETE, " ); sql.append(" (coalesce(c.PRECIOPAGADO,0)+(coalesce(c.IMPORTEPEDAGIO,0)+ coalesce(c.IMPORTETAXAEMBARQUE,0)+ coalesce(c.IMPORTESEGURO,0)+ coalesce(c.IMPORTEOUTROS,0))) TOTAL_BILHETE, " );
sql.append(" cs.DESCCLASE CLASSE "); sql.append(" cs.DESCCLASE CLASSE, ");
sql.append(" fp.DESCPAGO as FORMA_PAGO, ");
sql.append(" r.ruta_id as NUM_LINHA, ");
sql.append(" r.DESCRUTA as DESC_LINHA ");
sql.append(" from caja c "); sql.append(" from caja c ");
sql.append(" join PUNTO_VENTA pv on c.PUNTOVENTA_ID = pv.PUNTOVENTA_ID "); sql.append(" join PUNTO_VENTA pv on c.PUNTOVENTA_ID = pv.PUNTOVENTA_ID ");
@ -62,6 +67,11 @@ public class RelatorioVendasBilheteiro extends Relatorio {
sql.append(" join CATEGORIA ct on ct.CATEGORIA_ID = c.CATEGORIA_ID "); sql.append(" join CATEGORIA ct on ct.CATEGORIA_ID = c.CATEGORIA_ID ");
sql.append(" join CLASE_SERVICIO cs on cs.CLASESERVICIO_ID = c.CLASESERVICIO_ID "); sql.append(" join CLASE_SERVICIO cs on cs.CLASESERVICIO_ID = c.CLASESERVICIO_ID ");
sql.append(" join MARCA m on m.marca_id = c.marca_id "); sql.append(" join MARCA m on m.marca_id = c.marca_id ");
sql.append(" left join caja_formapago cfp on c.caja_id = cfp.caja_id and cfp.activo = 1 ");
sql.append(" left join forma_pago fp on cfp.formapago_id = fp.formapago_id and fp.activo = 1 ");
sql.append(" left join ruta r on r.ruta_id = c.ruta_id and r.activo = 1 ");
sql.append(" where "); sql.append(" where ");
sql.append(" m.EMPRESA_ID = :EMPRESA_ID "); sql.append(" m.EMPRESA_ID = :EMPRESA_ID ");
sql.append(" and c.FECHORVENTA >= :DATA_INICIAL "); sql.append(" and c.FECHORVENTA >= :DATA_INICIAL ");
@ -119,7 +129,10 @@ public class RelatorioVendasBilheteiro extends Relatorio {
dataResult.put("SERVICO", rset.getBigDecimal("SERVICO")); dataResult.put("SERVICO", rset.getBigDecimal("SERVICO"));
dataResult.put("DATA_VIAGEM", rset.getDate("DATA_VIAGEM")); dataResult.put("DATA_VIAGEM", rset.getDate("DATA_VIAGEM"));
dataResult.put("CLASSE", rset.getString("CLASSE")); dataResult.put("CLASSE", rset.getString("CLASSE"));
dataResult.put("FORMA_PAGO", rset.getString("FORMA_PAGO"));
dataResult.put("VALOR_SEGURO", rset.getBigDecimal("VALOR_SEGURO"));
dataResult.put("NUM_LINHA", rset.getString("NUM_LINHA"));
dataResult.put("DESC_LINHA", rset.getString("DESC_LINHA"));
this.dados.add(dataResult); this.dados.add(dataResult);
} }

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?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="RelatorioVendasBilheteiro" pageWidth="1900" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="1860" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="b92fb063-a827-4619-8a69-5c78e3afbb8c"> <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="RelatorioVendasBilheteiro" pageWidth="1900" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="1860" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="b92fb063-a827-4619-8a69-5c78e3afbb8c">
<property name="ireport.zoom" value="1.7715610000000048"/> <property name="ireport.zoom" value="1.7715610000000048"/>
<property name="ireport.x" value="2276"/> <property name="ireport.x" value="1222"/>
<property name="ireport.y" value="0"/> <property name="ireport.y" value="0"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.band.2" value="pageHeader"/> <property name="net.sf.jasperreports.export.xls.exclude.origin.band.2" value="pageHeader"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.keep.first.band.2" value="columnHeader"/> <property name="net.sf.jasperreports.export.xls.exclude.origin.keep.first.band.2" value="columnHeader"/>
@ -32,6 +32,10 @@
<field name="TOTAL_BILHETE" class="java.math.BigDecimal"/> <field name="TOTAL_BILHETE" class="java.math.BigDecimal"/>
<field name="CLASSE" class="java.lang.String"/> <field name="CLASSE" class="java.lang.String"/>
<field name="OUTROS" class="java.math.BigDecimal"/> <field name="OUTROS" class="java.math.BigDecimal"/>
<field name="FORMA_PAGO" class="java.lang.String"/>
<field name="NUM_LINHA" class="java.lang.String"/>
<field name="DESC_LINHA" class="java.lang.String"/>
<field name="VALOR_SEGURO" class="java.math.BigDecimal"/>
<background> <background>
<band splitType="Stretch"/> <band splitType="Stretch"/>
</background> </background>
@ -129,38 +133,38 @@
</band> </band>
</pageHeader> </pageHeader>
<columnHeader> <columnHeader>
<band height="15" splitType="Stretch"> <band height="17" splitType="Stretch">
<staticText> <staticText>
<reportElement uuid="148c467d-8b63-428c-8221-9219699357ba" x="244" y="0" width="92" height="15"/> <reportElement uuid="148c467d-8b63-428c-8221-9219699357ba" x="197" y="1" width="70" height="15"/>
<textElement textAlignment="Left" markup="none"> <textElement textAlignment="Left" markup="none">
<font size="8" isBold="true"/> <font size="8" isBold="true"/>
</textElement> </textElement>
<text><![CDATA[Cód. Bilheteiro]]></text> <text><![CDATA[Cód. Bilheteiro]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="8e3279f3-98b6-4f3d-9804-91dd4a58dd96" x="0" y="0" width="84" height="15"/> <reportElement uuid="8e3279f3-98b6-4f3d-9804-91dd4a58dd96" x="0" y="1" width="57" height="15"/>
<textElement textAlignment="Left" markup="none"> <textElement textAlignment="Left" markup="none">
<font size="8" isBold="true"/> <font size="8" isBold="true"/>
</textElement> </textElement>
<text><![CDATA[Cód. Agência]]></text> <text><![CDATA[Cód. Agência]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="10b5fd24-35e6-4e26-b46c-d57521e8225a" x="336" y="0" width="175" height="15"/> <reportElement uuid="10b5fd24-35e6-4e26-b46c-d57521e8225a" x="267" y="1" width="147" height="15"/>
<textElement textAlignment="Left" markup="none"> <textElement textAlignment="Left" markup="none">
<font size="8" isBold="true"/> <font size="8" isBold="true"/>
</textElement> </textElement>
<text><![CDATA[Nome Bilheteiro]]></text> <text><![CDATA[Nome Bilheteiro]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="b58aa408-1e97-42ca-9908-20720337c538" mode="Transparent" x="512" y="0" width="91" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="b58aa408-1e97-42ca-9908-20720337c538" mode="Transparent" x="414" y="1" width="53" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
</textElement> </textElement>
<text><![CDATA[Num. Passagem]]></text> <text><![CDATA[Num. Passag.]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="f3e8c856-93bd-41f2-8da5-3a1898409894" mode="Transparent" x="1239" y="0" width="50" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="f3e8c856-93bd-41f2-8da5-3a1898409894" mode="Transparent" x="1381" y="1" width="36" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -168,7 +172,7 @@
<text><![CDATA[Pedágio]]></text> <text><![CDATA[Pedágio]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="9819c745-3e18-49a6-a9f0-67386dc37552" mode="Transparent" x="814" y="0" width="210" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="9819c745-3e18-49a6-a9f0-67386dc37552" mode="Transparent" x="666" y="1" width="199" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -176,7 +180,7 @@
<text><![CDATA[Destino]]></text> <text><![CDATA[Destino]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="0f12e71c-4bea-4274-bd7e-e58a5e265bc4" mode="Transparent" x="1289" y="0" width="50" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="0f12e71c-4bea-4274-bd7e-e58a5e265bc4" mode="Transparent" x="1417" y="1" width="50" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -184,14 +188,14 @@
<text><![CDATA[Tarifa]]></text> <text><![CDATA[Tarifa]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="cba6abf0-5eaa-44cf-9011-8a532a8281b7" x="84" y="0" width="160" height="15"/> <reportElement uuid="cba6abf0-5eaa-44cf-9011-8a532a8281b7" x="57" y="1" width="140" height="15"/>
<textElement textAlignment="Left" markup="none"> <textElement textAlignment="Left" markup="none">
<font size="8" isBold="true"/> <font size="8" isBold="true"/>
</textElement> </textElement>
<text><![CDATA[ Descrição Agência]]></text> <text><![CDATA[ Descrição Agência]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="3e99e1ff-08e3-4832-8053-8108eee2b7a7" mode="Transparent" x="603" y="0" width="210" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="3e99e1ff-08e3-4832-8053-8108eee2b7a7" mode="Transparent" x="467" y="1" width="199" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -199,7 +203,7 @@
<text><![CDATA[Origem]]></text> <text><![CDATA[Origem]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="83f66491-4f20-403b-8e81-7487d5a03d5f" mode="Transparent" x="1167" y="0" width="72" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="83f66491-4f20-403b-8e81-7487d5a03d5f" mode="Transparent" x="1328" y="1" width="53" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -207,7 +211,7 @@
<text><![CDATA[T. Embarque]]></text> <text><![CDATA[T. Embarque]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="3c0dca5a-1295-4922-aeaa-0f96aab0b9b9" mode="Transparent" x="1024" y="0" width="143" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="3c0dca5a-1295-4922-aeaa-0f96aab0b9b9" mode="Transparent" x="1086" y="1" width="72" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -215,7 +219,7 @@
<text><![CDATA[Tipo do Bilhete]]></text> <text><![CDATA[Tipo do Bilhete]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="c5ac6452-b793-4851-a3d9-c82827933b06" mode="Transparent" x="1389" y="0" width="70" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="c5ac6452-b793-4851-a3d9-c82827933b06" mode="Transparent" x="1517" y="1" width="69" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -223,7 +227,7 @@
<text><![CDATA[Total Bilhetes]]></text> <text><![CDATA[Total Bilhetes]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="39b203b7-c27c-474e-a12b-a3fe0e1fd88a" mode="Transparent" x="1459" y="0" width="135" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="39b203b7-c27c-474e-a12b-a3fe0e1fd88a" mode="Transparent" x="1586" y="1" width="82" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -231,7 +235,7 @@
<text><![CDATA[Status da Passagem]]></text> <text><![CDATA[Status da Passagem]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="f9b05f2d-0048-4518-ba5f-36311649801a" mode="Transparent" x="1594" y="0" width="45" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="f9b05f2d-0048-4518-ba5f-36311649801a" mode="Transparent" x="1668" y="1" width="33" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -239,7 +243,7 @@
<text><![CDATA[Serviço]]></text> <text><![CDATA[Serviço]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="9e64f28e-32bb-41a5-bcda-fe0b863830bd" mode="Transparent" x="1780" y="0" width="80" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="9e64f28e-32bb-41a5-bcda-fe0b863830bd" mode="Transparent" x="1805" y="1" width="54" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
@ -247,143 +251,203 @@
<text><![CDATA[Data Viagem]]></text> <text><![CDATA[Data Viagem]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="60a0ad6b-68e7-4b8f-819e-ac863ac6ba68" x="1639" y="0" width="141" height="15"/> <reportElement uuid="60a0ad6b-68e7-4b8f-819e-ac863ac6ba68" x="1701" y="1" width="103" height="15"/>
<textElement markup="none"> <textElement markup="none">
<font size="8" isBold="true"/> <font size="8" isBold="true"/>
</textElement> </textElement>
<text><![CDATA[Classe]]></text> <text><![CDATA[Classe]]></text>
</staticText> </staticText>
<staticText> <staticText>
<reportElement uuid="875633e7-1078-4040-95e2-6e414146fcac" mode="Transparent" x="1339" y="0" width="50" height="15" forecolor="#000000" backcolor="#FFFFFF"/> <reportElement uuid="875633e7-1078-4040-95e2-6e414146fcac" mode="Transparent" x="1467" y="1" width="50" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none"> <textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/> <font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/> <paragraph lineSpacing="Single"/>
</textElement> </textElement>
<text><![CDATA[Outros]]></text> <text><![CDATA[Outros]]></text>
</staticText> </staticText>
<staticText>
<reportElement uuid="a587db5b-1f80-4be7-8739-4511621fa0ff" mode="Transparent" x="1158" y="1" width="109" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
</textElement>
<text><![CDATA[F. Pagamento]]></text>
</staticText>
<staticText>
<reportElement uuid="109a40f6-7c21-4975-a560-0486a9111282" mode="Transparent" x="1267" y="1" width="61" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
</textElement>
<text><![CDATA[Seguro]]></text>
</staticText>
<staticText>
<reportElement uuid="c9977b3d-0e56-4e5f-912e-bebb6577f879" mode="Transparent" x="865" y="1" width="61" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
</textElement>
<text><![CDATA[Num. Linha]]></text>
</staticText>
<staticText>
<reportElement uuid="72adc966-5f40-4a08-9bcc-02c7f4397370" mode="Transparent" x="926" y="1" width="159" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
<paragraph lineSpacing="Single"/>
</textElement>
<text><![CDATA[Desc. Linha]]></text>
</staticText>
</band> </band>
</columnHeader> </columnHeader>
<detail> <detail>
<band height="15" splitType="Stretch"> <band height="17" splitType="Stretch">
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="bc091860-adab-47d8-8352-982bc8e484a3" x="0" y="0" width="84" height="15"/> <reportElement uuid="bc091860-adab-47d8-8352-982bc8e484a3" x="0" y="1" width="57" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{CODIGO_AGENCIA}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{CODIGO_AGENCIA}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="e3a43e5d-2326-47c4-9d47-8c4d69d18d99" x="84" y="0" width="160" height="15"/> <reportElement uuid="e3a43e5d-2326-47c4-9d47-8c4d69d18d99" x="57" y="1" width="140" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{NOME_AGENCIA}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{NOME_AGENCIA}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="82c36c16-1662-4af9-a285-c935ab350e79" x="244" y="0" width="92" height="15"/> <reportElement uuid="82c36c16-1662-4af9-a285-c935ab350e79" x="197" y="1" width="70" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{CODIGO_BILHETEIRO}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{CODIGO_BILHETEIRO}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="ef45dd24-19e8-4e92-9759-f8e7a5c990eb" x="336" y="0" width="175" height="15"/> <reportElement uuid="ef45dd24-19e8-4e92-9759-f8e7a5c990eb" x="267" y="1" width="147" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{NOME_BILHETEIRO}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{NOME_BILHETEIRO}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="4cd8a33f-6aaa-47cb-949e-38c6b74d3d39" x="512" y="0" width="91" height="15"/> <reportElement uuid="4cd8a33f-6aaa-47cb-949e-38c6b74d3d39" x="414" y="1" width="53" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{NUMERO_PASSAGEM}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{NUMERO_PASSAGEM}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="17011486-0d4c-4e22-b534-48e0bb025673" x="603" y="0" width="210" height="15"/> <reportElement uuid="17011486-0d4c-4e22-b534-48e0bb025673" x="467" y="1" width="199" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{ORIGEM}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{ORIGEM}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="a89c84e4-0e13-4e85-a565-9eb0bc6e5423" x="814" y="0" width="210" height="15"/> <reportElement uuid="a89c84e4-0e13-4e85-a565-9eb0bc6e5423" x="666" y="1" width="199" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{DESTINO}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{DESTINO}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="7be97f5f-b36b-4679-befb-e5f2b4532963" x="1024" y="0" width="143" height="15"/> <reportElement uuid="7be97f5f-b36b-4679-befb-e5f2b4532963" x="1086" y="0" width="72" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{TIPO_BILHETE}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{TIPO_BILHETE}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false">
<reportElement uuid="7c1e2d86-f9ce-4730-866c-dc6cbdd0cf2c" x="1167" y="0" width="72" height="15"/> <reportElement uuid="7c1e2d86-f9ce-4730-866c-dc6cbdd0cf2c" x="1328" y="1" width="53" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{TX_EMBARQUE}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{TX_EMBARQUE}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false">
<reportElement uuid="7c0246f5-739b-440c-a242-915117bd9fd1" x="1239" y="0" width="50" height="15"/> <reportElement uuid="7c0246f5-739b-440c-a242-915117bd9fd1" x="1381" y="1" width="36" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{PEDAGIO}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{PEDAGIO}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false">
<reportElement uuid="dd401917-6047-4e1b-9722-31fe8d096594" x="1289" y="0" width="50" height="15"/> <reportElement uuid="dd401917-6047-4e1b-9722-31fe8d096594" x="1417" y="1" width="50" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{TARIFA}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{TARIFA}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false">
<reportElement uuid="4dafd61b-ce2b-4690-b029-2a1382113099" x="1389" y="0" width="70" height="15"/> <reportElement uuid="4dafd61b-ce2b-4690-b029-2a1382113099" x="1517" y="1" width="69" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{TOTAL_BILHETE}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{TOTAL_BILHETE}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="8ad565b3-b12c-4fef-a1c7-836e7415436d" x="1459" y="0" width="135" height="15"/> <reportElement uuid="8ad565b3-b12c-4fef-a1c7-836e7415436d" x="1586" y="1" width="82" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{STATUS_PASSAGEM}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{STATUS_PASSAGEM}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="b0200cfc-1b6b-4636-9f4b-5fe5d87c2687" x="1594" y="0" width="45" height="15"/> <reportElement uuid="b0200cfc-1b6b-4636-9f4b-5fe5d87c2687" x="1668" y="1" width="33" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{SERVICO}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{SERVICO}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="dd/MM/yyyy" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" pattern="dd/MM/yyyy" isBlankWhenNull="false">
<reportElement uuid="27ec5d64-d949-4b02-a4a7-d6c5db93b3bd" x="1780" y="0" width="80" height="15"/> <reportElement uuid="27ec5d64-d949-4b02-a4a7-d6c5db93b3bd" x="1805" y="1" width="54" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{DATA_VIAGEM}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{DATA_VIAGEM}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="f5f01da5-4ea3-41ba-8b58-b1f7e8e70601" x="1639" y="0" width="141" height="15"/> <reportElement uuid="f5f01da5-4ea3-41ba-8b58-b1f7e8e70601" x="1701" y="1" width="103" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{CLASSE}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{CLASSE}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false">
<reportElement uuid="8ea95b30-4077-4b9c-843a-0ec275a5a2e9" x="1339" y="0" width="50" height="15"/> <reportElement uuid="8ea95b30-4077-4b9c-843a-0ec275a5a2e9" x="1467" y="1" width="50" height="15"/>
<textElement textAlignment="Left"> <textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/> <font fontName="SansSerif" size="8"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{OUTROS}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{OUTROS}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="f9b933fd-8935-4e7e-8413-9cfeb26acead" x="1158" y="0" width="109" height="15"/>
<textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{FORMA_PAGO}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="false">
<reportElement uuid="13ac6ae0-ff26-4126-9df9-8b50705990aa" x="1267" y="1" width="61" height="15"/>
<textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{VALOR_SEGURO}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="b94b4ed0-8c08-4d1c-996a-4f2d843a0feb" x="926" y="1" width="159" height="15"/>
<textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{DESC_LINHA}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="1958e57a-de97-4d73-8e9f-b17d9ea660c7" x="865" y="1" width="61" height="15"/>
<textElement textAlignment="Left">
<font fontName="SansSerif" size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{NUM_LINHA}]]></textFieldExpression>
</textField>
</band> </band>
</detail> </detail>
<noData> <noData>