fixes bug#21484

fixes bug#21221
dev:valdir
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@105360 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2021-02-11 20:28:10 +00:00
parent c47aee0dd9
commit 8078d38a1f
9 changed files with 197 additions and 225 deletions

View File

@ -445,6 +445,7 @@ public class RelatorioAcompanhamentoEquivalentes extends Relatorio {
sql.append(" inner join ROL_OPERATIVO ro on ro.ROLOPERATIVO_ID = C.ROLOPERATIVO_ID ");
sql.append(" LEFT JOIN BOLETO BO ON ((BO.MOTIVOCANCELACION_ID IS NULL OR BO.MOTIVOCANCELACION_ID = 0 ) ");
sql.append(" AND C.CORRIDA_ID = BO.CORRIDA_ID AND C.FECCORRIDA = BO.FECCORRIDA ");
sql.append(" AND BO.INDSTATUSOPERACION = 'F' AND BO.ACTIVO = 1 ");
sql.append(" AND BO.CATEGORIA_ID <> ").append(CONSTANTE_GRATUIDADE_CRIANCA).append(" ), ") ;
sql.append(" (SELECT SUM(TR1.CANTKMREAL) EL, ");
sql.append(" CR.CORRIDA_ID, ");
@ -491,7 +492,7 @@ public class RelatorioAcompanhamentoEquivalentes extends Relatorio {
sql.append(" CR.FECCORRIDA ");
sql.append(" FROM CORRIDA CR ");
sql.append(" LEFT JOIN BOLETO BO ON (CR.CORRIDA_ID = BO.CORRIDA_ID AND CR.FECCORRIDA = BO.FECCORRIDA ");
sql.append(" AND BO.INDSTATUSOPERACION = 'F' ");
sql.append(" AND BO.INDSTATUSOPERACION = 'F' AND BO.ACTIVO = 1 ");
sql.append(" AND BO.MOTIVOCANCELACION_ID IS NULL OR BO.MOTIVOCANCELACION_ID = 0 ");
sql.append(" AND BO.CATEGORIA_ID <> ").append(CONSTANTE_GRATUIDADE_CRIANCA).append(") ");
sql.append(" INNER JOIN (SELECT SUM(TR1.CANTKMREAL) KM, CR.CORRIDA_ID, CR.FECCORRIDA ");

View File

@ -7,11 +7,9 @@ import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import com.rjconsultores.ventaboletos.entidad.Constante;
import com.rjconsultores.ventaboletos.relatorios.utilitarios.ArrayDataSource;
import com.rjconsultores.ventaboletos.relatorios.utilitarios.Relatorio;
import com.rjconsultores.ventaboletos.service.ConstanteService;
@ -42,32 +40,26 @@ public class RelatorioKmProgramada extends Relatorio {
public void processaParametros() throws Exception {
}
private ConstanteService constanteService;
public RelatorioKmProgramada(Map<String, Object> parametros, Connection conexao, ConstanteService constanteService) throws Exception {
super(parametros, conexao);
this.constanteService = constanteService;
this.setCustomDataSource(new ArrayDataSource(this) {
public void initDados() throws Exception {
Connection conexao = this.relatorio.getConexao();
Map<String, Object> parametros = this.relatorio.getParametros();
final Integer CARTAO_CREDITO = 2;
String sql = getSql(parametros.get("EMPRESA_ID")+"");
String sql = getSql(parametros);
NamedParameterStatement stmt = new NamedParameterStatement(conexao, sql);
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
stmt.setTimestamp("fecInicio", new Timestamp(DateUtil.inicioFecha(sdf.parse(parametros.get("DATA_INICIAL").toString())).getTime()));
stmt.setTimestamp("fecFinal", new Timestamp(DateUtil.inicioFecha(sdf.parse( parametros.get("DATA_FINAL").toString())).getTime()));
// stmt.setTimestamp("data_final", new Timestamp(DateUtil.fimFecha((Date) parametros.get("DATA_FINAL")).getTime()));
// stmt.setInt("formaPago1", CARTAO_CREDITO);
if(parametros.get("EMPRESA_ID" ) != null){
stmt.setInt("empresaId", Integer.valueOf(parametros.get("EMPRESA_ID" )== null ?"0":parametros.get("EMPRESA_ID") + ""));
stmt.setInt("empresaId", Integer.valueOf(parametros.get("EMPRESA_ID" ).toString()));
}
if(parametros.get("RUTA_ID" ) != null){
stmt.setInt("rutaId", Integer.valueOf(parametros.get("RUTA_ID" ).toString()));
}
ResultSet rset = stmt.executeQuery();
@ -91,13 +83,8 @@ public class RelatorioKmProgramada extends Relatorio {
});
}
private String getSql(String empresaId) {
private String getSql(Map<String, Object> parametros) {
StringBuilder sql = new StringBuilder();
/* Boletos apenas com venda e cancelamento direto com corrida */
sql.append(" select");
sql.append(" geral.Linhas,");
sql.append(" geral.Empresa,");
@ -127,7 +114,6 @@ public class RelatorioKmProgramada extends Relatorio {
sql.append(" ELSE null");
sql.append(" END), 0 )) as KMTotal,");
sql.append("(NVL( COUNT(");
sql.append(" CASE");
sql.append(" WHEN geral.TIPOSERVICIO_ID = 1");
@ -152,49 +138,16 @@ public class RelatorioKmProgramada extends Relatorio {
sql.append(" WHERE ");
sql.append(" c.ACTIVO=1");
sql.append(" and c.FECCORRIDA BETWEEN :fecInicio and :fecFinal");
if (!empresaId.equals("null")) {
if(parametros.get("EMPRESA_ID" ) != null){
sql.append(" and c.EMPRESACORRIDA_ID = :empresaId ");
}
if(parametros.get("RUTA_ID" ) != null){
sql.append(" and r.RUTA_ID = :rutaId ");
}
sql.append(") geral group by geral.Linhas, geral.Empresa, geral.DescLinha, geral.KMPadrao");
// sql.append("SELECT DISTINCT c.RUTA_ID AS Linhas,");
// sql.append(" c.EMPRESACORRIDA_ID AS Empresa,");
// sql.append(" r.DESCRUTA AS DescLinha,");
// sql.append(" SUM(t.CANTKMREAL) AS KMPadrao,");
// sql.append(" COUNT(");
// sql.append(" CASE");
// sql.append(" WHEN c.TIPOSERVICIO_ID = 1");
// sql.append(" THEN 1");
// sql.append(" ELSE NULL");
// sql.append(" END ) AS SRVNormal,");
// sql.append(" COUNT(");
// sql.append(" CASE");
// sql.append(" WHEN c.TIPOSERVICIO_ID = 2");
// sql.append(" THEN 1");
// sql.append(" ELSE NULL");
// sql.append(" END ) AS SRVExtra,");
// sql.append(" COUNT (c.CORRIDA_ID) AS SRVTotal");
// sql.append(" FROM CORRIDA c");
// sql.append(" JOIN CORRIDA_TRAMO ct");
// sql.append(" ON ct.CORRIDA_ID = c.CORRIDA_ID");
// sql.append(" AND ct.FECCORRIDA = c.FECCORRIDA");
// sql.append(" JOIN TRAMO t");
// sql.append(" ON ct.TRAMO_ID = t.TRAMO_ID");
// sql.append(" JOIN RUTA r ");
// sql.append(" on c.RUTA_ID = r.RUTA_ID");
// sql.append(" WHERE ");
// sql.append(" c.FECCORRIDA BETWEEN :fecInicio and :fecFinal");
// if (empresaId != null) {
// sql.append(" and c.EMPRESACORRIDA_ID = :empresaId ");
// }
// sql.append(" GROUP BY c.RUTA_ID,");
// sql.append(" c.EMPRESACORRIDA_ID,");
// sql.append(" r.DESCRUTA ");
return sql.toString();
}
}

View File

@ -153,6 +153,7 @@ public class RelatorioOrigemDestino extends Relatorio {
sql.append(" INNER JOIN PARADA O ON O.PARADA_ID = CA.ORIGEN_ID ");
sql.append(" INNER JOIN PARADA D ON D.PARADA_ID = CA.DESTINO_ID ");
sql.append(" WHERE CA.ACTIVO = 1 ");
sql.append(" AND CA.INDSTATUSOPERACION = 'F' ");
sql.append(" AND CA.MOTIVOCANCELACION_ID IS NULL ");
if(StringUtils.isNotBlank(CONSTANTE_GRATUIDADE_CRIANCA)) {
@ -396,7 +397,24 @@ public class RelatorioOrigemDestino extends Relatorio {
sql.append(" AND CO.FECCORRIDA BETWEEN to_date('" + dataDe + "','dd/mm/yyyy HH24:mi:ss') AND to_date('" + dataAte + "','dd/mm/yyyy HH24:mi:ss') ");
sql.append(" AND CO.ACTIVO = 1 ");
sql.append(" ) VIAGENS, ");
sql.append(" TR.cantkmreal KM_CORRIDA, ");
/* Carrega KM Corrida */
sql.append(" ( ");
sql.append(" SELECT sum(tr1.cantkmreal) / count(cr.corrida_id) ");
sql.append(" FROM CORRIDA CR ");
sql.append(" INNER JOIN RUTA_COMBINACION RS ON RS.RUTA_ID = CR.RUTA_ID ");
sql.append(" INNER JOIN TRAMO TR1 ON TR1.TRAMO_ID = RS.TRAMO_ID ");
sql.append(" AND(TR1.ORIGEN_ID = CR.ORIGEN_ID ");
sql.append(" AND TR1.DESTINO_ID = CR.DESTINO_ID) ");
sql.append(" WHERE CR.ACTIVO = 1 ");
sql.append(" AND RS.ACTIVO = 1 ");
sql.append(" AND TR1.ACTIVO = 1 ");
sql.append(" AND CR.CORRIDA_ID = RESULTADO.corrida_id ");
sql.append((" AND CR.EMPRESACORRIDA_ID IN (") + empresaIds + ") ");
sql.append(" AND CR.FECCORRIDA BETWEEN to_date('" + dataDe + "','dd/mm/yyyy HH24:mi:ss') AND to_date('" + dataAte + "','dd/mm/yyyy HH24:mi:ss') ");
sql.append(" GROUP BY CR.CORRIDA_ID, CR.ROLOPERATIVO_ID ");
sql.append(" ) KM_CORRIDA, ");
sql.append(" (SELECT AVG(DA.cantasientos) ");
sql.append(" FROM corrida CO ");
sql.append(" INNER JOIN rol_operativo ROL ON ROL.roloperativo_id = CO.roloperativo_id ");

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="RelatorioAcompanhamentoEquivalentes" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="822" leftMargin="10" rightMargin="10" topMargin="20" bottomMargin="20" isFloatColumnFooter="true" uuid="efbc89d4-6f08-4ea5-802f-d4f48ed208e2">
<property name="ireport.zoom" value="2.727272727272727"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="155"/>
<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="RelatorioAcompanhamentoEquivalentes" pageWidth="852" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="832" leftMargin="10" rightMargin="10" topMargin="20" bottomMargin="20" isFloatColumnFooter="true" uuid="efbc89d4-6f08-4ea5-802f-d4f48ed208e2">
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="99"/>
<property name="ireport.y" value="0"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.band.2" value="pageHeader"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.keep.first.band.2" value="columnHeader"/>
<property name="net.sf.jasperreports.export.xls.remove.empty.space.between.rows" value="true"/>
@ -245,13 +245,13 @@
<groupHeader>
<band height="11">
<line>
<reportElement uuid="5bdcd7b5-6a5b-4ee1-b271-23c38689cbc0" x="0" y="1" width="822" height="1"/>
<reportElement uuid="5bdcd7b5-6a5b-4ee1-b271-23c38689cbc0" x="0" y="1" width="832" height="1"/>
<graphicElement>
<pen lineWidth="0.5"/>
</graphicElement>
</line>
<textField>
<reportElement uuid="9bf6af16-4242-4e39-b90e-3e0d3fe8cbdb" x="0" y="2" width="822" height="9"/>
<reportElement uuid="9bf6af16-4242-4e39-b90e-3e0d3fe8cbdb" x="0" y="2" width="832" height="9"/>
<textElement/>
<textFieldExpression><![CDATA[$F{INTERESTADUAL}.equals( "S" )?"Linhas Interestaduais":"Linhas Intermunicipais"]]></textFieldExpression>
</textField>
@ -263,12 +263,12 @@
<groupHeader>
<band height="10">
<textField>
<reportElement uuid="2bce894e-4df1-466e-90ba-6bd518ea4376" x="0" y="1" width="822" height="9"/>
<reportElement uuid="2bce894e-4df1-466e-90ba-6bd518ea4376" x="0" y="1" width="832" height="9"/>
<textElement/>
<textFieldExpression><![CDATA[$F{GRUPO_LINHA}]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="095b53f2-ed2e-4c2f-8b03-fd362ba20e4a" x="0" y="0" width="822" height="1"/>
<reportElement uuid="095b53f2-ed2e-4c2f-8b03-fd362ba20e4a" x="0" y="0" width="832" height="1"/>
<graphicElement>
<pen lineWidth="0.5"/>
</graphicElement>
@ -278,204 +278,204 @@
<groupFooter>
<band height="9">
<staticText>
<reportElement uuid="4b6b609d-5a41-4a43-bd98-b0629bded9e2" x="0" y="0" width="137" height="9"/>
<reportElement uuid="4b6b609d-5a41-4a43-bd98-b0629bded9e2" x="0" y="0" width="145" height="9"/>
<textElement textAlignment="Right">
<font isBold="true"/>
</textElement>
<text><![CDATA[Total: ]]></text>
</staticText>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0bab105f-c6d5-4d20-8558-0fc096aead55" x="137" y="0" width="21" height="9"/>
<reportElement uuid="0bab105f-c6d5-4d20-8558-0fc096aead55" x="147" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{1}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="38cfedea-a7c0-4072-a32f-f716c15b56f1" x="158" y="0" width="21" height="9"/>
<reportElement uuid="38cfedea-a7c0-4072-a32f-f716c15b56f1" x="168" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{2}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="36683712-9a46-469c-8d13-fc6aaec33367" x="179" y="0" width="21" height="9"/>
<reportElement uuid="36683712-9a46-469c-8d13-fc6aaec33367" x="189" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{3}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="1e16cd4e-2527-498f-86c9-2fed63556866" x="200" y="0" width="21" height="9"/>
<reportElement uuid="1e16cd4e-2527-498f-86c9-2fed63556866" x="210" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{4}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="87be689e-7f46-44ca-afc1-d42e325d0885" x="221" y="0" width="21" height="9"/>
<reportElement uuid="87be689e-7f46-44ca-afc1-d42e325d0885" x="231" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{5}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ba9a640e-2062-4215-8c90-f3fc11ce342b" x="242" y="0" width="21" height="9"/>
<reportElement uuid="ba9a640e-2062-4215-8c90-f3fc11ce342b" x="252" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{6}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="56d64d1b-79b3-45c7-a7d7-0952477c1e67" x="263" y="0" width="21" height="9"/>
<reportElement uuid="56d64d1b-79b3-45c7-a7d7-0952477c1e67" x="273" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{7}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="5100cc0c-71cf-477b-8d55-2a794d9b8dbb" x="284" y="0" width="21" height="9"/>
<reportElement uuid="5100cc0c-71cf-477b-8d55-2a794d9b8dbb" x="294" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{8}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="59ed8331-3dce-4d98-b06d-9680790c517e" x="305" y="0" width="21" height="9"/>
<reportElement uuid="59ed8331-3dce-4d98-b06d-9680790c517e" x="315" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{9}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="79c5c24f-731c-47f6-a8f8-6da522f8827b" x="326" y="0" width="21" height="9"/>
<reportElement uuid="79c5c24f-731c-47f6-a8f8-6da522f8827b" x="336" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{10}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="d6ab4231-2316-42ce-b06b-22faa953e3c0" x="347" y="0" width="21" height="9"/>
<reportElement uuid="d6ab4231-2316-42ce-b06b-22faa953e3c0" x="357" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{11}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="78d99d3b-1bdd-407a-b5f4-58647f52821b" x="368" y="0" width="21" height="9"/>
<reportElement uuid="78d99d3b-1bdd-407a-b5f4-58647f52821b" x="378" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{12}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="57a93312-0e82-4d34-94a7-46272a0050b1" x="389" y="0" width="21" height="9"/>
<reportElement uuid="57a93312-0e82-4d34-94a7-46272a0050b1" x="399" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{13}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="1c9a3136-5f4f-4889-91af-846f51b0356c" x="410" y="0" width="21" height="9"/>
<reportElement uuid="1c9a3136-5f4f-4889-91af-846f51b0356c" x="420" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{14}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="1d5f3b35-0c22-4579-bcbd-23de4b073264" x="431" y="0" width="21" height="9"/>
<reportElement uuid="1d5f3b35-0c22-4579-bcbd-23de4b073264" x="441" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{15}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="545bf144-d319-423c-b093-10f2a5ff9bd5" x="452" y="0" width="21" height="9"/>
<reportElement uuid="545bf144-d319-423c-b093-10f2a5ff9bd5" x="462" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{16}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="249232da-ea48-46d6-a775-ea4227987e58" x="473" y="0" width="21" height="9"/>
<reportElement uuid="249232da-ea48-46d6-a775-ea4227987e58" x="483" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{17}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f6d0f994-a445-4d54-9616-8773b8e2845a" x="494" y="0" width="21" height="9"/>
<reportElement uuid="f6d0f994-a445-4d54-9616-8773b8e2845a" x="504" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{18}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="af965cde-4438-4e93-b3f7-0fd19f3117ff" x="515" y="0" width="21" height="9"/>
<reportElement uuid="af965cde-4438-4e93-b3f7-0fd19f3117ff" x="525" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{19}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ffa20eba-99f2-4b8b-8917-29415ded515c" x="536" y="0" width="21" height="9"/>
<reportElement uuid="ffa20eba-99f2-4b8b-8917-29415ded515c" x="546" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{20}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="baa1f6fa-63f2-438b-bd51-db8a18b2262c" x="557" y="0" width="21" height="9"/>
<reportElement uuid="baa1f6fa-63f2-438b-bd51-db8a18b2262c" x="567" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{21}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="89759c1e-a468-4044-9ce8-cc7b27e72173" x="578" y="0" width="21" height="9"/>
<reportElement uuid="89759c1e-a468-4044-9ce8-cc7b27e72173" x="588" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{22}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="254ec909-8bfe-41fc-8309-a87db3c7b65a" x="599" y="0" width="21" height="9"/>
<reportElement uuid="254ec909-8bfe-41fc-8309-a87db3c7b65a" x="609" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{23}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6b45d816-645e-4b74-8143-6c783d392395" x="620" y="0" width="21" height="9"/>
<reportElement uuid="6b45d816-645e-4b74-8143-6c783d392395" x="630" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{24}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="fdc9c511-40be-4efd-86ff-5362f85fad10" x="641" y="0" width="21" height="9"/>
<reportElement uuid="fdc9c511-40be-4efd-86ff-5362f85fad10" x="651" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{25}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="95c07731-4d37-4851-8358-018f167b8d33" x="662" y="0" width="21" height="9"/>
<reportElement uuid="95c07731-4d37-4851-8358-018f167b8d33" x="672" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{26}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="4898689e-7214-43a4-b3fa-a0d43e53b144" x="683" y="0" width="21" height="9"/>
<reportElement uuid="4898689e-7214-43a4-b3fa-a0d43e53b144" x="693" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{27}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f7a16404-02f1-4b2a-aa15-2a569d376fcc" x="704" y="0" width="21" height="9"/>
<reportElement uuid="f7a16404-02f1-4b2a-aa15-2a569d376fcc" x="714" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{28}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="cfa8064a-9e20-4731-a2b2-6b511c753e0e" x="725" y="0" width="21" height="9"/>
<reportElement uuid="cfa8064a-9e20-4731-a2b2-6b511c753e0e" x="735" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{29}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c1996fec-d0f4-4861-8508-1f793501a672" x="746" y="0" width="21" height="9"/>
<reportElement uuid="c1996fec-d0f4-4861-8508-1f793501a672" x="756" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{30}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="da6f5a66-9208-4bd2-957c-ce7084ed4359" x="767" y="0" width="21" height="9"/>
<reportElement uuid="da6f5a66-9208-4bd2-957c-ce7084ed4359" x="777" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{31}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7c3d5ad1-0b32-4024-81b4-065189471321" x="788" y="0" width="17" height="9"/>
<reportElement uuid="7c3d5ad1-0b32-4024-81b4-065189471321" x="798" y="0" width="17" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{MEDIA}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="68978ea2-ea41-458b-adce-df2cf786a1e9" x="805" y="0" width="17" height="9"/>
<reportElement uuid="68978ea2-ea41-458b-adce-df2cf786a1e9" x="815" y="0" width="17" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{TOTAL}]]></textFieldExpression>
</textField>
@ -518,24 +518,24 @@
<text><![CDATA[Mês/Ano:]]></text>
</staticText>
<textField>
<reportElement uuid="e5254cd0-647f-4b22-be4c-cce9afc5a10f" x="694" y="15" width="128" height="20"/>
<reportElement uuid="e5254cd0-647f-4b22-be4c-cce9afc5a10f" x="694" y="15" width="138" height="20"/>
<textElement textAlignment="Right">
<font size="10"/>
</textElement>
<textFieldExpression><![CDATA["Página: "+$V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
<textField pattern="dd/MM/yyyy">
<reportElement uuid="55b08ff2-e470-4b59-8c56-58e6fa05ccd5" x="694" y="0" width="128" height="15"/>
<reportElement uuid="55b08ff2-e470-4b59-8c56-58e6fa05ccd5" x="694" y="0" width="138" height="15"/>
<textElement textAlignment="Right">
<font size="10"/>
</textElement>
<textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
</textField>
<line>
<reportElement uuid="afaaa1cf-1a3e-4a42-9fa3-e634a66fc3d3" x="0" y="50" width="822" height="1"/>
<reportElement uuid="afaaa1cf-1a3e-4a42-9fa3-e634a66fc3d3" x="0" y="50" width="832" height="1"/>
</line>
<textField>
<reportElement uuid="4f103585-10c9-4ec5-83e3-40076b812270" x="694" y="35" width="128" height="15"/>
<reportElement uuid="4f103585-10c9-4ec5-83e3-40076b812270" x="694" y="35" width="138" height="15"/>
<textElement textAlignment="Right">
<font size="10"/>
</textElement>
@ -564,354 +564,354 @@
<text><![CDATA[Ser.]]></text>
</staticText>
<staticText>
<reportElement uuid="db4d2cdf-6182-4ed4-88fb-793f2df5f819" x="89" y="19" width="22" height="9"/>
<reportElement uuid="db4d2cdf-6182-4ed4-88fb-793f2df5f819" x="89" y="19" width="32" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[Código]]></text>
</staticText>
<staticText>
<reportElement uuid="a7595967-d511-40ac-9944-2005d7b81f82" x="111" y="19" width="26" height="9"/>
<reportElement uuid="a7595967-d511-40ac-9944-2005d7b81f82" x="121" y="19" width="26" height="9"/>
<textElement textAlignment="Center"/>
<text><![CDATA[Horário]]></text>
</staticText>
<textField>
<reportElement uuid="2107e748-575e-48ea-bf9c-2537d4f5ddd6" x="0" y="10" width="157" height="9"/>
<reportElement uuid="2107e748-575e-48ea-bf9c-2537d4f5ddd6" x="0" y="10" width="168" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_1}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="dc0c4d88-d505-4fd5-abeb-f701d9c0b302" x="158" y="10" width="21" height="9"/>
<reportElement uuid="dc0c4d88-d505-4fd5-abeb-f701d9c0b302" x="168" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_2}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="acca6f71-0cd6-44d3-b011-f2f888f65d53" x="179" y="10" width="21" height="9"/>
<reportElement uuid="acca6f71-0cd6-44d3-b011-f2f888f65d53" x="189" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_3}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="6be4fcb6-6dd1-450e-8a63-9191dae7d114" x="200" y="10" width="21" height="9"/>
<reportElement uuid="6be4fcb6-6dd1-450e-8a63-9191dae7d114" x="210" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_4}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="56631e55-ec6b-45ad-b473-374e7d50aeab" x="221" y="10" width="21" height="9"/>
<reportElement uuid="56631e55-ec6b-45ad-b473-374e7d50aeab" x="231" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_5}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="b0aa3d67-927b-4869-b207-b066109e93eb" x="242" y="10" width="21" height="9"/>
<reportElement uuid="b0aa3d67-927b-4869-b207-b066109e93eb" x="252" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_6}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="9776b0ae-011f-4c80-826e-8ef9d9d82c53" x="263" y="10" width="21" height="9"/>
<reportElement uuid="9776b0ae-011f-4c80-826e-8ef9d9d82c53" x="273" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_7}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="6e2004a6-ca3c-4304-ac25-bcac39e59b52" x="284" y="10" width="21" height="9"/>
<reportElement uuid="6e2004a6-ca3c-4304-ac25-bcac39e59b52" x="294" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_8}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="35a9267c-bc50-4007-ab8e-d09da4c11377" x="305" y="10" width="21" height="9"/>
<reportElement uuid="35a9267c-bc50-4007-ab8e-d09da4c11377" x="315" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_9}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="02fc4075-effa-435e-abb8-8ffd6e2a808a" x="326" y="10" width="21" height="9"/>
<reportElement uuid="02fc4075-effa-435e-abb8-8ffd6e2a808a" x="336" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_10}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="f9d60367-2060-4861-80df-da648c5d9061" x="347" y="10" width="21" height="9"/>
<reportElement uuid="f9d60367-2060-4861-80df-da648c5d9061" x="357" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_11}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="e26fc1c7-80e7-41e2-81cf-cc0c9d0923b1" x="368" y="10" width="21" height="9"/>
<reportElement uuid="e26fc1c7-80e7-41e2-81cf-cc0c9d0923b1" x="378" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_12}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="05fa9c87-9245-4906-8e08-15a6fe4ba87d" x="389" y="10" width="21" height="9"/>
<reportElement uuid="05fa9c87-9245-4906-8e08-15a6fe4ba87d" x="399" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_13}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="505a83c1-9621-4b57-a98e-4fd4f31fc6a7" x="410" y="10" width="21" height="9"/>
<reportElement uuid="505a83c1-9621-4b57-a98e-4fd4f31fc6a7" x="420" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_14}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="786ef12e-991f-48fb-84e7-4a538d268464" x="431" y="10" width="21" height="9"/>
<reportElement uuid="786ef12e-991f-48fb-84e7-4a538d268464" x="441" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_15}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="3ca9d652-8763-4ba6-9eca-02503a479dd6" x="452" y="10" width="21" height="9"/>
<reportElement uuid="3ca9d652-8763-4ba6-9eca-02503a479dd6" x="462" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_16}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="7272cac1-e6d0-4f7c-bdc7-a7ce2cc5df28" x="473" y="10" width="21" height="9"/>
<reportElement uuid="7272cac1-e6d0-4f7c-bdc7-a7ce2cc5df28" x="483" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_17}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="3f56639e-dce9-4b6d-ba50-006457bad975" x="494" y="10" width="21" height="9"/>
<reportElement uuid="3f56639e-dce9-4b6d-ba50-006457bad975" x="504" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_18}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="dee9cad7-6045-4253-8adf-86abc07111b8" x="515" y="10" width="21" height="9"/>
<reportElement uuid="dee9cad7-6045-4253-8adf-86abc07111b8" x="525" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_19}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="d1f80bab-05c7-4e63-ad02-288d3e95fc1d" x="536" y="10" width="21" height="9"/>
<reportElement uuid="d1f80bab-05c7-4e63-ad02-288d3e95fc1d" x="546" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_20}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="76d4dc6b-7a53-4a19-b11c-679376c567f5" x="557" y="10" width="21" height="9"/>
<reportElement uuid="76d4dc6b-7a53-4a19-b11c-679376c567f5" x="567" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_21}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="d017d649-a4fd-40a8-883c-9256f486a2c9" x="578" y="10" width="21" height="9"/>
<reportElement uuid="d017d649-a4fd-40a8-883c-9256f486a2c9" x="588" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_22}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="82519047-4a31-49f6-9543-1af1aae0f345" x="599" y="10" width="21" height="9"/>
<reportElement uuid="82519047-4a31-49f6-9543-1af1aae0f345" x="609" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_23}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="81992545-46b5-419e-bcff-a0a538614ef9" x="620" y="10" width="21" height="9"/>
<reportElement uuid="81992545-46b5-419e-bcff-a0a538614ef9" x="630" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_24}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="1a67c216-1114-4f75-acdd-f86c00e507ac" x="641" y="10" width="21" height="9"/>
<reportElement uuid="1a67c216-1114-4f75-acdd-f86c00e507ac" x="651" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_25}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="f19274ea-e6ff-42bd-bb48-93fc5af9bb81" x="662" y="10" width="21" height="9"/>
<reportElement uuid="f19274ea-e6ff-42bd-bb48-93fc5af9bb81" x="672" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_26}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="c00ca3df-c20c-42b9-bdeb-8c929f394710" x="683" y="10" width="21" height="9"/>
<reportElement uuid="c00ca3df-c20c-42b9-bdeb-8c929f394710" x="693" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_27}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="6b23d108-a7c3-4260-8727-38ca8a8830ca" x="704" y="10" width="21" height="9"/>
<reportElement uuid="6b23d108-a7c3-4260-8727-38ca8a8830ca" x="714" y="10" width="21" height="9"/>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_28}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="947ae0f2-9bfe-410e-948f-299f4ddaa529" x="725" y="10" width="21" height="9">
<reportElement uuid="947ae0f2-9bfe-410e-948f-299f4ddaa529" x="735" y="10" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 28]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_29}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="3444e15e-4ecd-4be2-8150-8d8a17fc5ee3" x="746" y="10" width="21" height="9">
<reportElement uuid="3444e15e-4ecd-4be2-8150-8d8a17fc5ee3" x="756" y="10" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 29]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_30}]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="83819626-2df2-4c0d-a8a5-7aa76c2cf0be" x="767" y="10" width="21" height="9">
<reportElement uuid="83819626-2df2-4c0d-a8a5-7aa76c2cf0be" x="777" y="10" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 30]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_31}]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="1b584b49-a18c-4fec-9db0-a49c883f77bc" x="137" y="19" width="21" height="9"/>
<reportElement uuid="1b584b49-a18c-4fec-9db0-a49c883f77bc" x="147" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[1]]></text>
</staticText>
<staticText>
<reportElement uuid="0416fb40-f83d-4a6f-a7b2-414707c9b460" x="158" y="19" width="21" height="9"/>
<reportElement uuid="0416fb40-f83d-4a6f-a7b2-414707c9b460" x="168" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[2]]></text>
</staticText>
<staticText>
<reportElement uuid="ca416842-04f3-44da-9ec8-24cb8103ec84" x="179" y="19" width="21" height="9"/>
<reportElement uuid="ca416842-04f3-44da-9ec8-24cb8103ec84" x="189" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[3]]></text>
</staticText>
<staticText>
<reportElement uuid="a0cb4604-b560-4c46-ad36-3811db526c6e" x="200" y="19" width="21" height="9"/>
<reportElement uuid="a0cb4604-b560-4c46-ad36-3811db526c6e" x="210" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[4]]></text>
</staticText>
<staticText>
<reportElement uuid="d193b9ca-d636-4ea2-a9f4-5021e2f4a07d" x="221" y="19" width="21" height="9"/>
<reportElement uuid="d193b9ca-d636-4ea2-a9f4-5021e2f4a07d" x="231" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[5]]></text>
</staticText>
<staticText>
<reportElement uuid="aebcee91-87b4-4c3a-96ac-5edd44fee038" x="242" y="19" width="21" height="9"/>
<reportElement uuid="aebcee91-87b4-4c3a-96ac-5edd44fee038" x="252" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[6]]></text>
</staticText>
<staticText>
<reportElement uuid="69064ecf-e231-43a8-a799-05d3cf314376" x="263" y="19" width="21" height="9"/>
<reportElement uuid="69064ecf-e231-43a8-a799-05d3cf314376" x="273" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[7]]></text>
</staticText>
<staticText>
<reportElement uuid="7114e5f0-3f09-4149-9f0f-c98732a45775" x="284" y="19" width="21" height="9"/>
<reportElement uuid="7114e5f0-3f09-4149-9f0f-c98732a45775" x="294" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[8]]></text>
</staticText>
<staticText>
<reportElement uuid="2f0a2ba4-6244-4474-b2e7-62183aa8d3e1" x="305" y="19" width="21" height="9"/>
<reportElement uuid="2f0a2ba4-6244-4474-b2e7-62183aa8d3e1" x="315" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[9]]></text>
</staticText>
<staticText>
<reportElement uuid="557e9344-6ba9-4a6a-aee5-3dd26f97b0d7" x="326" y="19" width="21" height="9"/>
<reportElement uuid="557e9344-6ba9-4a6a-aee5-3dd26f97b0d7" x="336" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[10]]></text>
</staticText>
<staticText>
<reportElement uuid="835a2917-5687-4f28-aa47-0076edcb36c9" x="347" y="19" width="21" height="9"/>
<reportElement uuid="835a2917-5687-4f28-aa47-0076edcb36c9" x="357" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[11]]></text>
</staticText>
<staticText>
<reportElement uuid="c234f547-39fb-4b61-980c-dcb9b38a6375" x="368" y="19" width="21" height="9"/>
<reportElement uuid="c234f547-39fb-4b61-980c-dcb9b38a6375" x="378" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[12]]></text>
</staticText>
<staticText>
<reportElement uuid="6670ac05-94de-4ee7-8dd8-2925c98fc1bc" x="389" y="19" width="21" height="9"/>
<reportElement uuid="6670ac05-94de-4ee7-8dd8-2925c98fc1bc" x="399" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[13]]></text>
</staticText>
<staticText>
<reportElement uuid="f693af00-a15a-492d-ae53-ccf053350748" x="410" y="19" width="21" height="9"/>
<reportElement uuid="f693af00-a15a-492d-ae53-ccf053350748" x="420" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[14]]></text>
</staticText>
<staticText>
<reportElement uuid="2743d415-a9cd-4e39-91df-62a496fe65e5" x="431" y="19" width="21" height="9"/>
<reportElement uuid="2743d415-a9cd-4e39-91df-62a496fe65e5" x="441" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[15]]></text>
</staticText>
<staticText>
<reportElement uuid="a64e2134-19cd-4f09-a01f-625256d5ce26" x="452" y="19" width="21" height="9"/>
<reportElement uuid="a64e2134-19cd-4f09-a01f-625256d5ce26" x="462" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[16]]></text>
</staticText>
<staticText>
<reportElement uuid="5588d382-0a32-41bf-b29c-998858793836" x="473" y="19" width="21" height="9"/>
<reportElement uuid="5588d382-0a32-41bf-b29c-998858793836" x="483" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[17]]></text>
</staticText>
<staticText>
<reportElement uuid="02469f3a-db27-4848-8c83-d033339ae7fc" x="494" y="19" width="21" height="9"/>
<reportElement uuid="02469f3a-db27-4848-8c83-d033339ae7fc" x="504" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[18]]></text>
</staticText>
<staticText>
<reportElement uuid="b7f45013-d4da-41af-b3be-eedf28aebed9" x="515" y="19" width="21" height="9"/>
<reportElement uuid="b7f45013-d4da-41af-b3be-eedf28aebed9" x="525" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[19]]></text>
</staticText>
<staticText>
<reportElement uuid="b24ab443-8611-49d1-957a-e0e9a269b4d8" x="536" y="19" width="21" height="9"/>
<reportElement uuid="b24ab443-8611-49d1-957a-e0e9a269b4d8" x="546" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[20]]></text>
</staticText>
<staticText>
<reportElement uuid="18b91423-47ce-4cd8-96c9-ccd1cb7f50d0" x="557" y="19" width="21" height="9"/>
<reportElement uuid="18b91423-47ce-4cd8-96c9-ccd1cb7f50d0" x="567" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[21]]></text>
</staticText>
<staticText>
<reportElement uuid="bb38cd6b-b309-4b95-abf5-8541143c3842" x="578" y="19" width="21" height="9"/>
<reportElement uuid="bb38cd6b-b309-4b95-abf5-8541143c3842" x="588" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[22]]></text>
</staticText>
<staticText>
<reportElement uuid="d745fc7b-0b8f-452f-9f99-db793d1bb3c8" x="599" y="19" width="21" height="9"/>
<reportElement uuid="d745fc7b-0b8f-452f-9f99-db793d1bb3c8" x="609" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[23]]></text>
</staticText>
<staticText>
<reportElement uuid="06232108-6a9c-4026-96bb-d6ee33b6ffdc" x="620" y="19" width="21" height="9"/>
<reportElement uuid="06232108-6a9c-4026-96bb-d6ee33b6ffdc" x="630" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[24]]></text>
</staticText>
<staticText>
<reportElement uuid="37f5a219-9138-4a83-887f-b7152f623fba" x="641" y="19" width="21" height="9"/>
<reportElement uuid="37f5a219-9138-4a83-887f-b7152f623fba" x="651" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[25]]></text>
</staticText>
<staticText>
<reportElement uuid="1f5d2da5-9aaa-4b9d-8370-a82251aaeb61" x="683" y="19" width="21" height="9"/>
<reportElement uuid="1f5d2da5-9aaa-4b9d-8370-a82251aaeb61" x="693" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[27]]></text>
</staticText>
<staticText>
<reportElement uuid="876cf09a-12c7-4abf-86b5-b8ce1218d270" x="704" y="19" width="21" height="9"/>
<reportElement uuid="876cf09a-12c7-4abf-86b5-b8ce1218d270" x="714" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[28]]></text>
</staticText>
<staticText>
<reportElement uuid="06427360-d078-4b27-928a-87fba309b8c7" x="662" y="19" width="21" height="9"/>
<reportElement uuid="06427360-d078-4b27-928a-87fba309b8c7" x="672" y="19" width="21" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[26]]></text>
</staticText>
<staticText>
<reportElement uuid="2bae6074-292b-43d3-9b6c-24ad69ddf4f6" x="788" y="19" width="17" height="9"/>
<reportElement uuid="2bae6074-292b-43d3-9b6c-24ad69ddf4f6" x="798" y="19" width="17" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[Média]]></text>
</staticText>
<textField>
<reportElement uuid="c50bd256-0da8-46a0-bdcd-4602e06d7748" x="725" y="19" width="21" height="9">
<reportElement uuid="c50bd256-0da8-46a0-bdcd-4602e06d7748" x="735" y="19" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 28]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_29} != null ? "29" : ""]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="5ff87864-04aa-47d8-b11b-3b1b31dee01a" x="746" y="19" width="21" height="9">
<reportElement uuid="5ff87864-04aa-47d8-b11b-3b1b31dee01a" x="756" y="19" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 29]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_30} != null ? "30" : ""]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="f66dedbd-befa-42c1-bc68-b4a3875ab0cf" x="767" y="19" width="21" height="9">
<reportElement uuid="f66dedbd-befa-42c1-bc68-b4a3875ab0cf" x="777" y="19" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 30]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right"/>
<textFieldExpression><![CDATA[$P{DATA_MES_31} != null ? "31" : ""]]></textFieldExpression>
</textField>
<staticText>
<reportElement uuid="dca3f721-6126-4f4c-8f30-0051952842b2" x="805" y="19" width="17" height="9"/>
<reportElement uuid="dca3f721-6126-4f4c-8f30-0051952842b2" x="815" y="19" width="17" height="9"/>
<textElement textAlignment="Center"/>
<text><![CDATA[Total]]></text>
</staticText>
<staticText>
<reportElement uuid="1044636e-4509-4245-be37-88cc4849b582" x="788" y="10" width="17" height="9"/>
<reportElement uuid="1044636e-4509-4245-be37-88cc4849b582" x="798" y="10" width="17" height="9"/>
<textElement textAlignment="Right"/>
<text><![CDATA[]]></text>
</staticText>
<staticText>
<reportElement uuid="4a6c2baa-39c5-4205-9b53-20632c72f4ca" x="805" y="10" width="17" height="9"/>
<reportElement uuid="4a6c2baa-39c5-4205-9b53-20632c72f4ca" x="815" y="10" width="17" height="9"/>
<textElement textAlignment="Center"/>
<text><![CDATA[]]></text>
</staticText>
@ -925,175 +925,175 @@
<detail>
<band height="9" splitType="Stretch">
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6c7fe634-f8ff-4561-b406-f3a7d81a59d7" x="137" y="0" width="21" height="9"/>
<reportElement uuid="6c7fe634-f8ff-4561-b406-f3a7d81a59d7" x="147" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{1}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="70a617b8-14c8-4db1-b0f4-92afcc689dec" x="158" y="0" width="21" height="9"/>
<reportElement uuid="70a617b8-14c8-4db1-b0f4-92afcc689dec" x="168" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{2}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e5da3ff4-37bd-4cd8-b6a6-200e61eab949" x="179" y="0" width="21" height="9"/>
<reportElement uuid="e5da3ff4-37bd-4cd8-b6a6-200e61eab949" x="189" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{3}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ca916bdf-73a3-47b3-9448-38015b20873d" x="200" y="0" width="21" height="9"/>
<reportElement uuid="ca916bdf-73a3-47b3-9448-38015b20873d" x="210" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{4}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="31aa5754-01ef-49f0-b3bf-6bdcf5800f62" x="221" y="0" width="21" height="9"/>
<reportElement uuid="31aa5754-01ef-49f0-b3bf-6bdcf5800f62" x="231" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{5}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="31bd6daf-d363-4a85-8e48-1013a9ebf4a3" x="242" y="0" width="21" height="9"/>
<reportElement uuid="31bd6daf-d363-4a85-8e48-1013a9ebf4a3" x="252" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{6}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="640c25da-45cc-4704-b897-84a51814a9a0" x="263" y="0" width="21" height="9"/>
<reportElement uuid="640c25da-45cc-4704-b897-84a51814a9a0" x="273" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{7}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6661dd44-288a-4005-92c9-37c87da4cc3d" x="284" y="0" width="21" height="9"/>
<reportElement uuid="6661dd44-288a-4005-92c9-37c87da4cc3d" x="294" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{8}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="63c1e741-80ed-4395-80c7-3407fb1ce029" x="305" y="0" width="21" height="9"/>
<reportElement uuid="63c1e741-80ed-4395-80c7-3407fb1ce029" x="315" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{9}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7d9cc1fd-10f3-46b9-bfd9-1dfe69bcdcd3" x="326" y="0" width="21" height="9"/>
<reportElement uuid="7d9cc1fd-10f3-46b9-bfd9-1dfe69bcdcd3" x="336" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{10}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="dbfa0125-c957-43b2-abd3-b70653a30be0" x="347" y="0" width="21" height="9"/>
<reportElement uuid="dbfa0125-c957-43b2-abd3-b70653a30be0" x="357" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{11}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="60962cc3-9904-4b26-a4d1-7414fa1a4d95" x="368" y="0" width="21" height="9"/>
<reportElement uuid="60962cc3-9904-4b26-a4d1-7414fa1a4d95" x="378" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{12}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="fb6abc28-60a8-42c1-b289-1efc4cf85d4e" x="389" y="0" width="21" height="9"/>
<reportElement uuid="fb6abc28-60a8-42c1-b289-1efc4cf85d4e" x="399" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{13}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="72af959f-1bac-4244-80b9-bf1373e36d04" x="410" y="0" width="21" height="9"/>
<reportElement uuid="72af959f-1bac-4244-80b9-bf1373e36d04" x="420" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{14}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="97d8fdd9-4e7a-465a-b6bb-8f5e3214c7fe" x="431" y="0" width="21" height="9"/>
<reportElement uuid="97d8fdd9-4e7a-465a-b6bb-8f5e3214c7fe" x="441" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{15}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="4fec3db5-f241-48f2-924f-0483059e94f6" x="452" y="0" width="21" height="9"/>
<reportElement uuid="4fec3db5-f241-48f2-924f-0483059e94f6" x="462" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{16}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6f3c3fad-ab53-4193-b26e-aec8a5dab372" x="473" y="0" width="21" height="9"/>
<reportElement uuid="6f3c3fad-ab53-4193-b26e-aec8a5dab372" x="483" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{17}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="46c22891-8102-42d4-be0f-f74f2382c282" x="494" y="0" width="21" height="9"/>
<reportElement uuid="46c22891-8102-42d4-be0f-f74f2382c282" x="504" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{18}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="dc59236b-f51c-4a51-a780-02859bd402fb" x="515" y="0" width="21" height="9"/>
<reportElement uuid="dc59236b-f51c-4a51-a780-02859bd402fb" x="525" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{19}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="279d0025-ffc2-40eb-899e-00a39763b1c1" x="536" y="0" width="21" height="9"/>
<reportElement uuid="279d0025-ffc2-40eb-899e-00a39763b1c1" x="546" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{20}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="20956cdc-d62d-4bbd-8e87-9f0e92b5a57e" x="557" y="0" width="21" height="9"/>
<reportElement uuid="20956cdc-d62d-4bbd-8e87-9f0e92b5a57e" x="567" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{21}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="33369dc3-5414-43a2-877e-e550bcc01079" x="578" y="0" width="21" height="9"/>
<reportElement uuid="33369dc3-5414-43a2-877e-e550bcc01079" x="588" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{22}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="9dae419c-5094-40d8-bfb2-1bb6c0890c18" x="599" y="0" width="21" height="9"/>
<reportElement uuid="9dae419c-5094-40d8-bfb2-1bb6c0890c18" x="609" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{23}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="39c215a1-877e-4fc7-8382-7f28a10c1f10" x="620" y="0" width="21" height="9"/>
<reportElement uuid="39c215a1-877e-4fc7-8382-7f28a10c1f10" x="630" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{24}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="710e4e5e-0df1-4699-b72e-ec66b04735f6" x="641" y="0" width="21" height="9"/>
<reportElement uuid="710e4e5e-0df1-4699-b72e-ec66b04735f6" x="651" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{25}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="aa499faf-02c5-4cc9-9bc2-955a1a2f89b9" x="662" y="0" width="21" height="9"/>
<reportElement uuid="aa499faf-02c5-4cc9-9bc2-955a1a2f89b9" x="672" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{26}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="53018545-5ca9-440e-8ef8-24a8ff44e63c" x="683" y="0" width="21" height="9"/>
<reportElement uuid="53018545-5ca9-440e-8ef8-24a8ff44e63c" x="693" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{27}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="2c1a0573-4046-4cb8-a65b-dbe37a0b25de" x="704" y="0" width="21" height="9"/>
<reportElement uuid="2c1a0573-4046-4cb8-a65b-dbe37a0b25de" x="714" y="0" width="21" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{28}]]></textFieldExpression>
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ff7126b7-4a2c-4c9f-8b6a-6154ad797d27" x="725" y="0" width="21" height="9">
<reportElement uuid="ff7126b7-4a2c-4c9f-8b6a-6154ad797d27" x="735" y="0" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 28]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
@ -1101,7 +1101,7 @@
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e376102a-1726-4351-a94a-98f7a3df367f" x="746" y="0" width="21" height="9">
<reportElement uuid="e376102a-1726-4351-a94a-98f7a3df367f" x="756" y="0" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 29]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
@ -1109,7 +1109,7 @@
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="38d94d51-460f-4dfe-9b88-c627f3593b0c" x="767" y="0" width="21" height="9">
<reportElement uuid="38d94d51-460f-4dfe-9b88-c627f3593b0c" x="777" y="0" width="21" height="9">
<printWhenExpression><![CDATA[new GregorianCalendar($P{DATA_MES}.getYear(), $P{DATA_MES}.getMonth(), $P{DATA_MES}.getDate()).getActualMaximum(Calendar.DAY_OF_MONTH) > 30]]></printWhenExpression>
</reportElement>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
@ -1117,7 +1117,7 @@
<patternExpression><![CDATA[$P{INDICADOR_NOME}.equals("Absoluto")?"":"###0.00"]]></patternExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6cbe547b-fd61-4a67-a3c5-96e9b9742eb1" x="788" y="0" width="17" height="9"/>
<reportElement uuid="6cbe547b-fd61-4a67-a3c5-96e9b9742eb1" x="798" y="0" width="17" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{MEDIA}]]></textFieldExpression>
</textField>
@ -1137,17 +1137,17 @@
<textFieldExpression><![CDATA[$F{SERVICO}.substring(0,1)]]></textFieldExpression>
</textField>
<textField pattern="" isBlankWhenNull="true">
<reportElement uuid="e77668a8-4828-4581-a0d6-6a8301d07573" x="89" y="0" width="22" height="9"/>
<reportElement uuid="e77668a8-4828-4581-a0d6-6a8301d07573" x="89" y="0" width="32" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{CODIGO}]]></textFieldExpression>
</textField>
<textField pattern="" isBlankWhenNull="true">
<reportElement uuid="cf1b2f4e-3187-4262-86a2-2fe1c0eee0e9" x="111" y="0" width="26" height="9"/>
<reportElement uuid="cf1b2f4e-3187-4262-86a2-2fe1c0eee0e9" x="121" y="0" width="26" height="9"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{HORARIO}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00;-#,##0.00" isBlankWhenNull="true">
<reportElement uuid="69ac4f91-f2bb-413c-be7f-81506f3cc2d4" x="805" y="0" width="17" height="9"/>
<reportElement uuid="69ac4f91-f2bb-413c-be7f-81506f3cc2d4" x="815" y="0" width="17" height="9"/>
<textElement textAlignment="Right" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{TOTAL}]]></textFieldExpression>
</textField>

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="RelatorioOrigemDestino" pageWidth="792" pageHeight="842" columnWidth="765" leftMargin="20" rightMargin="7" topMargin="20" bottomMargin="20" uuid="84b9dfcf-8ec5-4f51-80cc-7339e3b158b4">
<property name="ireport.zoom" value="1.5"/>
<property name="ireport.zoom" value="0.75"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="149"/>
<property name="ireport.y" value="0"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.band.2" value="title"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.band.3" value="pageHeader"/>
<property name="net.sf.jasperreports.export.xls.exclude.origin.keep.first.band.2" value="columnHeader"/>
@ -398,24 +398,24 @@
</staticText>
<textField pattern="#,##0.00">
<reportElement uuid="260d5364-9582-4f45-ae01-94dfd2781677" x="291" y="62" width="474" height="20"/>
<textElement/>
<textElement verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{RECEITA_2}.divide( new BigDecimal($F{KM_CORRIDA}.toString()).multiply(new BigDecimal($F{VIAGENS}.toString())),4,2 )]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00">
<reportElement uuid="5756db85-1209-46de-90eb-0097958f8e9c" x="291" y="82" width="474" height="20"/>
<textElement/>
<textElement verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{RECEITA_3}.divide(new BigDecimal($F{VIAGENS}.toString()),2,2 )]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00">
<reportElement uuid="1b9f5961-347c-4afe-94a8-8a221be656cb" x="94" y="122" width="127" height="20"/>
<textElement textAlignment="Left">
<textElement textAlignment="Left" verticalAlignment="Middle">
<font isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$V{sum_pax_km}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00">
<reportElement uuid="baa10eb2-baf4-49ae-83cd-c06104a06d75" x="291" y="102" width="474" height="20"/>
<textElement textAlignment="Left">
<textElement textAlignment="Left" verticalAlignment="Middle">
<font isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$V{sum_equivalente}]]></textFieldExpression>
@ -515,12 +515,12 @@
</staticText>
<textField pattern="#,##0.00">
<reportElement uuid="2e9a3a57-4989-4418-83d5-6a389f91f1b7" x="94" y="62" width="127" height="20"/>
<textElement/>
<textElement verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{KM_CORRIDA}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00">
<reportElement uuid="9d44eaed-c896-4000-a73d-2443760ede53" x="94" y="102" width="127" height="20"/>
<textElement/>
<textElement verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{KM_CORRIDA_1}]]></textFieldExpression>
</textField>
<staticText>
@ -532,17 +532,17 @@
</staticText>
<textField pattern="#,##0.00">
<reportElement uuid="5c8faa69-f13d-41c0-9ba4-46007cae9716" x="94" y="142" width="671" height="20"/>
<textElement/>
<textElement verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{PAX_OFERTADO}]]></textFieldExpression>
</textField>
<textField pattern="#,##0.00">
<reportElement uuid="f73cbb8b-ccfd-4145-8314-7f6da15129b8" x="291" y="122" width="474" height="20"/>
<textElement/>
<textElement verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$V{sum_pax_km}.divide( $V{PAX_OFERTADO}, 4, RoundingMode.HALF_UP).multiply(new BigDecimal("100"))]]></textFieldExpression>
</textField>
<textField>
<reportElement uuid="530855a6-9450-465a-8f7c-cdd67a2a311a" x="94" y="82" width="127" height="20"/>
<textElement/>
<textElement verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{VIAGENS}]]></textFieldExpression>
</textField>
<textField>

View File

@ -33,7 +33,7 @@
maxlength="10" />
</cell>
</row>
<row>
<row spans="1 ,3">
<label
value="${c:l('relatorioKmProgramadaController.lbRuta.value')}" />
<combobox id="cmbRuta" width="90%" mold="rounded"
@ -41,7 +41,7 @@
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
model="@{winFiltroRelatorioKmProgramada$composer.lsRuta}" />
</row>
<row>
<row spans="1 ,3">
<label
value="${c:l('relatorioKmProgramadaController.lbEmpresa.value')}" />
<combobox id="cmbEmpresa" width="90%" mold="rounded"

View File

@ -34,7 +34,7 @@
value="${c:l('relatorioOrigemDestinoController.lblEmpresa.value')}" />
<combobox id="cmbEmpresa" constraint="no empty"
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
mold="rounded" buttonVisible="true" width="40%"
mold="rounded" buttonVisible="true" width="90%"
model="@{winFiltroRelatorioOrigemDestino$composer.lsEmpresa}" />
</row>