fixes bug #10327
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@77061 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
96ef402985
commit
7527691dd6
|
@ -47,13 +47,13 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
|
||||||
|
|
||||||
sql.append("select ");
|
sql.append("select ");
|
||||||
sql.append(" trunc(co.feccorrida) as data_corrida, ");
|
sql.append(" trunc(co.feccorrida) as data_corrida, ");
|
||||||
sql.append(" trunc(bo.fechorviaje) as data, ");
|
sql.append(" trunc(co.fechorsalida) as data, ");
|
||||||
sql.append(" r.descruta as linha, ");
|
sql.append(" r.descruta as linha, ");
|
||||||
sql.append(" r.numruta as codlinha, ");
|
sql.append(" r.numruta as codlinha, ");
|
||||||
sql.append(" co.corrida_id as servico, ");
|
sql.append(" co.corrida_id as servico, ");
|
||||||
sql.append(" case when ((ori.indvisibleinternet is null or ori.indvisibleinternet = 1) ");
|
sql.append(" case when ((ori.indvisibleinternet is null or ori.indvisibleinternet = 1) ");
|
||||||
sql.append(" and (des.indvisibleinternet is null or des.indvisibleinternet = 1)) then 'SIM' else 'NÃO' end as internet, ");
|
sql.append(" and (des.indvisibleinternet is null or des.indvisibleinternet = 1)) then 'SIM' else 'NÃO' end as internet, ");
|
||||||
sql.append(" bo.fechorviaje as horario, ");
|
sql.append(" co.fechorsalida as horario, ");
|
||||||
sql.append(" ori.descparada as origem, ");
|
sql.append(" ori.descparada as origem, ");
|
||||||
sql.append(" des.descparada as destino, ");
|
sql.append(" des.descparada as destino, ");
|
||||||
sql.append(" cs.descclase as classe, ");
|
sql.append(" cs.descclase as classe, ");
|
||||||
|
@ -68,8 +68,8 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
|
||||||
sql.append(" join corrida_tramo ct on ct.corrida_id = bo.corrida_id and bo.feccorrida = ct.feccorrida and ct.origen_id = bo.origen_id ");
|
sql.append(" join corrida_tramo ct on ct.corrida_id = bo.corrida_id and bo.feccorrida = ct.feccorrida and ct.origen_id = bo.origen_id ");
|
||||||
sql.append(" join ruta r on co.ruta_id = r.ruta_id ");
|
sql.append(" join ruta r on co.ruta_id = r.ruta_id ");
|
||||||
sql.append(" left join empresa e on e.empresa_id = bo.empresacorrida_id ");
|
sql.append(" left join empresa e on e.empresa_id = bo.empresacorrida_id ");
|
||||||
sql.append(" join parada ori on ori.parada_id = bo.origen_id ");
|
sql.append(" join parada ori on ori.parada_id = co.origen_id ");
|
||||||
sql.append(" join parada des on des.parada_id = bo.destino_id ");
|
sql.append(" join parada des on des.parada_id = co.destino_id ");
|
||||||
sql.append(" join clase_servicio cs on cs.claseservicio_id = co.claseservicio_id ");
|
sql.append(" join clase_servicio cs on cs.claseservicio_id = co.claseservicio_id ");
|
||||||
sql.append(" join rol_operativo ro on ro.roloperativo_id = co.roloperativo_id ");
|
sql.append(" join rol_operativo ro on ro.roloperativo_id = co.roloperativo_id ");
|
||||||
sql.append(" join diagrama_autobus da on ro.diagramaautobus_id = da.diagramaautobus_id ");
|
sql.append(" join diagrama_autobus da on ro.diagramaautobus_id = da.diagramaautobus_id ");
|
||||||
|
@ -99,7 +99,7 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
|
||||||
sql.append(" ) ");
|
sql.append(" ) ");
|
||||||
}
|
}
|
||||||
|
|
||||||
sql.append("group by trunc(co.feccorrida), trunc(bo.fechorviaje), r.descruta, r.numruta, co.corrida_id, ");
|
sql.append("group by co.feccorrida, co.fechorsalida, r.descruta, r.numruta, co.corrida_id, ");
|
||||||
sql.append(" case when ((ori.indvisibleinternet is null or ori.indvisibleinternet = 1) ");
|
sql.append(" case when ((ori.indvisibleinternet is null or ori.indvisibleinternet = 1) ");
|
||||||
sql.append(" and (des.indvisibleinternet is null or des.indvisibleinternet = 1)) then 'SIM' else 'NÃO' end, ");
|
sql.append(" and (des.indvisibleinternet is null or des.indvisibleinternet = 1)) then 'SIM' else 'NÃO' end, ");
|
||||||
sql.append(" bo.fechorviaje, ori.descparada, des.descparada, cs.descclase, ");
|
sql.append(" bo.fechorviaje, ori.descparada, des.descparada, cs.descclase, ");
|
||||||
|
@ -109,8 +109,8 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
|
||||||
sql.append(" ), nao_vendidos as ( ");
|
sql.append(" ), nao_vendidos as ( ");
|
||||||
|
|
||||||
|
|
||||||
sql.append(" SELECT co.FECHORSALIDA AS data_corrida, ");
|
sql.append(" SELECT TRUNC(co.FECHORSALIDA) AS data_corrida, ");
|
||||||
sql.append(" co.FECHORSALIDA AS data, ");
|
sql.append(" TRUNC(co.FECHORSALIDA) AS data, ");
|
||||||
sql.append(" r.descruta AS linha, ");
|
sql.append(" r.descruta AS linha, ");
|
||||||
sql.append(" r.numruta AS codlinha, ");
|
sql.append(" r.numruta AS codlinha, ");
|
||||||
sql.append(" co.corrida_id AS servico, ");
|
sql.append(" co.corrida_id AS servico, ");
|
||||||
|
@ -122,7 +122,7 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
|
||||||
sql.append("THEN 'SIM' ");
|
sql.append("THEN 'SIM' ");
|
||||||
sql.append("ELSE 'NÃO' ");
|
sql.append("ELSE 'NÃO' ");
|
||||||
sql.append("END AS internet, ");
|
sql.append("END AS internet, ");
|
||||||
sql.append("co.FECCORRIDA AS horario, ");
|
sql.append("co.FECHORSALIDA AS horario, ");
|
||||||
sql.append("ori.descparada AS origem, ");
|
sql.append("ori.descparada AS origem, ");
|
||||||
sql.append(" des.descparada AS destino, ");
|
sql.append(" des.descparada AS destino, ");
|
||||||
sql.append(" cs.descclase AS classe, ");
|
sql.append(" cs.descclase AS classe, ");
|
||||||
|
@ -156,6 +156,7 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
|
||||||
sql.append(" WHERE ct.activo = 1 ");
|
sql.append(" WHERE ct.activo = 1 ");
|
||||||
sql.append(" and co.activo = 1 ");
|
sql.append(" and co.activo = 1 ");
|
||||||
sql.append(" and co.FECHORSALIDA >= :DATA_INICIAL and co.FECHORSALIDA <= :DATA_FINAL ");
|
sql.append(" and co.FECHORSALIDA >= :DATA_INICIAL and co.FECHORSALIDA <= :DATA_FINAL ");
|
||||||
|
sql.append(" and co.CORRIDA_ID not in (select servico from vendidos ) ");
|
||||||
|
|
||||||
if (parametros.get("HORA_INICIAL") != null && parametros.get("HORA_FINAL") != null) {
|
if (parametros.get("HORA_INICIAL") != null && parametros.get("HORA_FINAL") != null) {
|
||||||
sql.append(" AND ");
|
sql.append(" AND ");
|
||||||
|
@ -174,8 +175,12 @@ public class RelatorioDemandasDetalhadoNovoLayout extends RelatorioDemandas {
|
||||||
sql.append(" ) ");
|
sql.append(" ) ");
|
||||||
}
|
}
|
||||||
|
|
||||||
sql.append(" )select * from ( ");
|
sql.append(" )select ");
|
||||||
sql.append(" select * from vendidos v union select * from nao_vendidos ) order by empresa ");
|
sql.append(" DATA_CORRIDA, DATA, LINHA, CODLINHA, SERVICO, INTERNET, HORARIO, ORIGEM, DESTINO, CLASSE, CAPACIDADE, SUM(OCUPACAO) OCUPACAO, TIPO_SERVICO, PLATAFORMA, EMPRESA, SENTIDO ");
|
||||||
|
sql.append(" from ( ");
|
||||||
|
sql.append(" select * from vendidos v union select * from nao_vendidos ) ");
|
||||||
|
sql.append(" GROUP BY DATA_CORRIDA, DATA, LINHA, CODLINHA, SERVICO, INTERNET, HORARIO, ORIGEM, DESTINO, CLASSE, CAPACIDADE, OCUPACAO, TIPO_SERVICO, PLATAFORMA, EMPRESA, SENTIDO ");
|
||||||
|
sql.append(" order by empresa ");
|
||||||
|
|
||||||
|
|
||||||
NamedParameterStatement stmt = new NamedParameterStatement(conexao, sql.toString());
|
NamedParameterStatement stmt = new NamedParameterStatement(conexao, sql.toString());
|
||||||
|
|
Binary file not shown.
|
@ -76,14 +76,14 @@
|
||||||
<text><![CDATA[Data]]></text>
|
<text><![CDATA[Data]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="7e1f6b82-8a1f-4719-b942-41f0d7027aa8" x="182" y="0" width="46" height="13"/>
|
<reportElement uuid="7e1f6b82-8a1f-4719-b942-41f0d7027aa8" x="202" y="0" width="46" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8" isBold="true"/>
|
<font size="8" isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Horário]]></text>
|
<text><![CDATA[Horário]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="95367884-2b52-4bbd-b716-852ff13290e9" mode="Transparent" x="601" y="0" width="40" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="95367884-2b52-4bbd-b716-852ff13290e9" mode="Transparent" x="591" y="0" width="45" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -91,7 +91,7 @@
|
||||||
<text><![CDATA[Ocupação]]></text>
|
<text><![CDATA[Ocupação]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="a39ab8f3-becb-44e3-b4f5-b7c43889508c" mode="Transparent" x="348" y="0" width="120" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="a39ab8f3-becb-44e3-b4f5-b7c43889508c" mode="Transparent" x="348" y="0" width="100" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -99,7 +99,7 @@
|
||||||
<text><![CDATA[Destino]]></text>
|
<text><![CDATA[Destino]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="170230ea-2a12-4444-9f13-c706d557ae8d" mode="Transparent" x="641" y="0" width="68" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="170230ea-2a12-4444-9f13-c706d557ae8d" mode="Transparent" x="636" y="0" width="68" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -107,7 +107,7 @@
|
||||||
<text><![CDATA[Tipo]]></text>
|
<text><![CDATA[Tipo]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="c0542d93-dde4-448d-932c-453d6a4a6882" mode="Transparent" x="228" y="0" width="120" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="c0542d93-dde4-448d-932c-453d6a4a6882" mode="Transparent" x="248" y="0" width="100" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
<text><![CDATA[Origem]]></text>
|
<text><![CDATA[Origem]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="9c65b631-065c-49af-ab2c-3bcea583eaea" mode="Transparent" x="558" y="0" width="43" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="9c65b631-065c-49af-ab2c-3bcea583eaea" mode="Transparent" x="538" y="0" width="53" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -123,7 +123,7 @@
|
||||||
<text><![CDATA[Capacidade]]></text>
|
<text><![CDATA[Capacidade]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="a7f96097-c8fd-4ba0-bea7-7b40a0fc81f7" mode="Transparent" x="468" y="0" width="90" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="a7f96097-c8fd-4ba0-bea7-7b40a0fc81f7" mode="Transparent" x="448" y="0" width="90" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -131,7 +131,7 @@
|
||||||
<text><![CDATA[Classe]]></text>
|
<text><![CDATA[Classe]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="0452264c-0f27-46d6-84ad-0fba6e5abdfa" mode="Transparent" x="709" y="0" width="51" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="0452264c-0f27-46d6-84ad-0fba6e5abdfa" mode="Transparent" x="704" y="0" width="51" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
<text><![CDATA[Plataforma]]></text>
|
<text><![CDATA[Plataforma]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="f596b16a-f9d9-42f5-b86f-3f468b0deb8f" mode="Transparent" x="760" y="0" width="52" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="f596b16a-f9d9-42f5-b86f-3f468b0deb8f" mode="Transparent" x="755" y="0" width="57" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="8" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -154,11 +154,11 @@
|
||||||
<text><![CDATA[Linha]]></text>
|
<text><![CDATA[Linha]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="a427bc80-0924-441c-896b-a888a929d4f5" x="138" y="0" width="44" height="13"/>
|
<reportElement uuid="a427bc80-0924-441c-896b-a888a929d4f5" x="138" y="0" width="64" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8" isBold="true"/>
|
<font size="8" isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Internet]]></text>
|
<text><![CDATA[Empresa]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="8213fc73-da7f-47fc-b430-e9f4f3e4add7" mode="Transparent" x="812" y="0" width="30" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="8213fc73-da7f-47fc-b430-e9f4f3e4add7" mode="Transparent" x="812" y="0" width="30" height="13" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
|
@ -190,63 +190,63 @@
|
||||||
<textFieldExpression><![CDATA[$F{SERVICO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{SERVICO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="HH.mm" isBlankWhenNull="true">
|
<textField pattern="HH.mm" isBlankWhenNull="true">
|
||||||
<reportElement uuid="ef45dd24-19e8-4e92-9759-f8e7a5c990eb" x="182" y="0" width="46" height="13"/>
|
<reportElement uuid="ef45dd24-19e8-4e92-9759-f8e7a5c990eb" x="202" y="0" width="46" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{HORARIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{HORARIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isBlankWhenNull="true">
|
<textField isBlankWhenNull="true">
|
||||||
<reportElement uuid="17011486-0d4c-4e22-b534-48e0bb025673" x="228" y="0" width="120" height="13"/>
|
<reportElement uuid="17011486-0d4c-4e22-b534-48e0bb025673" x="248" y="0" width="100" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{ORIGEM}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{ORIGEM}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isBlankWhenNull="true">
|
<textField isBlankWhenNull="true">
|
||||||
<reportElement uuid="a89c84e4-0e13-4e85-a565-9eb0bc6e5423" x="348" y="0" width="120" height="13"/>
|
<reportElement uuid="a89c84e4-0e13-4e85-a565-9eb0bc6e5423" x="348" y="0" width="100" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{DESTINO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{DESTINO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isBlankWhenNull="true">
|
<textField isBlankWhenNull="true">
|
||||||
<reportElement uuid="7be97f5f-b36b-4679-befb-e5f2b4532963" x="468" y="0" width="90" height="13"/>
|
<reportElement uuid="7be97f5f-b36b-4679-befb-e5f2b4532963" x="448" y="0" width="90" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{CLASSE}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{CLASSE}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="###0" isBlankWhenNull="true">
|
<textField pattern="###0" isBlankWhenNull="true">
|
||||||
<reportElement uuid="7c1e2d86-f9ce-4730-866c-dc6cbdd0cf2c" x="558" y="0" width="43" height="13"/>
|
<reportElement uuid="7c1e2d86-f9ce-4730-866c-dc6cbdd0cf2c" x="538" y="0" width="53" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{CAPACIDADE}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{CAPACIDADE}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="###0" isBlankWhenNull="true">
|
<textField pattern="###0" isBlankWhenNull="true">
|
||||||
<reportElement uuid="7c0246f5-739b-440c-a242-915117bd9fd1" x="601" y="0" width="40" height="13"/>
|
<reportElement uuid="7c0246f5-739b-440c-a242-915117bd9fd1" x="591" y="0" width="45" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{OCUPACAO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{OCUPACAO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="¤ #,##0.00" isBlankWhenNull="true">
|
<textField pattern="¤ #,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="dd401917-6047-4e1b-9722-31fe8d096594" x="641" y="0" width="68" height="13"/>
|
<reportElement uuid="dd401917-6047-4e1b-9722-31fe8d096594" x="636" y="0" width="68" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{TIPO_SERVICO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{TIPO_SERVICO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="¤ #,##0.00" isBlankWhenNull="true">
|
<textField pattern="¤ #,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="4dafd61b-ce2b-4690-b029-2a1382113099" x="709" y="0" width="51" height="13"/>
|
<reportElement uuid="4dafd61b-ce2b-4690-b029-2a1382113099" x="704" y="0" width="51" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{PLATAFORMA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{PLATAFORMA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00 %" isBlankWhenNull="true">
|
<textField pattern="#,##0.00 %" isBlankWhenNull="true">
|
||||||
<reportElement uuid="8ad565b3-b12c-4fef-a1c7-836e7415436d" x="760" y="0" width="52" height="13"/>
|
<reportElement uuid="8ad565b3-b12c-4fef-a1c7-836e7415436d" x="755" y="0" width="57" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
@ -260,11 +260,11 @@
|
||||||
<textFieldExpression><![CDATA[$F{CODLINHA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{CODLINHA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement uuid="773ac0f6-0c11-430d-8a10-8c62b272b064" x="138" y="0" width="44" height="13"/>
|
<reportElement uuid="773ac0f6-0c11-430d-8a10-8c62b272b064" x="138" y="0" width="64" height="13"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="8"/>
|
<font size="8"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{INTERNET}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{EMPRESA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="¤ #,##0.00" isBlankWhenNull="true">
|
<textField pattern="¤ #,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="cce46f47-2fbf-45c2-8347-6d3572f19b92" x="812" y="0" width="30" height="13"/>
|
<reportElement uuid="cce46f47-2fbf-45c2-8347-6d3572f19b92" x="812" y="0" width="30" height="13"/>
|
||||||
|
|
Loading…
Reference in New Issue