fixes bug#22468

dev:valdir
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@107130 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2021-06-09 14:42:51 +00:00
parent 8a39ba8a9f
commit c835dbe7fb
11 changed files with 372 additions and 370 deletions

View File

@ -4,13 +4,11 @@ import java.math.BigDecimal;
import java.math.RoundingMode;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
import net.sf.jasperreports.engine.data.JRBeanCollectionDataSource;
import org.apache.log4j.Logger;
import com.rjconsultores.ventaboletos.entidad.Corrida;
@ -21,9 +19,12 @@ import com.rjconsultores.ventaboletos.relatorios.utilitarios.DataSource;
import com.rjconsultores.ventaboletos.relatorios.utilitarios.Relatorio;
import com.rjconsultores.ventaboletos.relatorios.utilitarios.RelatorioLinhasHorarioBean;
import com.rjconsultores.ventaboletos.service.ConstanteService;
import com.rjconsultores.ventaboletos.utilerias.DateUtil;
import com.rjconsultores.ventaboletos.web.utilerias.NamedParameterStatement;
import com.rjconsultores.ventaboletos.web.utilerias.spring.AppContext;
import net.sf.jasperreports.engine.data.JRBeanCollectionDataSource;
@SuppressWarnings({"unused", "unchecked"})
public class RelatorioLinhasHorario extends Relatorio {
@ -85,8 +86,15 @@ public class RelatorioLinhasHorario extends Relatorio {
NamedParameterStatement stmt = new NamedParameterStatement(conexao, sql);
ResultSet rset = null;
stmt.setTimestamp("DATA_INICIO", (Timestamp) parametros.get("DATA_INICIO"));
stmt.setTimestamp("DATA_FINAL", (Timestamp) parametros.get("DATA_FINAL"));
if (parametros.get("DATA_INICIO") != null) {
Date dataFinal = (Date) parametros.get("DATA_INICIO");
stmt.setString("DATA_INICIO", DateUtil.getStringDate(dataFinal, DateUtil.ddMMaaHH24mmss));
}
if (parametros.get("DATA_FINAL") != null) {
Date dataFinal = (Date) parametros.get("DATA_FINAL");
stmt.setString("DATA_FINAL", DateUtil.getStringDate(dataFinal, DateUtil.ddMMaaHH24mmss));
}
rset = stmt.executeQuery();
@ -495,7 +503,7 @@ public class RelatorioLinhasHorario extends Relatorio {
sql.append(" WHERE ");
sql.append(" EXISTS (SELECT * FROM CAJA CA WHERE CA.CORRIDA_ID = C.CORRIDA_ID AND CA.FECCORRIDA = C.FECCORRIDA AND CA.MOTIVOCANCELACION_ID IS NULL) ");
sql.append(" AND C.FECCORRIDA BETWEEN :DATA_INICIO AND :DATA_FINAL ");
sql.append(" AND C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'dd/mm/yyyy hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'dd/mm/yyyy hh24:mi:ss') ");
sql.append(" GROUP BY C.CORRIDA_ID, C.CORRIDA2_ID, ");
sql.append(" C.ROLOPERATIVO_ID, ");
sql.append(" c.ruta_id, ");
@ -534,7 +542,7 @@ public class RelatorioLinhasHorario extends Relatorio {
sql.append(" INNER JOIN VIGENCIA_TARIFA VT ON (VT.VIGENCIATARIFA_ID = TF.VIGENCIATARIFA_ID AND C.FECCORRIDA BETWEEN VT.FECINICIOVIGENCIA AND VT.FECFINVIGENCIA ) ");
sql.append(" WHERE C.ACTIVO = 1 AND C.FECCORRIDA BETWEEN :DATA_INICIO AND :DATA_FINAL ");
sql.append(" WHERE C.ACTIVO = 1 AND C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'dd/mm/yyyy hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'dd/mm/yyyy hh24:mi:ss') ");
if (lsNumServico.size() > 0) {
for (Corrida corrida : lsNumServico) {
@ -595,7 +603,7 @@ public class RelatorioLinhasHorario extends Relatorio {
sql.append(" AND T.ACTIVO = 1");
sql.append(" AND BO.INDSTATUSBOLETO != 'S' AND BO.MOTIVOCANCELACION_ID IS NULL ");
sql.append(" AND BO.CATEGORIA_ID <> ").append(CONSTANTE_GRATUIDADE_CRIANCA);
sql.append(" AND BO.FECCORRIDA BETWEEN :DATA_INICIO AND :DATA_FINAL ");
sql.append(" AND BO.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'dd/mm/yyyy hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'dd/mm/yyyy hh24:mi:ss') ");
if (lsNumServico.size() > 0) {
for (Corrida corrida : lsNumServico) {
@ -615,7 +623,7 @@ public class RelatorioLinhasHorario extends Relatorio {
sql.append(" ON (CJ.CORRIDA_ID = C.CORRIDA_ID AND (CJ.CORRIDA2_ID=C.CORRIDA2_ID OR (CJ.CORRIDA2_ID IS NULL AND C.CORRIDA2_ID IS NULL)) AND CJ.FECCORRIDA = C.FECCORRIDA AND CJ.ROLOPERATIVO_ID = C.ROLOPERATIVO_ID ");
sql.append(" AND CJ.RUTA_ID = C.RUTA_ID AND CJ.EMPRESACORRIDA_ID = C.EMPRESACORRIDA_ID AND CJ.TARIFA=TF.PRECIO ) ");
sql.append(" WHERE C.FECCORRIDA BETWEEN :DATA_INICIO AND :DATA_FINAL ");
sql.append(" WHERE C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'dd/mm/yyyy hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'dd/mm/yyyy hh24:mi:ss') ");
if (lsNumServico.size() > 0) {

View File

@ -492,7 +492,7 @@ public class RelatorioLinhasHorarioSimplificado extends Relatorio {
sql.append(" WHERE ");
sql.append(" EXISTS (SELECT * FROM CAJA CA WHERE CA.CORRIDA_ID = C.CORRIDA_ID AND CA.FECCORRIDA = C.FECCORRIDA AND CA.MOTIVOCANCELACION_ID IS NULL) ");
sql.append(" AND C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'DD/MM/YY hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'DD/MM/YY hh24:mi:ss') ");
sql.append(" AND C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'DD/MM/YYYY hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'DD/MM/YYYY hh24:mi:ss') ");
sql.append(" GROUP BY C.CORRIDA_ID, ");
sql.append(" C.ROLOPERATIVO_ID, ");
sql.append(" c.ruta_id, ");
@ -518,7 +518,7 @@ public class RelatorioLinhasHorarioSimplificado extends Relatorio {
sql.append(" LEFT JOIN BOLETO B ON (B.CORRIDA_ID = C.CORRIDA_ID AND B.FECCORRIDA = C.FECCORRIDA AND B.ACTIVO = 1 AND B.MOTIVOCANCELACION_ID IS NULL ");
sql.append(" AND (B.CATEGORIA_ID <> ").append(CONSTANTE_GRATUIDADE_CRIANCA).append(" OR PORCCATEGORIA = 100)) ");
sql.append(" WHERE C.ACTIVO = 1 ");
sql.append(" AND C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'DD/MM/YY hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'DD/MM/YY hh24:mi:ss') ");
sql.append(" AND C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'DD/MM/YYYY hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'DD/MM/YYYY hh24:mi:ss') ");
if (lsNumServico.size() > 0) {
for (Corrida corrida : lsNumServico) {
@ -565,7 +565,7 @@ public class RelatorioLinhasHorarioSimplificado extends Relatorio {
sql.append(" AND T.ACTIVO = 1");
sql.append(" AND BO.INDSTATUSBOLETO != 'S' AND BO.MOTIVOCANCELACION_ID IS NULL ");
sql.append(" AND BO.CATEGORIA_ID <> ").append(CONSTANTE_GRATUIDADE_CRIANCA);
sql.append(" AND BO.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'DD/MM/YY hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'DD/MM/YY hh24:mi:ss') ");
sql.append(" AND BO.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'DD/MM/YYYY hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'DD/MM/YYYY hh24:mi:ss') ");
if (lsNumServico.size() > 0) {
for (Corrida corrida : lsNumServico) {
@ -603,7 +603,7 @@ public class RelatorioLinhasHorarioSimplificado extends Relatorio {
sql.append(") TB5 ON TB5.RUTA_ID = C.RUTA_ID ");
sql.append("AND TB5.ORIGEN_ID = ORIGEM.PARADA_ID ");
sql.append("AND TB5.DESTINO_ID = DESTINO.PARADA_ID ");
sql.append(" WHERE C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'DD/MM/YY hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'DD/MM/YY hh24:mi:ss') ");
sql.append(" WHERE C.FECCORRIDA BETWEEN TO_DATE(:DATA_INICIO, 'DD/MM/YYYY hh24:mi:ss') AND TO_DATE(:DATA_FINAL, 'DD/MM/YYYY hh24:mi:ss') ");
sql.append(" AND (TF.TARIFA_ID IS NULL OR (TF.TARIFA_ID IS NOT NULL AND C.FECCORRIDA BETWEEN VTF.FECINICIOVIGENCIA AND VTF.FECFINVIGENCIA )) ");
sql.append(" ");

View File

@ -1,13 +1,13 @@
<?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="RelatorioLinhasHorario" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="ae2cbb01-bc79-4d18-8206-3b59273fe793">
<property name="ireport.zoom" value="2.0"/>
<property name="ireport.x" value="516"/>
<property name="ireport.y" value="83"/>
<property name="ireport.zoom" value="4.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="616"/>
<parameter name="NOMBEMPRESA" class="java.lang.String"/>
<parameter name="DATA_INICIO" class="java.sql.Timestamp">
<parameter name="DATA_INICIO" class="java.util.Date">
<defaultValueExpression><![CDATA[]]></defaultValueExpression>
</parameter>
<parameter name="DATA_FINAL" class="java.sql.Timestamp"/>
<parameter name="DATA_FINAL" class="java.util.Date"/>
<parameter name="USUARIO_ID" class="java.lang.String"/>
<parameter name="LINHA_FILTRO" class="java.lang.String"/>
<parameter name="SERVICO_FILTRO" class="java.lang.String"/>
@ -256,143 +256,143 @@
<textFieldExpression><![CDATA[$R{sub.total}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="25517b93-4d63-44cc-b309-a8f40ab2e960" x="0" y="10" width="802" height="1"/>
<reportElement uuid="25517b93-4d63-44cc-b309-a8f40ab2e960" positionType="Float" x="0" y="10" width="802" height="1"/>
</line>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d5b91df5-2453-4baa-94f1-06a052273bc7" x="210" y="0" width="33" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d5b91df5-2453-4baa-94f1-06a052273bc7" stretchType="RelativeToTallestObject" x="210" y="0" width="33" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_passagens_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ed967165-58f3-4aa1-b532-4afbdccf91e4" x="243" y="0" width="24" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ed967165-58f3-4aa1-b532-4afbdccf91e4" stretchType="RelativeToTallestObject" x="243" y="0" width="37" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linhas_seguro_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="515f260a-4446-478e-8d3e-8c704d8d3e0e" x="267" y="0" width="32" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="515f260a-4446-478e-8d3e-8c704d8d3e0e" stretchType="RelativeToTallestObject" x="280" y="0" width="32" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_bagagens_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="052ce233-407b-4537-ad6c-84ef263e1093" x="299" y="0" width="21" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="052ce233-407b-4537-ad6c-84ef263e1093" stretchType="RelativeToTallestObject" x="312" y="0" width="21" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linhas_segOpc_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="09708c24-ac71-4328-a5ad-bdf2e3234e9e" x="349" y="0" width="38" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="09708c24-ac71-4328-a5ad-bdf2e3234e9e" stretchType="RelativeToTallestObject" x="368" y="0" width="45" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_total_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="e485a1e1-1f67-4ef6-9d51-f57b6838e06e" x="397" y="0" width="12" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="e485a1e1-1f67-4ef6-9d51-f57b6838e06e" stretchType="RelativeToTallestObject" x="415" y="0" width="12" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_ord_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="d3cb2e1d-7f01-45cb-8b88-ad32abefb2a0" x="409" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="d3cb2e1d-7f01-45cb-8b88-ad32abefb2a0" stretchType="RelativeToTallestObject" x="427" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_extra_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="402e1127-ec37-488b-9aab-5b359336083a" x="426" y="0" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="402e1127-ec37-488b-9aab-5b359336083a" stretchType="RelativeToTallestObject" x="444" y="0" width="22" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linhas_totalViagem_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="69d35909-758e-4b93-8a1a-8a2e7e664dec" x="448" y="0" width="36" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="69d35909-758e-4b93-8a1a-8a2e7e664dec" stretchType="RelativeToTallestObject" x="466" y="0" width="36" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_kmRodado_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="225f44ed-3cb5-4092-96e5-640c622ed03c" x="494" y="0" width="19" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="225f44ed-3cb5-4092-96e5-640c622ed03c" stretchType="RelativeToTallestObject" x="503" y="0" width="19" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_absol_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="046c6e2f-eba5-4b3f-9603-a82220bf7f77" x="513" y="0" width="35" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="046c6e2f-eba5-4b3f-9603-a82220bf7f77" stretchType="RelativeToTallestObject" x="522" y="0" width="35" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_equivalente_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="de93ebf2-f543-4494-a2f1-2ea768857a66" x="621" y="0" width="16" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="de93ebf2-f543-4494-a2f1-2ea768857a66" stretchType="RelativeToTallestObject" x="621" y="0" width="16" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_eq_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="622e24e6-fc0c-4f69-8682-ddf8be13b171" x="668" y="0" width="46" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="622e24e6-fc0c-4f69-8682-ddf8be13b171" stretchType="RelativeToTallestObject" x="668" y="0" width="46" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_paxKmOfertado_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="93820d28-161d-45ac-8f58-6606eba9ba9f" x="714" y="0" width="62" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="93820d28-161d-45ac-8f58-6606eba9ba9f" stretchType="RelativeToTallestObject" x="714" y="0" width="62" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_paxKmTransportad_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c37204b8-1813-45e8-975a-09c9b6c2625f" x="776" y="0" width="26" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c37204b8-1813-45e8-975a-09c9b6c2625f" stretchType="RelativeToTallestObject" x="776" y="0" width="26" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_iap_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ea1384dd-eabe-4bc8-a3fb-6b539e7fdc4f" x="592" y="0" width="29" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ea1384dd-eabe-4bc8-a3fb-6b539e7fdc4f" stretchType="RelativeToTallestObject" x="592" y="0" width="29" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_media_group_rsKm}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7a170eda-ccf6-49df-9c66-d1fc3ef6bcfc" x="637" y="0" width="31" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7a170eda-ccf6-49df-9c66-d1fc3ef6bcfc" stretchType="RelativeToTallestObject" x="637" y="0" width="31" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_media_rsViagem_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c1fa8dc4-5410-4de3-875c-b45d62cdde8b" x="548" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c1fa8dc4-5410-4de3-875c-b45d62cdde8b" stretchType="RelativeToTallestObject" x="557" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_media_mpa_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="921f5207-ab59-4509-9e61-a83df613fe46" x="565" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="921f5207-ab59-4509-9e61-a83df613fe46" stretchType="RelativeToTallestObject" x="574" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_media_mpe_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="672d6e14-25fb-4ac4-bfd0-a2448c73ecd1" x="320" y="0" width="29" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="672d6e14-25fb-4ac4-bfd0-a2448c73ecd1" stretchType="RelativeToTallestObject" x="333" y="0" width="35" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
@ -429,144 +429,144 @@
</textElement>
<textFieldExpression><![CDATA[$R{group.total}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="2b63a56a-7ac3-4799-8e6e-5c2b7d8a3e8d" x="210" y="1" width="33" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="2b63a56a-7ac3-4799-8e6e-5c2b7d8a3e8d" stretchType="RelativeToTallestObject" x="210" y="1" width="33" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{passagens_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="378f8813-35a0-41e8-8be0-dfa2d32fccd7" x="243" y="1" width="24" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="378f8813-35a0-41e8-8be0-dfa2d32fccd7" stretchType="RelativeToTallestObject" x="243" y="1" width="37" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{seguro_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0471f436-05eb-42c6-81d8-d1d621aa0f9b" x="267" y="1" width="32" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0471f436-05eb-42c6-81d8-d1d621aa0f9b" stretchType="RelativeToTallestObject" x="280" y="1" width="32" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{bagagens_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="1597d3ae-d93b-487e-8c6f-d04c7071b09e" x="299" y="1" width="21" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="1597d3ae-d93b-487e-8c6f-d04c7071b09e" stretchType="RelativeToTallestObject" x="312" y="1" width="21" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{segOpc_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="27802809-5617-44e5-a89b-cc64e8bde961" x="349" y="1" width="38" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="27802809-5617-44e5-a89b-cc64e8bde961" stretchType="RelativeToTallestObject" x="368" y="1" width="45" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{total_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="b5b21de2-383e-42fc-9ce2-baf987cc3eea" x="397" y="1" width="12" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="b5b21de2-383e-42fc-9ce2-baf987cc3eea" stretchType="RelativeToTallestObject" x="415" y="1" width="12" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{ord_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="444085c9-37c5-4191-b3f5-8b949a751f5e" x="409" y="1" width="17" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="444085c9-37c5-4191-b3f5-8b949a751f5e" stretchType="RelativeToTallestObject" x="427" y="1" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{extra_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="1467f67d-495e-41b3-a091-3e3feabdcc9a" x="426" y="1" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="1467f67d-495e-41b3-a091-3e3feabdcc9a" stretchType="RelativeToTallestObject" x="444" y="1" width="22" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{totalViagem_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="25f0464f-b216-44bd-aad1-d1b4f4dbe0ea" x="448" y="1" width="36" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="25f0464f-b216-44bd-aad1-d1b4f4dbe0ea" stretchType="RelativeToTallestObject" x="466" y="1" width="36" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{kmRodado_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="d9335d68-70e0-44ed-a6c2-28a12a66550b" x="494" y="1" width="19" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="d9335d68-70e0-44ed-a6c2-28a12a66550b" stretchType="RelativeToTallestObject" x="503" y="1" width="19" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{absol_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="5607c3ac-038f-4786-9d7c-c76f59e88523" x="513" y="1" width="35" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="5607c3ac-038f-4786-9d7c-c76f59e88523" stretchType="RelativeToTallestObject" x="522" y="1" width="35" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{equivalente_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="a720fe91-cd7b-4590-b029-0635094ef9e3" x="621" y="1" width="16" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="a720fe91-cd7b-4590-b029-0635094ef9e3" stretchType="RelativeToTallestObject" x="621" y="1" width="16" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{eq_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="21287996-9232-449d-bccd-ed6ea18e1178" x="668" y="1" width="46" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="21287996-9232-449d-bccd-ed6ea18e1178" stretchType="RelativeToTallestObject" x="668" y="1" width="46" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{paxKmOfertado_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e05e5006-df09-4a56-8f1f-c28a115b7e7d" x="714" y="1" width="62" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e05e5006-df09-4a56-8f1f-c28a115b7e7d" stretchType="RelativeToTallestObject" x="714" y="1" width="62" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{paxKmTransportad_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="bbb7ad5a-6419-49bf-8384-bcc23430dadc" x="776" y="1" width="26" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="bbb7ad5a-6419-49bf-8384-bcc23430dadc" stretchType="RelativeToTallestObject" x="776" y="1" width="26" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{iap_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="fb2fa71f-e2cc-4520-a32a-03c50c9e0c86" x="637" y="1" width="31" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="fb2fa71f-e2cc-4520-a32a-03c50c9e0c86" stretchType="RelativeToTallestObject" x="637" y="1" width="31" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{media_rsViagem_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d6bdd9c3-6810-4f3b-8b0a-6d90a8abbb2c" x="592" y="1" width="29" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d6bdd9c3-6810-4f3b-8b0a-6d90a8abbb2c" stretchType="RelativeToTallestObject" x="592" y="1" width="29" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{media_group_rsKm}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="8a3b0de7-2d8c-44b2-bc14-81929008bbc7" x="548" y="1" width="17" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="8a3b0de7-2d8c-44b2-bc14-81929008bbc7" stretchType="RelativeToTallestObject" x="557" y="1" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{media_mpa_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="2002660a-5acc-4795-805c-7d2d64f3a331" x="565" y="1" width="17" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="2002660a-5acc-4795-805c-7d2d64f3a331" stretchType="RelativeToTallestObject" x="574" y="1" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{media_mpe_group}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="736a47e0-7471-44d8-98df-c61d122bf3ac" x="0" y="11" width="802" height="1"/>
<reportElement uuid="736a47e0-7471-44d8-98df-c61d122bf3ac" positionType="Float" x="0" y="11" width="802" height="1"/>
</line>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="097aeec9-e3cc-42ae-b38d-d47111080605" x="320" y="1" width="29" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="097aeec9-e3cc-42ae-b38d-d47111080605" stretchType="RelativeToTallestObject" x="333" y="1" width="35" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
@ -587,7 +587,7 @@
<reportElement uuid="48a39edc-ed2a-40cb-8bfb-6e97bcb9088a" x="-1" y="60" width="803" height="1"/>
</line>
<textField>
<reportElement uuid="c11155fe-5b61-44d7-8ad6-f9a3181f6c0a" x="607" y="61" width="185" height="10"/>
<reportElement uuid="c11155fe-5b61-44d7-8ad6-f9a3181f6c0a" x="593" y="61" width="209" height="10"/>
<textElement textAlignment="Center">
<font size="7"/>
</textElement>
@ -597,34 +597,34 @@
<reportElement uuid="9c896277-f8e2-41ce-bf13-95499b7d3da7" x="593" y="71" width="210" height="1"/>
</line>
<textField>
<reportElement uuid="048a2830-d562-48d8-81da-df9b52d13d38" x="514" y="61" width="52" height="10"/>
<reportElement uuid="048a2830-d562-48d8-81da-df9b52d13d38" x="504" y="61" width="87" height="10"/>
<textElement textAlignment="Center">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.passageiros}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="d03952c9-51e7-4c10-988b-301c7228a65f" x="495" y="71" width="88" height="1"/>
<reportElement uuid="d03952c9-51e7-4c10-988b-301c7228a65f" x="504" y="71" width="88" height="1"/>
</line>
<textField>
<reportElement uuid="169274ca-49ff-4136-9eb3-3f3384ebcdb8" x="410" y="61" width="64" height="10"/>
<reportElement uuid="169274ca-49ff-4136-9eb3-3f3384ebcdb8" x="416" y="61" width="86" height="10"/>
<textElement textAlignment="Center">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.viagens}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="5e64ae31-94b7-4b72-872c-d68ac8262db5" x="398" y="71" width="87" height="1"/>
<reportElement uuid="5e64ae31-94b7-4b72-872c-d68ac8262db5" x="416" y="71" width="87" height="1"/>
</line>
<textField>
<reportElement uuid="b350299e-c005-4896-b5b3-2a20af2166ce" x="194" y="61" width="183" height="10"/>
<reportElement uuid="b350299e-c005-4896-b5b3-2a20af2166ce" x="183" y="61" width="230" height="10"/>
<textElement textAlignment="Center">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.receita}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="c4e021a7-182e-4edc-a927-b3fbba87f5cc" x="184" y="71" width="204" height="1"/>
<reportElement uuid="c4e021a7-182e-4edc-a927-b3fbba87f5cc" x="184" y="71" width="230" height="1"/>
</line>
<textField>
<reportElement uuid="c0f124b2-3691-4f49-9b86-69d76f249584" x="1" y="74" width="22" height="9"/>
@ -690,84 +690,84 @@
<textFieldExpression><![CDATA[$R{detail.passagens}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="08129899-1cb2-460b-b588-396c4fc9d3a9" x="244" y="74" width="24" height="9"/>
<reportElement uuid="08129899-1cb2-460b-b588-396c4fc9d3a9" x="244" y="74" width="37" height="9"/>
<textElement textAlignment="Center" markup="none">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.seguro}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="45180c94-326c-471b-a91a-550660fa54ac" x="268" y="74" width="32" height="9"/>
<reportElement uuid="45180c94-326c-471b-a91a-550660fa54ac" x="281" y="74" width="32" height="9"/>
<textElement textAlignment="Right" markup="none">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.bagagens}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="3b6488cb-b3e1-4586-b25b-6e2d59e707b7" x="300" y="74" width="21" height="9"/>
<reportElement uuid="3b6488cb-b3e1-4586-b25b-6e2d59e707b7" x="313" y="74" width="21" height="9"/>
<textElement textAlignment="Right" markup="none">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.segOpc}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="723b5317-9cfc-4722-900f-5d94c2050b39" x="350" y="74" width="38" height="9"/>
<textElement textAlignment="Center" markup="none">
<reportElement uuid="723b5317-9cfc-4722-900f-5d94c2050b39" x="369" y="74" width="45" height="9"/>
<textElement textAlignment="Right" markup="none">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.total}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="10940554-2c23-4d9f-8f28-8140562ea7d5" x="398" y="74" width="12" height="9"/>
<reportElement uuid="10940554-2c23-4d9f-8f28-8140562ea7d5" x="416" y="74" width="12" height="9"/>
<textElement textAlignment="Right" markup="none">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.ord}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="a4153913-838a-419f-a7c8-e9ffc67afccd" x="410" y="74" width="17" height="9"/>
<reportElement uuid="a4153913-838a-419f-a7c8-e9ffc67afccd" x="428" y="74" width="17" height="9"/>
<textElement textAlignment="Right" markup="none">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.extra}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="e4ee3f3f-c735-423b-856b-13f08e70ea93" x="427" y="74" width="22" height="9"/>
<reportElement uuid="e4ee3f3f-c735-423b-856b-13f08e70ea93" x="445" y="74" width="22" height="9"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.totalViagem}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="b97305e9-580b-4cdb-a5f2-eae59e567ec7" x="449" y="74" width="36" height="9"/>
<reportElement uuid="b97305e9-580b-4cdb-a5f2-eae59e567ec7" x="467" y="74" width="36" height="9"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.km.rodad}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="fdd9aa9c-590d-4e8f-b312-57e021d42516" x="495" y="75" width="19" height="8"/>
<reportElement uuid="fdd9aa9c-590d-4e8f-b312-57e021d42516" x="504" y="75" width="19" height="8"/>
<textElement>
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.absol}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="2e80d940-4acd-4225-87c9-0371c7552362" x="514" y="75" width="35" height="8"/>
<reportElement uuid="2e80d940-4acd-4225-87c9-0371c7552362" x="523" y="75" width="35" height="8"/>
<textElement>
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.equivalente}]]></textFieldExpression>
</textField>
<textField evaluationTime="Report">
<reportElement uuid="2df6bf4b-0828-4848-832b-0f7fcc2876e9" x="549" y="75" width="17" height="8"/>
<reportElement uuid="2df6bf4b-0828-4848-832b-0f7fcc2876e9" x="558" y="75" width="17" height="8"/>
<textElement>
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.mpa}]]></textFieldExpression>
</textField>
<textField evaluationTime="Report">
<reportElement uuid="4f320995-2452-455d-be07-693731079416" x="566" y="75" width="17" height="8"/>
<reportElement uuid="4f320995-2452-455d-be07-693731079416" x="575" y="75" width="17" height="8"/>
<textElement>
<font size="6"/>
</textElement>
@ -819,7 +819,7 @@
<reportElement uuid="b6bdef50-f793-4c23-b188-505c0fb7bf18" x="0" y="95" width="803" height="1"/>
</line>
<textField>
<reportElement uuid="e8a85150-8544-4698-83c9-35cdbd9f3f2b" x="321" y="74" width="29" height="9"/>
<reportElement uuid="e8a85150-8544-4698-83c9-35cdbd9f3f2b" x="334" y="74" width="35" height="9"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
@ -907,196 +907,196 @@
<detail>
<band height="10" splitType="Stretch">
<textField isBlankWhenNull="true">
<reportElement uuid="9e1bc992-c77b-4217-9327-21e33680dcee" x="129" y="0" width="12" height="10"/>
<reportElement uuid="9e1bc992-c77b-4217-9327-21e33680dcee" stretchType="RelativeToTallestObject" x="129" y="0" width="12" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{cla}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="f75ac988-7ec6-4d13-a51e-3a9f933eee66" x="349" y="0" width="38" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f75ac988-7ec6-4d13-a51e-3a9f933eee66" stretchType="RelativeToTallestObject" x="368" y="0" width="45" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{total}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="65359525-0ea6-4328-b6fc-4cd85a447efb" x="409" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="65359525-0ea6-4328-b6fc-4cd85a447efb" stretchType="RelativeToTallestObject" x="427" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{extra}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="16ac49df-dd15-4990-9a60-9ef4e0743d8f" x="243" y="0" width="24" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="16ac49df-dd15-4990-9a60-9ef4e0743d8f" stretchType="RelativeToTallestObject" x="243" y="0" width="37" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{seguro}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="c491890a-4750-4cc3-8475-2c4fe508328c" x="776" y="0" width="26" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c491890a-4750-4cc3-8475-2c4fe508328c" stretchType="RelativeToTallestObject" x="776" y="0" width="26" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{iap}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="a1a23dd1-bd8b-42e1-b63b-4d4408b85510" x="714" y="0" width="62" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="a1a23dd1-bd8b-42e1-b63b-4d4408b85510" stretchType="RelativeToTallestObject" x="714" y="0" width="62" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{paxKmTransportado}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="9f3b6452-9748-435b-8509-4a38beeb2766" x="668" y="0" width="46" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="9f3b6452-9748-435b-8509-4a38beeb2766" stretchType="RelativeToTallestObject" x="668" y="0" width="46" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{paxKmOfertado}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="6719264c-ebd6-4d4f-a8f8-58e0ee4eacb5" x="621" y="0" width="16" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6719264c-ebd6-4d4f-a8f8-58e0ee4eacb5" stretchType="RelativeToTallestObject" x="621" y="0" width="16" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{eq}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="4044158d-9acc-4a49-9e2f-517a818d97d7" x="637" y="0" width="31" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="4044158d-9acc-4a49-9e2f-517a818d97d7" stretchType="RelativeToTallestObject" x="637" y="0" width="31" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{rsViagem}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="8c3fd018-651e-4cb3-96da-7c33a0c8db83" x="592" y="0" width="29" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="8c3fd018-651e-4cb3-96da-7c33a0c8db83" stretchType="RelativeToTallestObject" x="592" y="0" width="29" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{rsKm}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="d5473b40-db54-49bf-b897-64811af76bf8" x="565" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d5473b40-db54-49bf-b897-64811af76bf8" stretchType="RelativeToTallestObject" x="574" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{mpe}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="9db3ab59-36d4-403a-99cb-19bc531aaaca" x="548" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="9db3ab59-36d4-403a-99cb-19bc531aaaca" stretchType="RelativeToTallestObject" x="557" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{mpa}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="e1bac278-5cfb-4732-8e2d-2973b3e847e4" x="448" y="0" width="36" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e1bac278-5cfb-4732-8e2d-2973b3e847e4" stretchType="RelativeToTallestObject" x="466" y="0" width="36" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{kmRodado}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="d5b5f4cf-5f24-4f8c-8a81-b86bc0420d08" x="90" y="0" width="24" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="d5b5f4cf-5f24-4f8c-8a81-b86bc0420d08" stretchType="RelativeToTallestObject" x="90" y="0" width="24" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{sentido}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="704c6316-e3a9-4a74-8ae1-7a8eedcb800f" x="426" y="0" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="704c6316-e3a9-4a74-8ae1-7a8eedcb800f" stretchType="RelativeToTallestObject" x="444" y="0" width="22" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{totalViagem}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="ac86ec2e-f3d6-4841-b40f-7b37d53c3f04" x="0" y="0" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ac86ec2e-f3d6-4841-b40f-7b37d53c3f04" stretchType="RelativeToTallestObject" x="0" y="0" width="22" height="10" isPrintWhenDetailOverflows="true"/>
<textElement>
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{hora}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="f713249b-8c6e-43fa-a6ed-5a74d943740f" x="22" y="0" width="27" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="f713249b-8c6e-43fa-a6ed-5a74d943740f" stretchType="RelativeToTallestObject" x="22" y="0" width="27" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Left">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{servico}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="630c4e52-5fa9-4703-a6b4-0ac7f0d54eb6" x="513" y="0" width="35" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="630c4e52-5fa9-4703-a6b4-0ac7f0d54eb6" stretchType="RelativeToTallestObject" x="522" y="0" width="35" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{equivalente}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="8f049af6-5d4a-45a1-a5ab-37c86d4bbf3c" x="494" y="0" width="19" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="8f049af6-5d4a-45a1-a5ab-37c86d4bbf3c" stretchType="RelativeToTallestObject" x="503" y="0" width="19" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{absol}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="34173f78-c597-498a-9277-929b9458ec25" x="210" y="0" width="33" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="34173f78-c597-498a-9277-929b9458ec25" stretchType="RelativeToTallestObject" x="210" y="0" width="33" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{passagens}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="a1e4e6af-8710-4df8-9f2d-c8e93d5b1ed4" x="299" y="0" width="21" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="a1e4e6af-8710-4df8-9f2d-c8e93d5b1ed4" stretchType="RelativeToTallestObject" x="312" y="0" width="21" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{segOpc}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="8eb7e8a7-3443-4fcf-b10a-b135bf78b3f5" x="397" y="0" width="12" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="8eb7e8a7-3443-4fcf-b10a-b135bf78b3f5" stretchType="RelativeToTallestObject" x="415" y="0" width="12" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{ord}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="42a3d264-d1ba-4b69-81d4-6e6ae5f874c0" x="49" y="0" width="41" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="42a3d264-d1ba-4b69-81d4-6e6ae5f874c0" stretchType="RelativeToTallestObject" x="49" y="0" width="41" height="10" isPrintWhenDetailOverflows="true"/>
<textElement>
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{trecho}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="31b27b6f-543a-4cf7-bb38-400f0da64731" x="114" y="0" width="15" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="31b27b6f-543a-4cf7-bb38-400f0da64731" stretchType="RelativeToTallestObject" x="114" y="0" width="15" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{lot}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00">
<reportElement uuid="aa9ec7a5-75b7-41b5-9d7b-fc2365eab048" x="183" y="0" width="27" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="aa9ec7a5-75b7-41b5-9d7b-fc2365eab048" stretchType="RelativeToTallestObject" x="183" y="0" width="27" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{tarifa}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="c5ede2ad-ab52-4a3a-b045-1a3c166c386f" x="267" y="0" width="32" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c5ede2ad-ab52-4a3a-b045-1a3c166c386f" stretchType="RelativeToTallestObject" x="280" y="0" width="32" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{bagagens}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="97d63f6f-b14b-418a-9837-9d0122a69b7c" x="320" y="0" width="29" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="97d63f6f-b14b-418a-9837-9d0122a69b7c" stretchType="RelativeToTallestObject" x="333" y="0" width="35" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{pedagio}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="afdc1c7a-72f8-4992-b747-97e4744034a1" x="141" y="0" width="40" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="afdc1c7a-72f8-4992-b747-97e4744034a1" stretchType="RelativeToTallestObject" x="141" y="0" width="40" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
@ -1115,134 +1115,134 @@
</lastPageFooter>
<summary>
<band height="10" splitType="Stretch">
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="fb2fa43e-b87b-4b4d-9e15-dd60bfe81787" positionType="Float" x="210" y="0" width="33" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="fb2fa43e-b87b-4b4d-9e15-dd60bfe81787" stretchType="RelativeToTallestObject" x="210" y="0" width="33" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_PASSAGENS}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c0753597-89c3-40b9-a34a-ab382741214a" positionType="Float" x="243" y="0" width="24" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c0753597-89c3-40b9-a34a-ab382741214a" stretchType="RelativeToTallestObject" x="243" y="0" width="37" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_SEGURO}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="8bc21d8a-7402-419f-91dc-73fd55f9054e" positionType="Float" x="267" y="0" width="32" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="8bc21d8a-7402-419f-91dc-73fd55f9054e" stretchType="RelativeToTallestObject" x="280" y="0" width="32" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_BAGAGENS}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c7443b9a-b8a7-4e0d-9771-a69c7cc56f14" positionType="Float" x="299" y="0" width="21" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c7443b9a-b8a7-4e0d-9771-a69c7cc56f14" stretchType="RelativeToTallestObject" x="312" y="0" width="21" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_SEURO_OPCIONAL}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7bbb0c46-57d5-449b-ac94-15eba31bae5b" positionType="Float" x="349" y="0" width="38" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7bbb0c46-57d5-449b-ac94-15eba31bae5b" stretchType="RelativeToTallestObject" x="368" y="0" width="45" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_TOTAL}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="47040d40-cf8a-4cc5-8a33-90e9380198a7" positionType="Float" x="397" y="0" width="12" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="47040d40-cf8a-4cc5-8a33-90e9380198a7" stretchType="RelativeToTallestObject" x="415" y="0" width="12" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_ORDINARIO}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="0de69dfa-27f3-486c-b5fd-4f17526f88e1" positionType="Float" x="409" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="0de69dfa-27f3-486c-b5fd-4f17526f88e1" stretchType="RelativeToTallestObject" x="427" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_EXTRA}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="2cf233b8-2798-4e5a-9781-3447f2f85d62" positionType="Float" x="426" y="0" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="2cf233b8-2798-4e5a-9781-3447f2f85d62" stretchType="RelativeToTallestObject" x="444" y="0" width="22" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_VIAGEM}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0497b315-b7d5-436d-9e66-144db5dec2c1" positionType="Float" x="448" y="0" width="36" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0497b315-b7d5-436d-9e66-144db5dec2c1" positionType="Float" stretchType="RelativeToTallestObject" x="466" y="0" width="36" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_KM_RODADO}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="6a90ca08-98b7-4bde-8405-0c44939c8569" positionType="Float" x="494" y="0" width="19" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="6a90ca08-98b7-4bde-8405-0c44939c8569" positionType="Float" stretchType="RelativeToTallestObject" x="503" y="0" width="19" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_ABSOLUTO}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ddb5198c-5d50-4150-8fe2-5728291472c4" positionType="Float" x="513" y="0" width="35" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ddb5198c-5d50-4150-8fe2-5728291472c4" positionType="Float" stretchType="RelativeToTallestObject" x="522" y="0" width="35" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_EQUIVALENTE}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7a7481e6-5685-4ad6-8b50-ca108a16db96" positionType="Float" x="565" y="0" width="17" height="10"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{TOTAL_MPE}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f0665aa0-283f-4b0f-833f-a8d864d7c1b1" positionType="Float" x="548" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7a7481e6-5685-4ad6-8b50-ca108a16db96" positionType="Float" stretchType="RelativeToTallestObject" x="574" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{TOTAL_MPE}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c89eabd5-2f70-4834-a49a-a44efa77b8c8" positionType="Float" x="592" y="0" width="29" height="10"/>
<reportElement uuid="f0665aa0-283f-4b0f-833f-a8d864d7c1b1" positionType="Float" stretchType="RelativeToTallestObject" x="557" y="0" width="17" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{TOTAL_MPE}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c89eabd5-2f70-4834-a49a-a44efa77b8c8" positionType="Float" stretchType="RelativeToTallestObject" x="592" y="0" width="29" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true" isStrikeThrough="false"/>
</textElement>
<textFieldExpression><![CDATA[$V{TOTAL_RSKM}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="36117b7f-967d-4a2e-a99a-d8a341a03c09" positionType="Float" x="621" y="0" width="16" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="36117b7f-967d-4a2e-a99a-d8a341a03c09" positionType="Float" stretchType="RelativeToTallestObject" x="621" y="0" width="16" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_EQ}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="258a9f99-c3e4-494d-b98a-8a4bee489abb" positionType="Float" x="637" y="0" width="31" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="258a9f99-c3e4-494d-b98a-8a4bee489abb" positionType="Float" stretchType="RelativeToTallestObject" x="637" y="0" width="31" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{TOTAL_VIAGEM}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="cf7bbf9b-a37a-4bd3-a629-7958b51bacf7" positionType="Float" x="668" y="0" width="46" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="cf7bbf9b-a37a-4bd3-a629-7958b51bacf7" positionType="Float" stretchType="RelativeToTallestObject" x="668" y="0" width="46" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{TOTAL_PAX}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="9098e4b0-55e4-44ea-8d26-05a85a1b9774" positionType="Float" x="714" y="0" width="62" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="9098e4b0-55e4-44ea-8d26-05a85a1b9774" positionType="Float" stretchType="RelativeToTallestObject" x="714" y="0" width="62" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_PAX_KM_TRANSPORTADO}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="5c8e07f3-9ed9-40c0-a55d-a9a7dadb9dd6" positionType="Float" x="776" y="0" width="26" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="5c8e07f3-9ed9-40c0-a55d-a9a7dadb9dd6" positionType="Float" stretchType="RelativeToTallestObject" x="776" y="0" width="26" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
@ -1255,8 +1255,8 @@
</textElement>
<textFieldExpression><![CDATA[$R{total.geral}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f6c3da32-fb1d-4b3c-8066-1680a898dc2d" x="320" y="0" width="29" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f6c3da32-fb1d-4b3c-8066-1680a898dc2d" stretchType="RelativeToTallestObject" x="333" y="0" width="35" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
@ -1267,7 +1267,7 @@
<noData>
<band height="20">
<textField>
<reportElement uuid="3429e199-e682-4e28-b2ce-1bc9f2d031b2" x="0" y="0" width="803" height="20"/>
<reportElement uuid="3429e199-e682-4e28-b2ce-1bc9f2d031b2" x="22" y="0" width="803" height="20"/>
<textElement/>
<textFieldExpression><![CDATA[$R{msg.noData}]]></textFieldExpression>
</textField>

View File

@ -1,13 +1,13 @@
<?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="RelatorioLinhasHorario" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="ae2cbb01-bc79-4d18-8206-3b59273fe793">
<property name="ireport.zoom" value="2.0"/>
<property name="ireport.x" value="780"/>
<property name="ireport.y" value="202"/>
<property name="ireport.zoom" value="1.5"/>
<property name="ireport.x" value="17"/>
<property name="ireport.y" value="65"/>
<parameter name="NOMBEMPRESA" class="java.lang.String"/>
<parameter name="DATA_INICIO" class="java.sql.Timestamp">
<parameter name="DATA_INICIO" class="java.util.Date">
<defaultValueExpression><![CDATA[]]></defaultValueExpression>
</parameter>
<parameter name="DATA_FINAL" class="java.sql.Timestamp"/>
<parameter name="DATA_FINAL" class="java.util.Date"/>
<parameter name="USUARIO_ID" class="java.lang.String"/>
<parameter name="LINHA_FILTRO" class="java.lang.String"/>
<parameter name="SERVICO_FILTRO" class="java.lang.String"/>
@ -199,7 +199,7 @@
<textFieldExpression><![CDATA[$R{linhas}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="5d89bbb4-1324-4ab5-8779-340eecf810d9" x="0" y="10" width="801" height="1"/>
<reportElement uuid="5d89bbb4-1324-4ab5-8779-340eecf810d9" positionType="Float" x="0" y="10" width="801" height="1"/>
</line>
<textField isBlankWhenNull="true">
<reportElement uuid="e75e3f46-1173-42d0-9830-e40b067c2135" x="22" y="0" width="47" height="10"/>
@ -220,67 +220,67 @@
<textFieldExpression><![CDATA[$R{sub.total}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="25517b93-4d63-44cc-b309-a8f40ab2e960" x="1" y="13" width="802" height="1"/>
<reportElement uuid="25517b93-4d63-44cc-b309-a8f40ab2e960" positionType="Float" x="1" y="13" width="802" height="1"/>
</line>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d5b91df5-2453-4baa-94f1-06a052273bc7" x="324" y="0" width="50" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d5b91df5-2453-4baa-94f1-06a052273bc7" stretchType="RelativeToTallestObject" x="324" y="0" width="65" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_passagens_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="09708c24-ac71-4328-a5ad-bdf2e3234e9e" x="406" y="0" width="38" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="09708c24-ac71-4328-a5ad-bdf2e3234e9e" stretchType="RelativeToTallestObject" x="444" y="0" width="60" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_total_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="69d35909-758e-4b93-8a1a-8a2e7e664dec" x="526" y="0" width="36" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="69d35909-758e-4b93-8a1a-8a2e7e664dec" stretchType="RelativeToTallestObject" x="565" y="0" width="36" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_kmRodado_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ea1384dd-eabe-4bc8-a3fb-6b539e7fdc4f" x="732" y="0" width="29" height="10"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ea1384dd-eabe-4bc8-a3fb-6b539e7fdc4f" stretchType="RelativeToTallestObject" x="682" y="0" width="119" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_media_group_rsKm}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="62c891ff-266c-4dc8-afeb-0b17afa4e391" x="374" y="1" width="31" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="62c891ff-266c-4dc8-afeb-0b17afa4e391" stretchType="RelativeToTallestObject" x="389" y="0" width="55" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linhas_seguro_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="6eaa4060-daa7-45b1-be13-9adc9f61b315" x="466" y="0" width="21" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="6eaa4060-daa7-45b1-be13-9adc9f61b315" stretchType="RelativeToTallestObject" x="505" y="0" width="21" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_ord_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="3c72dcad-ce68-49ab-96cb-cde745066400" x="487" y="0" width="19" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3c72dcad-ce68-49ab-96cb-cde745066400" stretchType="RelativeToTallestObject" x="526" y="0" width="19" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_extra_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="79f8053c-7ef8-4b11-8f97-2f44339edd1a" x="504" y="0" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="79f8053c-7ef8-4b11-8f97-2f44339edd1a" stretchType="RelativeToTallestObject" x="543" y="0" width="22" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linhas_totalViagem_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="0673ec04-c56b-44aa-bd37-aabefea66d0b" x="611" y="0" width="20" height="10"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="0673ec04-c56b-44aa-bd37-aabefea66d0b" stretchType="RelativeToTallestObject" x="601" y="0" width="80" height="13" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{linha_absol_group}]]></textFieldExpression>
@ -300,7 +300,7 @@
<textFieldExpression><![CDATA[$F{grupoRuta}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="6e1204b5-dc16-40df-b592-9046e0b31a14" x="1" y="-1" width="802" height="1"/>
<reportElement uuid="6e1204b5-dc16-40df-b592-9046e0b31a14" positionType="Float" x="1" y="-1" width="802" height="1"/>
</line>
</band>
</groupHeader>
@ -316,68 +316,68 @@
</textElement>
<textFieldExpression><![CDATA[$R{group.total}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="2b63a56a-7ac3-4799-8e6e-5c2b7d8a3e8d" x="324" y="1" width="50" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="2b63a56a-7ac3-4799-8e6e-5c2b7d8a3e8d" stretchType="RelativeToTallestObject" x="324" y="1" width="65" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{passagens_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="27802809-5617-44e5-a89b-cc64e8bde961" x="406" y="1" width="38" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="27802809-5617-44e5-a89b-cc64e8bde961" stretchType="RelativeToTallestObject" x="444" y="1" width="60" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{total_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="25f0464f-b216-44bd-aad1-d1b4f4dbe0ea" x="526" y="1" width="36" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="25f0464f-b216-44bd-aad1-d1b4f4dbe0ea" stretchType="RelativeToTallestObject" x="565" y="1" width="36" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{kmRodado_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d6bdd9c3-6810-4f3b-8b0a-6d90a8abbb2c" x="732" y="1" width="29" height="10"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d6bdd9c3-6810-4f3b-8b0a-6d90a8abbb2c" stretchType="RelativeToTallestObject" x="682" y="1" width="119" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{media_group_rsKm}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="736a47e0-7471-44d8-98df-c61d122bf3ac" x="-1" y="13" width="802" height="1"/>
<reportElement uuid="736a47e0-7471-44d8-98df-c61d122bf3ac" positionType="Float" x="-1" y="13" width="802" height="1"/>
</line>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="5b39be34-6310-483a-bba3-22711e925447" x="374" y="1" width="31" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="5b39be34-6310-483a-bba3-22711e925447" stretchType="RelativeToTallestObject" x="389" y="1" width="55" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{seguro_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="3e059d4f-b901-4ef2-b319-a046b5fd1ad2" x="466" y="1" width="21" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3e059d4f-b901-4ef2-b319-a046b5fd1ad2" stretchType="RelativeToTallestObject" x="505" y="1" width="21" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{ord_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="260b69b9-2baa-4d58-9e8b-bf6cd1ea7dc9" x="487" y="1" width="19" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="260b69b9-2baa-4d58-9e8b-bf6cd1ea7dc9" stretchType="RelativeToTallestObject" x="526" y="1" width="19" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{extra_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="04e07f25-0557-4747-84ee-d2b7a8599a35" x="504" y="1" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="04e07f25-0557-4747-84ee-d2b7a8599a35" stretchType="RelativeToTallestObject" x="543" y="1" width="22" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{totalViagem_group}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="c3d522d1-a1f6-4926-866d-ba85a0e91497" x="611" y="1" width="20" height="10"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="c3d522d1-a1f6-4926-866d-ba85a0e91497" stretchType="RelativeToTallestObject" x="601" y="1" width="80" height="12" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{absol_group}]]></textFieldExpression>
@ -401,7 +401,7 @@
<groupFooter>
<band height="11">
<line>
<reportElement uuid="34ef9a09-219c-47d9-aa44-4e2a5be2ffb6" positionType="Float" x="0" y="1" width="802" height="1"/>
<reportElement uuid="34ef9a09-219c-47d9-aa44-4e2a5be2ffb6" positionType="Float" x="0" y="0" width="802" height="1"/>
</line>
<textField>
<reportElement uuid="f83c3bc8-2151-4ca1-b06c-fa127b8f7089" x="0" y="1" width="53" height="10"/>
@ -410,65 +410,65 @@
</textElement>
<textFieldExpression><![CDATA[$R{ruta.total}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="8d5bc08e-8c89-4658-9410-e016957154cb" x="324" y="2" width="50" height="9"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="8d5bc08e-8c89-4658-9410-e016957154cb" stretchType="RelativeToTallestObject" x="324" y="2" width="65" height="9" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{passagens_ruta}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="b5b1a192-a775-434e-8cbd-3a6577c05e48" x="374" y="2" width="31" height="9"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="b5b1a192-a775-434e-8cbd-3a6577c05e48" stretchType="RelativeToTallestObject" x="389" y="2" width="55" height="9" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{seguro_group}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="47bdfe76-1b48-45e6-8cb1-53feb9e40340" x="406" y="2" width="38" height="9"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="47bdfe76-1b48-45e6-8cb1-53feb9e40340" stretchType="RelativeToTallestObject" x="444" y="2" width="60" height="9" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{total_ruta}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="cf98d15f-de31-419d-814b-1185b434cbd0" x="466" y="1" width="21" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="cf98d15f-de31-419d-814b-1185b434cbd0" stretchType="RelativeToTallestObject" x="505" y="1" width="21" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{ord_ruta}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="f841e4c7-f78f-4dfe-badc-263fb4df5a27" x="487" y="2" width="19" height="9"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="f841e4c7-f78f-4dfe-badc-263fb4df5a27" stretchType="RelativeToTallestObject" x="526" y="2" width="19" height="9" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{extra_ruta}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="8ec4ba62-187a-4048-b1c3-0598ef412475" x="504" y="2" width="22" height="9"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="8ec4ba62-187a-4048-b1c3-0598ef412475" stretchType="RelativeToTallestObject" x="543" y="2" width="22" height="9" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{totalViagem_ruta}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="005958bd-8753-49f7-83ed-995568c33644" x="526" y="2" width="36" height="9"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="005958bd-8753-49f7-83ed-995568c33644" stretchType="RelativeToTallestObject" x="565" y="2" width="36" height="9" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{kmRodado_ruta}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="3140905a-a51a-4227-bc64-4ee1b1fa33eb" x="611" y="2" width="20" height="9"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3140905a-a51a-4227-bc64-4ee1b1fa33eb" stretchType="RelativeToTallestObject" x="601" y="2" width="80" height="9" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{absol_ruta}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="abae3006-9685-42e5-952b-15321d7f0063" x="732" y="2" width="29" height="9"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="abae3006-9685-42e5-952b-15321d7f0063" stretchType="RelativeToTallestObject" x="682" y="2" width="119" height="9" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$V{media_ruta_rsKm}]]></textFieldExpression>
@ -540,27 +540,27 @@
<textFieldExpression><![CDATA[$R{detail.parametrosOperacionais}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="9c896277-f8e2-41ce-bf13-95499b7d3da7" x="682" y="77" width="117" height="1"/>
<reportElement uuid="9c896277-f8e2-41ce-bf13-95499b7d3da7" x="682" y="77" width="119" height="1"/>
</line>
<textField>
<reportElement uuid="169274ca-49ff-4136-9eb3-3f3384ebcdb8" x="478" y="67" width="64" height="10"/>
<reportElement uuid="169274ca-49ff-4136-9eb3-3f3384ebcdb8" x="505" y="67" width="95" height="10"/>
<textElement textAlignment="Center">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.viagens}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="5e64ae31-94b7-4b72-872c-d68ac8262db5" x="466" y="77" width="94" height="1"/>
<reportElement uuid="5e64ae31-94b7-4b72-872c-d68ac8262db5" x="505" y="77" width="95" height="1"/>
</line>
<textField>
<reportElement uuid="b350299e-c005-4896-b5b3-2a20af2166ce" x="331" y="67" width="125" height="10"/>
<reportElement uuid="b350299e-c005-4896-b5b3-2a20af2166ce" x="325" y="67" width="179" height="10"/>
<textElement textAlignment="Center">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.receita}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="c4e021a7-182e-4edc-a927-b3fbba87f5cc" x="331" y="77" width="125" height="1"/>
<reportElement uuid="c4e021a7-182e-4edc-a927-b3fbba87f5cc" x="325" y="77" width="179" height="1"/>
</line>
<textField>
<reportElement uuid="c0f124b2-3691-4f49-9b86-69d76f249584" x="0" y="80" width="22" height="10"/>
@ -584,29 +584,29 @@
<textFieldExpression><![CDATA[$R{detail.extensao}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="7cf8f759-fbec-487c-af73-6d5d3c10137d" x="324" y="80" width="50" height="11"/>
<reportElement uuid="7cf8f759-fbec-487c-af73-6d5d3c10137d" x="324" y="80" width="65" height="10"/>
<textElement textAlignment="Right" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.passagens}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="723b5317-9cfc-4722-900f-5d94c2050b39" x="406" y="80" width="38" height="10"/>
<reportElement uuid="723b5317-9cfc-4722-900f-5d94c2050b39" x="444" y="80" width="60" height="10"/>
<textElement textAlignment="Right" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.total}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="b97305e9-580b-4cdb-a5f2-eae59e567ec7" x="526" y="80" width="36" height="10"/>
<reportElement uuid="b97305e9-580b-4cdb-a5f2-eae59e567ec7" x="565" y="80" width="36" height="10"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.km.rodad}]]></textFieldExpression>
</textField>
<textField evaluationTime="Report">
<reportElement uuid="f9fd6d4e-46da-4f69-a9bd-6e4183f317b4" x="732" y="81" width="29" height="8"/>
<textElement textAlignment="Right">
<reportElement uuid="f9fd6d4e-46da-4f69-a9bd-6e4183f317b4" x="682" y="81" width="119" height="8"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.rsKm}]]></textFieldExpression>
@ -644,45 +644,45 @@
<textFieldExpression><![CDATA[$R{detail.cal}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="6e8b4cc0-6dd6-4c44-89ba-57a70eea9468" x="374" y="80" width="31" height="10"/>
<reportElement uuid="6e8b4cc0-6dd6-4c44-89ba-57a70eea9468" x="389" y="80" width="55" height="10"/>
<textElement textAlignment="Right" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.seguro}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="41e03951-57b4-4bb8-b8f0-d52ecfffcc34" x="466" y="80" width="21" height="10"/>
<reportElement uuid="41e03951-57b4-4bb8-b8f0-d52ecfffcc34" x="505" y="80" width="21" height="10"/>
<textElement textAlignment="Right" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.ord}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="cf169b96-05d4-4874-a4e3-77d332e007d7" x="487" y="80" width="19" height="10"/>
<reportElement uuid="cf169b96-05d4-4874-a4e3-77d332e007d7" x="526" y="80" width="19" height="10"/>
<textElement textAlignment="Right" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.extra}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="fec8e223-0aac-493b-af61-c7e024a96494" x="504" y="80" width="22" height="10"/>
<reportElement uuid="fec8e223-0aac-493b-af61-c7e024a96494" x="543" y="80" width="22" height="10"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.totalViagem}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="a788082c-5a44-4738-a552-dc38a7a66b49" x="569" y="67" width="110" height="10"/>
<reportElement uuid="a788082c-5a44-4738-a552-dc38a7a66b49" x="601" y="67" width="80" height="10"/>
<textElement textAlignment="Center">
<font size="7"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.passageiros}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="9bbfb219-95fa-48a0-88d2-435825ce9b7e" x="572" y="77" width="107" height="1"/>
<reportElement uuid="9bbfb219-95fa-48a0-88d2-435825ce9b7e" x="601" y="77" width="80" height="1"/>
</line>
<textField>
<reportElement uuid="1388a7bf-eeb9-47cc-afa3-719119777282" x="569" y="82" width="110" height="8"/>
<reportElement uuid="1388a7bf-eeb9-47cc-afa3-719119777282" x="601" y="80" width="80" height="10"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
@ -702,106 +702,106 @@
</columnHeader>
<detail>
<band height="11" splitType="Stretch">
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="f75ac988-7ec6-4d13-a51e-3a9f933eee66" x="406" y="0" width="38" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f75ac988-7ec6-4d13-a51e-3a9f933eee66" stretchType="RelativeToTallestObject" x="444" y="0" width="60" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{total}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="e1bac278-5cfb-4732-8e2d-2973b3e847e4" x="526" y="0" width="36" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e1bac278-5cfb-4732-8e2d-2973b3e847e4" stretchType="RelativeToTallestObject" x="565" y="0" width="36" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{kmRodado}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="ac86ec2e-f3d6-4841-b40f-7b37d53c3f04" x="0" y="0" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ac86ec2e-f3d6-4841-b40f-7b37d53c3f04" stretchType="RelativeToTallestObject" x="0" y="0" width="22" height="10"/>
<textElement>
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{hora}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="34173f78-c597-498a-9277-929b9458ec25" x="324" y="0" width="50" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="34173f78-c597-498a-9277-929b9458ec25" stretchType="RelativeToTallestObject" x="324" y="0" width="65" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{passagens}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="afdc1c7a-72f8-4992-b747-97e4744034a1" x="291" y="0" width="33" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="afdc1c7a-72f8-4992-b747-97e4744034a1" stretchType="RelativeToTallestObject" x="291" y="0" width="33" height="10"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{extensao}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="8c3fd018-651e-4cb3-96da-7c33a0c8db83" x="732" y="0" width="29" height="10"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="8c3fd018-651e-4cb3-96da-7c33a0c8db83" stretchType="RelativeToTallestObject" x="682" y="0" width="119" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{rsKm}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="d5b5f4cf-5f24-4f8c-8a81-b86bc0420d08" x="253" y="0" width="38" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="d5b5f4cf-5f24-4f8c-8a81-b86bc0420d08" stretchType="RelativeToTallestObject" x="253" y="0" width="38" height="10"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{sentido}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="3850d6a2-d8f1-4e97-9dfb-b93b8ef5472f" x="69" y="0" width="133" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3850d6a2-d8f1-4e97-9dfb-b93b8ef5472f" stretchType="RelativeToTallestObject" x="69" y="0" width="133" height="10"/>
<textElement>
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{descRuta}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00">
<reportElement uuid="61175025-a52f-415c-88a2-796af6166518" x="374" y="0" width="31" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="61175025-a52f-415c-88a2-796af6166518" stretchType="RelativeToTallestObject" x="389" y="0" width="55" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{seguro}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="ece8b154-3438-4c0d-9939-82304cef7c2f" x="466" y="0" width="21" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ece8b154-3438-4c0d-9939-82304cef7c2f" stretchType="RelativeToTallestObject" x="505" y="0" width="21" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{ord}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="3fe7734b-b331-4362-9fd0-ce6023369998" x="487" y="0" width="19" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3fe7734b-b331-4362-9fd0-ce6023369998" stretchType="RelativeToTallestObject" x="526" y="0" width="19" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{extra}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="d3fdffeb-17af-4475-8748-af52d72abeed" x="504" y="0" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="d3fdffeb-17af-4475-8748-af52d72abeed" stretchType="RelativeToTallestObject" x="543" y="0" width="22" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{totalViagem}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="64d39f6a-972c-43f2-adea-0e4ea6e43c4e" x="611" y="0" width="20" height="10"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="64d39f6a-972c-43f2-adea-0e4ea6e43c4e" stretchType="RelativeToTallestObject" x="601" y="0" width="80" height="10" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{absol}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="cf805801-a22c-4d60-a032-558f73a40dfa" x="22" y="0" width="47" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="cf805801-a22c-4d60-a032-558f73a40dfa" stretchType="RelativeToTallestObject" x="22" y="0" width="47" height="10"/>
<textElement textAlignment="Left">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{servico}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="6d5fc3d2-2c9f-4974-b59d-ee873e1d7097" x="202" y="0" width="51" height="10"/>
<reportElement uuid="6d5fc3d2-2c9f-4974-b59d-ee873e1d7097" stretchType="RelativeToTallestObject" x="202" y="0" width="51" height="10"/>
<textElement>
<font size="6"/>
</textElement>
@ -820,22 +820,22 @@
</lastPageFooter>
<summary>
<band height="14" splitType="Stretch">
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="fb2fa43e-b87b-4b4d-9e15-dd60bfe81787" positionType="Float" x="324" y="0" width="50" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="fb2fa43e-b87b-4b4d-9e15-dd60bfe81787" positionType="Float" stretchType="RelativeToTallestObject" x="324" y="0" width="65" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_PASSAGENS}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7bbb0c46-57d5-449b-ac94-15eba31bae5b" positionType="Float" x="406" y="0" width="38" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7bbb0c46-57d5-449b-ac94-15eba31bae5b" positionType="Float" stretchType="RelativeToTallestObject" x="444" y="0" width="60" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_TOTAL}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0497b315-b7d5-436d-9e66-144db5dec2c1" positionType="Float" x="526" y="0" width="36" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0497b315-b7d5-436d-9e66-144db5dec2c1" positionType="Float" stretchType="RelativeToTallestObject" x="565" y="0" width="36" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
@ -849,43 +849,43 @@
<textFieldExpression><![CDATA[$R{total.geral}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c89eabd5-2f70-4834-a49a-a44efa77b8c8" positionType="Float" x="732" y="0" width="29" height="10"/>
<textElement textAlignment="Right">
<reportElement uuid="c89eabd5-2f70-4834-a49a-a44efa77b8c8" positionType="Float" stretchType="RelativeToTallestObject" x="682" y="0" width="119" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6" isBold="true" isStrikeThrough="false"/>
</textElement>
<textFieldExpression><![CDATA[$V{TOTAL_RSKM}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="4a3fbf16-96fa-4520-b6a1-1a2ad4ee887f" positionType="Float" x="374" y="0" width="31" height="10"/>
<textField isStretchWithOverflow="true" pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="4a3fbf16-96fa-4520-b6a1-1a2ad4ee887f" positionType="Float" stretchType="RelativeToTallestObject" x="389" y="0" width="55" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_SEGURO}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="947632c6-0c10-4eeb-b1fc-eceef4fcd2e1" positionType="Float" x="475" y="0" width="12" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="947632c6-0c10-4eeb-b1fc-eceef4fcd2e1" positionType="Float" stretchType="RelativeToTallestObject" x="505" y="0" width="21" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_ORDINARIO}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="09bf1f07-5a6a-420d-966a-d321ee6f099e" positionType="Float" x="487" y="0" width="17" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="09bf1f07-5a6a-420d-966a-d321ee6f099e" positionType="Float" stretchType="RelativeToTallestObject" x="526" y="0" width="17" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_EXTRA}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="3eea7c3e-a144-4fc9-84b0-f8624986842f" positionType="Float" x="504" y="0" width="22" height="10"/>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3eea7c3e-a144-4fc9-84b0-f8624986842f" positionType="Float" stretchType="RelativeToTallestObject" x="543" y="0" width="22" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Right">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_VIAGEM}]]></textFieldExpression>
</textField>
<textField isBlankWhenNull="true">
<reportElement uuid="b1634908-58ed-490e-98d6-b192e72df5c7" positionType="Float" x="611" y="0" width="20" height="10"/>
<textElement textAlignment="Right">
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="b1634908-58ed-490e-98d6-b192e72df5c7" positionType="Float" stretchType="RelativeToTallestObject" x="601" y="0" width="80" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$P{TOTAL_ABSOLUTO}]]></textFieldExpression>

View File

@ -494,7 +494,7 @@ public class EditarCatalogoDeRutaController extends MyGenericForwardComposer
+ " " + corrida.getId().getCorridaId()
+ " "
+ Labels.getLabel("editarCatalogoDeRutaController.msg.corridaGeradaVigentePt2")
+ " " + DateUtil.getStringDate(corrida.getId().getFeccorrida(), DateUtil.ddMMaa));
+ " " + DateUtil.getStringDate(corrida.getId().getFeccorrida(), DateUtil.ddMMaaaa));
return true;
}
return false;

View File

@ -275,7 +275,7 @@ public class RelatorioAproveitamentoController extends MyGenericForwardComposer
}
parametros.put("CORRIDA_ID", this.txtCorridaId.getValue());
parametros.put("FECCORRIDA", DateUtil.getStringDate(this.fecCorrida.getValue(), DateUtil.ddMMaa));
parametros.put("FECCORRIDA", DateUtil.getStringDate(this.fecCorrida.getValue(), DateUtil.ddMMaaaa));
parametros.put("DATA", DateUtil.getStringDate(this.fecCorrida.getValue())); // Utilizada para exibição no cabeçalho
parametros.put("NOME_RELATORIO", Labels.getLabel("relatorioAproveitamentoController.window.title"));

View File

@ -1,6 +1,5 @@
package com.rjconsultores.ventaboletos.web.gui.controladores.relatorios;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
@ -116,11 +115,8 @@ public class RelatorioLinhasHorarioController extends MyGenericForwardComposer {
parametros.put("TIPOSERVICIO_ID", tipoServico);
Timestamp dataInicio = new Timestamp((DateUtil.inicioFecha((java.util.Date) this.datInicial.getValue()).getTime()));
Timestamp dataFinal = new Timestamp((DateUtil.fimFecha((java.util.Date) this.datFinal.getValue()).getTime()));
parametros.put("DATA_INICIO", dataInicio);
parametros.put("DATA_FINAL", dataFinal);
parametros.put("DATA_INICIO", DateUtil.inicioFecha(this.datInicial.getValue()));
parametros.put("DATA_FINAL", DateUtil.fimFecha(this.datFinal.getValue()));
parametros.put("ISSIMPLIFICADO", chkSimplificado.isChecked());
parametros.put("USUARIO_ID", UsuarioLogado.getUsuarioLogado().getUsuarioId().toString());

View File

@ -129,7 +129,7 @@ public class RelatorioResumoLinhasController extends MyGenericForwardComposer {
parametros.put("DATA", new Date());
parametros.put("FILTROS", filtro.toString());
String tituloRelatorio = "";
String tituloRelatorio = "relatorioResumoLinhasController.window.title";
if (rdAnalitico.isChecked()) {
if(chcSumarizar.isChecked()) {
relatorio = new RelatorioResumoLinhasAnaliticoSumarizado(parametros, dataSourceRead.getConnection());
@ -139,8 +139,6 @@ public class RelatorioResumoLinhasController extends MyGenericForwardComposer {
tituloRelatorio = "relatorioResumoLinhasAnaliticoSumarizadoSimplificadoController.window.title";
}else {
relatorio = new RelatorioResumoLinhasAnalitico(parametros, dataSourceRead.getConnection());
tituloRelatorio = "relatorioResumoLinhasController.window.title";
}
}else {
relatorio = new RelatorioResumoLinhas(parametros, dataSourceRead.getConnection());

View File

@ -7,7 +7,7 @@
<zk xmlns="http://www.zkoss.org/2005/zul">
<window id="winFiltroRelatorioLinhasHorario"
apply="${relatorioLinhasHorarioController}"
contentStyle="overflow:auto" height="550px" width="600px"
contentStyle="overflow:auto" height="570px" width="600px"
border="normal">
<grid fixedLayout="true">