fixes bug#14013

dev:wilian
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@91712 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2019-04-09 13:13:30 +00:00
parent 23c064d9b8
commit b97d811cff
3 changed files with 53 additions and 34 deletions

View File

@ -73,7 +73,8 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
sql.append(" count(bo.boleto_id) as ocupacao, ");
sql.append(" ts.descservicio as tipo_servico, ");
sql.append(" e.nombempresa as empresa, ");
sql.append(" r.INDSENTIDOIDA AS sentido ");
sql.append(" r.INDSENTIDOIDA AS sentido, ");
sql.append(" nvl(ct.plataforma,'') AS plataforma ");
sql.append("from boleto bo ");
sql.append(" join corrida co on co.corrida_id = bo.corrida_id and co.feccorrida = bo.feccorrida ");
sql.append(" join ruta r on co.ruta_id = r.ruta_id ");
@ -84,6 +85,7 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
sql.append(" join rol_operativo ro on ro.roloperativo_id = co.roloperativo_id ");
sql.append(" join diagrama_autobus da on ro.diagramaautobus_id = da.diagramaautobus_id ");
sql.append(" join tipo_servicio ts on ts.tiposervicio_id = co.tiposervicio_id ");
sql.append(" left join corrida_tramo ct on ct.corrida_id = bo.corrida_id and ct.feccorrida = bo.feccorrida and ct.numsecuencia = 1 and ct.activo = 1 ");
sql.append(" where bo.motivocancelacion_id is null and bo.numasiento is not null and bo.indstatusoperacion = 'F' ");
if (parametros.get("HORA_INICIAL") == null && parametros.get("HORA_FINAL") == null) {
sql.append(" and co.fechorsalida >= :DATA_INICIAL and co.fechorsalida <= :DATA_FINAL ");
@ -135,7 +137,7 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
sql.append(" case when ((ori.indvisibleinternet is null or ori.indvisibleinternet = 1) ");
sql.append(" and (des.indvisibleinternet is null or des.indvisibleinternet = 1)) then 'SIM' else 'NÃO' end, ");
sql.append(" ori.descparada, des.descparada, cs.descclase, ");
sql.append(" da.cantasientos, ts.descservicio, e.nombempresa, r.INDSENTIDOIDA ");
sql.append(" da.cantasientos, ts.descservicio, e.nombempresa, r.INDSENTIDOIDA, nvl(ct.plataforma,'') ");
sql.append("order by data, horario, servico, linha, origem, destino ");
sql.append(" ), nao_vendidos as ( ");
@ -162,7 +164,8 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
sql.append(" 0 AS ocupacao, ");
sql.append(" ts.descservicio AS tipo_servico, ");
sql.append(" e.nombempresa AS empresa, ");
sql.append(" r.INDSENTIDOIDA AS sentido ");
sql.append(" r.INDSENTIDOIDA AS sentido, ");
sql.append(" nvl(ct.plataforma,'') AS plataforma ");
sql.append(" FROM corrida co ");
sql.append(" JOIN ruta r ");
sql.append(" ON co.ruta_id = r.ruta_id ");
@ -180,6 +183,7 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
sql.append(" ON ro.diagramaautobus_id = da.diagramaautobus_id ");
sql.append(" JOIN tipo_servicio ts ");
sql.append(" ON ts.tiposervicio_id = co.tiposervicio_id ");
sql.append(" left join corrida_tramo ct on ct.corrida_id = co.corrida_id and ct.feccorrida = co.feccorrida and ct.numsecuencia = 1 and ct.activo = 1 ");
sql.append(" WHERE co.activo = 1 ");
if (parametros.get("HORA_INICIAL") == null && parametros.get("HORA_FINAL") == null) {
sql.append(" and co.FECHORSALIDA >= :DATA_INICIAL and co.FECHORSALIDA <= :DATA_FINAL ");
@ -214,10 +218,10 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
}
sql.append(" )select ");
sql.append(" DATA_CORRIDA, DATA, LINHA, CODLINHA, SERVICO, INTERNET, HORARIO, ORIGEM, DESTINO, CLASSE, CAPACIDADE, SUM(OCUPACAO) OCUPACAO, TIPO_SERVICO, EMPRESA, SENTIDO ");
sql.append(" DATA_CORRIDA, DATA, LINHA, CODLINHA, SERVICO, INTERNET, HORARIO, ORIGEM, DESTINO, CLASSE, CAPACIDADE, SUM(OCUPACAO) OCUPACAO, TIPO_SERVICO, EMPRESA, SENTIDO, PLATAFORMA ");
sql.append(" from ( ");
sql.append(" select * from vendidos v union select * from nao_vendidos ) ");
sql.append(" GROUP BY DATA_CORRIDA, DATA, LINHA, CODLINHA, SERVICO, INTERNET, HORARIO, ORIGEM, DESTINO, CLASSE, CAPACIDADE, TIPO_SERVICO, EMPRESA, SENTIDO ");
sql.append(" GROUP BY DATA_CORRIDA, DATA, LINHA, CODLINHA, SERVICO, INTERNET, HORARIO, ORIGEM, DESTINO, CLASSE, CAPACIDADE, TIPO_SERVICO, EMPRESA, SENTIDO, PLATAFORMA ");
sql.append(" order by data, horario, servico, linha, origem, destino ");

View File

@ -1,7 +1,7 @@
<?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="RelatorioDemandasDetalhadoNovoLayout" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="842" leftMargin="0" rightMargin="0" topMargin="20" bottomMargin="20" uuid="b92fb063-a827-4619-8a69-5c78e3afbb8c">
<property name="ireport.zoom" value="3.2210200000000144"/>
<property name="ireport.x" value="2018"/>
<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="RelatorioDemandasDetalhadoNovoLayout" pageWidth="920" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="920" leftMargin="0" rightMargin="0" topMargin="20" bottomMargin="20" uuid="b92fb063-a827-4619-8a69-5c78e3afbb8c">
<property name="ireport.zoom" value="2.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
<style name="textStyle" isDefault="true" fontSize="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false"/>
<style name="table">
@ -62,28 +62,28 @@
<title>
<band height="13">
<staticText>
<reportElement uuid="9fc7e58e-8625-41c4-a8ee-6454f6382d46" x="92" y="0" width="46" height="13"/>
<reportElement x="92" y="0" width="46" height="13" uuid="9fc7e58e-8625-41c4-a8ee-6454f6382d46"/>
<textElement textAlignment="Center">
<font size="8" isBold="true"/>
</textElement>
<text><![CDATA[Serviço]]></text>
</staticText>
<staticText>
<reportElement uuid="3766fa33-6281-4576-a9d1-3b984e1976d3" x="0" y="0" width="61" height="13"/>
<reportElement x="0" y="0" width="61" height="13" uuid="3766fa33-6281-4576-a9d1-3b984e1976d3"/>
<textElement textAlignment="Center">
<font size="8" isBold="true"/>
</textElement>
<text><![CDATA[Data]]></text>
</staticText>
<staticText>
<reportElement uuid="7e1f6b82-8a1f-4719-b942-41f0d7027aa8" x="202" y="0" width="46" height="13"/>
<reportElement x="222" y="0" width="46" height="13" uuid="7e1f6b82-8a1f-4719-b942-41f0d7027aa8"/>
<textElement textAlignment="Center">
<font size="8" isBold="true"/>
</textElement>
<text><![CDATA[Horário]]></text>
</staticText>
<staticText>
<reportElement uuid="95367884-2b52-4bbd-b716-852ff13290e9" mode="Transparent" x="591" y="0" width="45" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="618" y="0" width="50" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="95367884-2b52-4bbd-b716-852ff13290e9"/>
<textElement textAlignment="Center" 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"/>
@ -91,7 +91,7 @@
<text><![CDATA[Ocupação]]></text>
</staticText>
<staticText>
<reportElement uuid="a39ab8f3-becb-44e3-b4f5-b7c43889508c" mode="Transparent" x="348" y="0" width="100" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="368" y="0" width="100" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="a39ab8f3-becb-44e3-b4f5-b7c43889508c"/>
<textElement textAlignment="Center" 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"/>
@ -99,7 +99,7 @@
<text><![CDATA[Destino]]></text>
</staticText>
<staticText>
<reportElement uuid="170230ea-2a12-4444-9f13-c706d557ae8d" mode="Transparent" x="636" y="0" width="68" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="668" y="0" width="75" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="170230ea-2a12-4444-9f13-c706d557ae8d"/>
<textElement textAlignment="Center" 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"/>
@ -107,7 +107,7 @@
<text><![CDATA[Tipo]]></text>
</staticText>
<staticText>
<reportElement uuid="c0542d93-dde4-448d-932c-453d6a4a6882" mode="Transparent" x="248" y="0" width="100" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="268" y="0" width="100" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="c0542d93-dde4-448d-932c-453d6a4a6882"/>
<textElement textAlignment="Center" 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"/>
@ -115,7 +115,7 @@
<text><![CDATA[Origem]]></text>
</staticText>
<staticText>
<reportElement uuid="9c65b631-065c-49af-ab2c-3bcea583eaea" mode="Transparent" x="538" y="0" width="53" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="558" y="0" width="60" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="9c65b631-065c-49af-ab2c-3bcea583eaea"/>
<textElement textAlignment="Center" 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"/>
@ -123,7 +123,7 @@
<text><![CDATA[Capacidade]]></text>
</staticText>
<staticText>
<reportElement uuid="a7f96097-c8fd-4ba0-bea7-7b40a0fc81f7" mode="Transparent" x="448" y="0" width="90" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="468" y="0" width="90" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="a7f96097-c8fd-4ba0-bea7-7b40a0fc81f7"/>
<textElement textAlignment="Center" 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"/>
@ -131,7 +131,7 @@
<text><![CDATA[Classe]]></text>
</staticText>
<staticText>
<reportElement uuid="f596b16a-f9d9-42f5-b86f-3f468b0deb8f" mode="Transparent" x="704" y="0" width="57" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="743" y="0" width="65" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="f596b16a-f9d9-42f5-b86f-3f468b0deb8f"/>
<textElement textAlignment="Center" 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"/>
@ -139,27 +139,35 @@
<text><![CDATA[%Ocupação]]></text>
</staticText>
<staticText>
<reportElement uuid="3766fa33-6281-4576-a9d1-3b984e1976d3" x="61" y="0" width="31" height="13"/>
<reportElement x="61" y="0" width="31" height="13" uuid="3766fa33-6281-4576-a9d1-3b984e1976d3"/>
<textElement textAlignment="Center">
<font size="8" isBold="true"/>
</textElement>
<text><![CDATA[Linha]]></text>
</staticText>
<staticText>
<reportElement uuid="a427bc80-0924-441c-896b-a888a929d4f5" x="138" y="0" width="64" height="13"/>
<reportElement x="138" y="0" width="84" height="13" uuid="a427bc80-0924-441c-896b-a888a929d4f5"/>
<textElement textAlignment="Center">
<font size="8" isBold="true"/>
</textElement>
<text><![CDATA[Empresa]]></text>
</staticText>
<staticText>
<reportElement uuid="8213fc73-da7f-47fc-b430-e9f4f3e4add7" mode="Transparent" x="761" y="0" width="30" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
<reportElement mode="Transparent" x="808" y="0" width="43" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="8213fc73-da7f-47fc-b430-e9f4f3e4add7"/>
<textElement textAlignment="Center" 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[Sentido]]></text>
</staticText>
<staticText>
<reportElement mode="Transparent" x="851" y="0" width="68" height="13" forecolor="#000000" backcolor="#FFFFFF" uuid="4d299c7f-97c0-4b61-aaf6-b284a0d13aa6"/>
<textElement textAlignment="Center" 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[Plataforma]]></text>
</staticText>
</band>
</title>
<columnHeader>
@ -168,96 +176,103 @@
<detail>
<band height="13" splitType="Prevent">
<textField isStretchWithOverflow="true" pattern="dd/MM/yyyy" isBlankWhenNull="true">
<reportElement uuid="bc091860-adab-47d8-8352-982bc8e484a3" stretchType="RelativeToTallestObject" x="0" y="0" width="61" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="0" y="0" width="61" height="13" uuid="bc091860-adab-47d8-8352-982bc8e484a3"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{DATA}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="82c36c16-1662-4af9-a285-c935ab350e79" stretchType="RelativeToTallestObject" x="92" y="0" width="46" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="92" y="0" width="46" height="13" uuid="82c36c16-1662-4af9-a285-c935ab350e79"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{SERVICO}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="HH.mm" isBlankWhenNull="true">
<reportElement uuid="ef45dd24-19e8-4e92-9759-f8e7a5c990eb" stretchType="RelativeToTallestObject" x="202" y="0" width="46" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="222" y="0" width="46" height="13" uuid="ef45dd24-19e8-4e92-9759-f8e7a5c990eb"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[(""+$F{HORARIO}).substring(11,16)]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="17011486-0d4c-4e22-b534-48e0bb025673" stretchType="RelativeToTallestObject" x="248" y="0" width="100" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="268" y="0" width="100" height="13" uuid="17011486-0d4c-4e22-b534-48e0bb025673"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{ORIGEM}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="a89c84e4-0e13-4e85-a565-9eb0bc6e5423" stretchType="RelativeToTallestObject" x="348" y="0" width="100" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="368" y="0" width="100" height="13" uuid="a89c84e4-0e13-4e85-a565-9eb0bc6e5423"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{DESTINO}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="7be97f5f-b36b-4679-befb-e5f2b4532963" stretchType="RelativeToTallestObject" x="448" y="0" width="90" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="468" y="0" width="90" height="13" uuid="7be97f5f-b36b-4679-befb-e5f2b4532963"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{CLASSE}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="###0" isBlankWhenNull="true">
<reportElement uuid="7c1e2d86-f9ce-4730-866c-dc6cbdd0cf2c" stretchType="RelativeToTallestObject" x="538" y="0" width="53" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="558" y="0" width="60" height="13" uuid="7c1e2d86-f9ce-4730-866c-dc6cbdd0cf2c"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{CAPACIDADE}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="###0" isBlankWhenNull="true">
<reportElement uuid="7c0246f5-739b-440c-a242-915117bd9fd1" stretchType="RelativeToTallestObject" x="591" y="0" width="45" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="618" y="0" width="50" height="13" uuid="7c0246f5-739b-440c-a242-915117bd9fd1"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{OCUPACAO}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="¤ #,##0.00" isBlankWhenNull="true">
<reportElement uuid="dd401917-6047-4e1b-9722-31fe8d096594" stretchType="RelativeToTallestObject" x="636" y="0" width="68" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="668" y="0" width="75" height="13" uuid="dd401917-6047-4e1b-9722-31fe8d096594"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{TIPO_SERVICO}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="false">
<reportElement uuid="8ad565b3-b12c-4fef-a1c7-836e7415436d" stretchType="RelativeToTallestObject" x="704" y="0" width="57" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="743" y="0" width="65" height="13" uuid="8ad565b3-b12c-4fef-a1c7-836e7415436d"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[""+ String.format("%.02f",$V{POR_OCUPACAO}) + "%"]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="dd/MM/yyyy" isBlankWhenNull="true">
<reportElement uuid="bc091860-adab-47d8-8352-982bc8e484a3" stretchType="RelativeToTallestObject" x="61" y="0" width="31" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="61" y="0" width="31" height="13" uuid="bc091860-adab-47d8-8352-982bc8e484a3"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{CODLINHA}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true">
<reportElement uuid="773ac0f6-0c11-430d-8a10-8c62b272b064" stretchType="RelativeToTallestObject" x="138" y="0" width="64" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="138" y="0" width="84" height="13" uuid="773ac0f6-0c11-430d-8a10-8c62b272b064"/>
<textElement textAlignment="Left">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{EMPRESA}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="¤ #,##0.00" isBlankWhenNull="true">
<reportElement uuid="cce46f47-2fbf-45c2-8347-6d3572f19b92" stretchType="RelativeToTallestObject" x="761" y="0" width="30" height="13"/>
<reportElement stretchType="RelativeToTallestObject" x="808" y="0" width="43" height="13" uuid="cce46f47-2fbf-45c2-8347-6d3572f19b92"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{SENTIDO}.equals("0") ? "VOLTA" : "IDA"]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="###0" isBlankWhenNull="true">
<reportElement stretchType="RelativeToTallestObject" x="851" y="0" width="68" height="13" uuid="2365ef56-c413-4795-b3f1-e04100d71bc6"/>
<textElement textAlignment="Center">
<font size="8"/>
</textElement>
<textFieldExpression><![CDATA[$F{OCUPACAO}]]></textFieldExpression>
</textField>
</band>
</detail>
<noData>