Fixes Bug #0009359
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@72350 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
2b05c3ec7b
commit
7393d38058
|
@ -218,6 +218,7 @@ public class RelatorioReceitaDiariaAgencia extends Relatorio {
|
||||||
rowDestino.put("NOMBPUNTOVENTA", configComissao.get("NOMBPUNTOVENTA"));
|
rowDestino.put("NOMBPUNTOVENTA", configComissao.get("NOMBPUNTOVENTA"));
|
||||||
rowDestino.put("EMPRESAPUNTOVENTA_ID", rowOrigem.get("EMPRESAPUNTOVENTA_ID"));
|
rowDestino.put("EMPRESAPUNTOVENTA_ID", rowOrigem.get("EMPRESAPUNTOVENTA_ID"));
|
||||||
rowDestino.put("EMPRESA", rowOrigem.get("EMPRESA"));
|
rowDestino.put("EMPRESA", rowOrigem.get("EMPRESA"));
|
||||||
|
rowDestino.put("GRUPO_RUTA", rowOrigem.get("GRUPO_RUTA"));
|
||||||
rowDestino.put("EMPRESA_ID", rowOrigem.get("EMPRESA_ID"));
|
rowDestino.put("EMPRESA_ID", rowOrigem.get("EMPRESA_ID"));
|
||||||
rowDestino.put("ESTADO_ID", configComissao.get("ESTADO_ID"));
|
rowDestino.put("ESTADO_ID", configComissao.get("ESTADO_ID"));
|
||||||
rowDestino.put("TIPO_AGENCIA", configComissao.get("TIPO_AGENCIA"));
|
rowDestino.put("TIPO_AGENCIA", configComissao.get("TIPO_AGENCIA"));
|
||||||
|
@ -266,6 +267,11 @@ public class RelatorioReceitaDiariaAgencia extends Relatorio {
|
||||||
row.put("EMPRESAPUNTOVENTA_ID", rs.getInt("EMPRESAPUNTOVENTA_ID"));
|
row.put("EMPRESAPUNTOVENTA_ID", rs.getInt("EMPRESAPUNTOVENTA_ID"));
|
||||||
row.put("ESTADO_ID", rs.getBigDecimal("ESTADO_ID"));
|
row.put("ESTADO_ID", rs.getBigDecimal("ESTADO_ID"));
|
||||||
row.put("TIPO_AGENCIA", rs.getString("TIPO_AGENCIA"));
|
row.put("TIPO_AGENCIA", rs.getString("TIPO_AGENCIA"));
|
||||||
|
if (this.relatorio.getParametros().get("GRUPO_RUTA") != null) {
|
||||||
|
row.put("GRUPO_RUTA", rs.getString("GRUPO_RUTA"));
|
||||||
|
} else {
|
||||||
|
row.put("GRUPO_RUTA", " ----- ");
|
||||||
|
}
|
||||||
|
|
||||||
// Como a receita de bagagem é obtida por agencia, já calcula o valor
|
// Como a receita de bagagem é obtida por agencia, já calcula o valor
|
||||||
if (!(Boolean) this.relatorio.getParametros().get("B_EXCLUI_BAGAGEM"))
|
if (!(Boolean) this.relatorio.getParametros().get("B_EXCLUI_BAGAGEM"))
|
||||||
|
@ -583,6 +589,9 @@ public class RelatorioReceitaDiariaAgencia extends Relatorio {
|
||||||
sql.append(" PV.PUNTOVENTA_ID, ");
|
sql.append(" PV.PUNTOVENTA_ID, ");
|
||||||
sql.append(" PV.NUMPUNTOVENTA, ");
|
sql.append(" PV.NUMPUNTOVENTA, ");
|
||||||
sql.append(" PV.NOMBPUNTOVENTA, ");
|
sql.append(" PV.NOMBPUNTOVENTA, ");
|
||||||
|
if (this.getParametros().get("GRUPO_RUTA") != null) {
|
||||||
|
sql.append(" GR.DESCGRUPO as GRUPO_RUTA, ");
|
||||||
|
}
|
||||||
sql.append(" CJ.EMPRESAPUNTOVENTA_ID, ");
|
sql.append(" CJ.EMPRESAPUNTOVENTA_ID, ");
|
||||||
sql.append(" CE.ESTADO_ID, ");
|
sql.append(" CE.ESTADO_ID, ");
|
||||||
sql.append(" CASE ");
|
sql.append(" CASE ");
|
||||||
|
|
Binary file not shown.
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="RelatorioReceitaDiariaAgencia" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="822" leftMargin="10" rightMargin="10" topMargin="20" bottomMargin="20" uuid="c5fca8ba-9c4b-4e17-9986-a053943688db">
|
<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="RelatorioReceitaDiariaAgencia" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="822" leftMargin="10" rightMargin="10" topMargin="20" bottomMargin="20" uuid="c5fca8ba-9c4b-4e17-9986-a053943688db">
|
||||||
<property name="ireport.zoom" value="2.0"/>
|
<property name="ireport.zoom" value="2.662000000000002"/>
|
||||||
<property name="ireport.x" value="0"/>
|
<property name="ireport.x" value="8"/>
|
||||||
<property name="ireport.y" value="0"/>
|
<property name="ireport.y" value="191"/>
|
||||||
<style name="Title" fontName="Times New Roman" fontSize="50" isBold="true" pdfFontName="Times-Bold"/>
|
<style name="Title" fontName="Times New Roman" fontSize="50" isBold="true" pdfFontName="Times-Bold"/>
|
||||||
<style name="SubTitle" forecolor="#736343" fontName="SansSerif" fontSize="18"/>
|
<style name="SubTitle" forecolor="#736343" fontName="SansSerif" fontSize="18"/>
|
||||||
<style name="Column header" forecolor="#666666" fontName="SansSerif" fontSize="12" isBold="true"/>
|
<style name="Column header" forecolor="#666666" fontName="SansSerif" fontSize="12" isBold="true"/>
|
||||||
|
@ -247,6 +247,7 @@
|
||||||
<field name="RECEITA_EMBARQUE" class="java.math.BigDecimal"/>
|
<field name="RECEITA_EMBARQUE" class="java.math.BigDecimal"/>
|
||||||
<field name="RECEITA_EMBARQUE_GAP" class="java.math.BigDecimal"/>
|
<field name="RECEITA_EMBARQUE_GAP" class="java.math.BigDecimal"/>
|
||||||
<field name="EMPRESA" class="java.lang.String"/>
|
<field name="EMPRESA" class="java.lang.String"/>
|
||||||
|
<field name="GRUPO_RUTA" class="java.lang.String"/>
|
||||||
<sortField name="EMPRESA"/>
|
<sortField name="EMPRESA"/>
|
||||||
<sortField name="CVEESTADO"/>
|
<sortField name="CVEESTADO"/>
|
||||||
<variable name="TOTAL_BILHETES_SUM" class="java.math.BigDecimal" resetType="Group" resetGroup="GRUPO_ESTADO" calculation="Sum">
|
<variable name="TOTAL_BILHETES_SUM" class="java.math.BigDecimal" resetType="Group" resetGroup="GRUPO_ESTADO" calculation="Sum">
|
||||||
|
@ -366,7 +367,7 @@
|
||||||
<group name="GRUPO_EMPRESA">
|
<group name="GRUPO_EMPRESA">
|
||||||
<groupExpression><![CDATA[$F{EMPRESA}]]></groupExpression>
|
<groupExpression><![CDATA[$F{EMPRESA}]]></groupExpression>
|
||||||
<groupHeader>
|
<groupHeader>
|
||||||
<band height="17">
|
<band height="35">
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement uuid="ce32cedc-08d0-41e4-9d67-a0e21c9362d2" x="0" y="2" width="271" height="15"/>
|
<reportElement uuid="ce32cedc-08d0-41e4-9d67-a0e21c9362d2" x="0" y="2" width="271" height="15"/>
|
||||||
<textElement>
|
<textElement>
|
||||||
|
@ -380,6 +381,13 @@
|
||||||
<pen lineWidth="0.5" lineColor="#999999"/>
|
<pen lineWidth="0.5" lineColor="#999999"/>
|
||||||
</graphicElement>
|
</graphicElement>
|
||||||
</line>
|
</line>
|
||||||
|
<textField>
|
||||||
|
<reportElement uuid="fc89eefd-0a2e-4ed1-b40a-22356eb86aed" x="0" y="19" width="271" height="15"/>
|
||||||
|
<textElement>
|
||||||
|
<font size="10" isBold="true"/>
|
||||||
|
</textElement>
|
||||||
|
<textFieldExpression><![CDATA["Grupo Linhas: "+$F{GRUPO_RUTA}]]></textFieldExpression>
|
||||||
|
</textField>
|
||||||
</band>
|
</band>
|
||||||
</groupHeader>
|
</groupHeader>
|
||||||
<groupFooter>
|
<groupFooter>
|
||||||
|
@ -550,141 +558,141 @@
|
||||||
<group name="GRUPO_ESTADO">
|
<group name="GRUPO_ESTADO">
|
||||||
<groupExpression><![CDATA[$F{CVEESTADO}]]></groupExpression>
|
<groupExpression><![CDATA[$F{CVEESTADO}]]></groupExpression>
|
||||||
<groupHeader>
|
<groupHeader>
|
||||||
<band height="26">
|
<band height="28">
|
||||||
<line>
|
<line>
|
||||||
<reportElement uuid="b32b158e-fceb-4b79-babf-ce30e1ff68f5" positionType="FixRelativeToBottom" x="0" y="24" width="821" height="1"/>
|
<reportElement uuid="b32b158e-fceb-4b79-babf-ce30e1ff68f5" positionType="FixRelativeToBottom" x="0" y="27" width="821" height="1"/>
|
||||||
<graphicElement>
|
<graphicElement>
|
||||||
<pen lineWidth="0.5" lineColor="#999999"/>
|
<pen lineWidth="0.5" lineColor="#999999"/>
|
||||||
</graphicElement>
|
</graphicElement>
|
||||||
</line>
|
</line>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="7dfb828f-11e6-471f-bec2-2896f3c78754" style="Column header" x="0" y="10" width="12" height="14" forecolor="#000000"/>
|
<reportElement uuid="7dfb828f-11e6-471f-bec2-2896f3c78754" style="Column header" x="0" y="12" width="12" height="14" forecolor="#000000"/>
|
||||||
<textElement>
|
<textElement>
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[UF]]></text>
|
<text><![CDATA[UF]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="dbb355a5-7623-415d-b5a6-ca3088476a1b" style="Column header" x="12" y="10" width="44" height="14" forecolor="#000000"/>
|
<reportElement uuid="dbb355a5-7623-415d-b5a6-ca3088476a1b" style="Column header" x="12" y="12" width="44" height="14" forecolor="#000000"/>
|
||||||
<textElement>
|
<textElement>
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Código]]></text>
|
<text><![CDATA[Código]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="8bda6327-7d57-4282-98b6-260c3690462d" style="Column header" x="94" y="10" width="29" height="14" forecolor="#000000"/>
|
<reportElement uuid="8bda6327-7d57-4282-98b6-260c3690462d" style="Column header" x="94" y="12" width="29" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Qtd. Bil.]]></text>
|
<text><![CDATA[Qtd. Bil.]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="20565d90-4d41-4660-97cb-84b3bf6b20df" style="Column header" x="123" y="10" width="59" height="14" forecolor="#000000"/>
|
<reportElement uuid="20565d90-4d41-4660-97cb-84b3bf6b20df" style="Column header" x="123" y="12" width="59" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Tarifa]]></text>
|
<text><![CDATA[Tarifa]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="fe25ddfb-9cc2-4637-a6bf-844d94acc4c6" style="Column header" x="182" y="10" width="39" height="14" forecolor="#000000"/>
|
<reportElement uuid="fe25ddfb-9cc2-4637-a6bf-844d94acc4c6" style="Column header" x="182" y="12" width="39" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Seguro]]></text>
|
<text><![CDATA[Seguro]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="260ab79c-f2fd-48da-b122-478eacd64e7b" style="Column header" x="260" y="10" width="35" height="14" forecolor="#000000"/>
|
<reportElement uuid="260ab79c-f2fd-48da-b122-478eacd64e7b" style="Column header" x="260" y="12" width="35" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Bagagem]]></text>
|
<text><![CDATA[Bagagem]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="a5d9689b-2dae-47dc-a1fc-1322b7d3be62" style="Column header" x="330" y="10" width="35" height="14" forecolor="#000000"/>
|
<reportElement uuid="a5d9689b-2dae-47dc-a1fc-1322b7d3be62" style="Column header" x="330" y="12" width="35" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Devolução]]></text>
|
<text><![CDATA[Devolução]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="2e7b778f-576e-48f8-b604-7ce99bf0ca02" style="Column header" x="369" y="10" width="35" height="14" forecolor="#000000"/>
|
<reportElement uuid="2e7b778f-576e-48f8-b604-7ce99bf0ca02" style="Column header" x="369" y="12" width="35" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Tarifa]]></text>
|
<text><![CDATA[Tarifa]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="67366340-f568-4e19-8cb5-8158579ce1d3" style="Column header" x="404" y="10" width="35" height="14" forecolor="#000000"/>
|
<reportElement uuid="67366340-f568-4e19-8cb5-8158579ce1d3" style="Column header" x="404" y="12" width="35" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Seguro]]></text>
|
<text><![CDATA[Seguro]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="13a209ef-dbaa-4aae-b44a-f48605728428" style="Column header" x="509" y="10" width="37" height="14" forecolor="#000000"/>
|
<reportElement uuid="13a209ef-dbaa-4aae-b44a-f48605728428" style="Column header" x="509" y="12" width="37" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Devolução]]></text>
|
<text><![CDATA[Devolução]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="4dfb088e-37f6-4006-808f-2eeb3109e285" style="Column header" x="546" y="10" width="57" height="14" forecolor="#000000"/>
|
<reportElement uuid="4dfb088e-37f6-4006-808f-2eeb3109e285" style="Column header" x="546" y="12" width="57" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Rec. Total]]></text>
|
<text><![CDATA[Rec. Total]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="33fdb9ef-4cdf-4e3e-8e61-1b231a3fdb8d" style="Column header" x="603" y="10" width="33" height="14" forecolor="#000000"/>
|
<reportElement uuid="33fdb9ef-4cdf-4e3e-8e61-1b231a3fdb8d" style="Column header" x="603" y="12" width="33" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Impostos]]></text>
|
<text><![CDATA[Impostos]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="668b5067-56e3-48c8-a3b6-2e705074eb18" style="Column header" x="636" y="10" width="52" height="14" forecolor="#000000"/>
|
<reportElement uuid="668b5067-56e3-48c8-a3b6-2e705074eb18" style="Column header" x="636" y="12" width="52" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Rec. Liquida]]></text>
|
<text><![CDATA[Rec. Liquida]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="a80716f2-4ff4-4d5f-b86e-df35f9200f56" style="Column header" x="688" y="10" width="31" height="14" forecolor="#000000"/>
|
<reportElement uuid="a80716f2-4ff4-4d5f-b86e-df35f9200f56" style="Column header" x="688" y="12" width="31" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Comissão]]></text>
|
<text><![CDATA[Comissão]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="d05ba943-6f1e-47d6-b4a7-acebc2e7d259" style="Column header" x="719" y="10" width="25" height="14" forecolor="#000000"/>
|
<reportElement uuid="d05ba943-6f1e-47d6-b4a7-acebc2e7d259" style="Column header" x="719" y="12" width="25" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Adiant.]]></text>
|
<text><![CDATA[Adiant.]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="812bc4ba-ef33-4a8f-8a14-0a3061752682" style="Column header" x="744" y="10" width="20" height="14" forecolor="#000000"/>
|
<reportElement uuid="812bc4ba-ef33-4a8f-8a14-0a3061752682" style="Column header" x="744" y="12" width="20" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Dif.]]></text>
|
<text><![CDATA[Dif.]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="904fc08d-24fe-4f4c-b152-dfa79e60bcb0" style="Column header" x="764" y="10" width="21" height="14" forecolor="#000000"/>
|
<reportElement uuid="904fc08d-24fe-4f4c-b152-dfa79e60bcb0" style="Column header" x="764" y="12" width="21" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Tipo]]></text>
|
<text><![CDATA[Tipo]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="ebb42cb2-3e61-4b7e-8c24-bb9fa0b6b4a0" style="Column header" x="785" y="10" width="36" height="14" forecolor="#000000"/>
|
<reportElement uuid="ebb42cb2-3e61-4b7e-8c24-bb9fa0b6b4a0" style="Column header" x="785" y="12" width="36" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Center">
|
<textElement textAlignment="Center">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Qtd. Canc.]]></text>
|
<text><![CDATA[Qtd. Canc.]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="6c5a8e4b-6426-49c1-b6cd-25034cbb73c0" style="Column header" mode="Transparent" x="56" y="10" width="38" height="14" forecolor="#000000" backcolor="#FFFFFF"/>
|
<reportElement uuid="6c5a8e4b-6426-49c1-b6cd-25034cbb73c0" style="Column header" mode="Transparent" x="56" y="12" width="38" height="14" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement verticalAlignment="Top" rotation="None" markup="none">
|
<textElement verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -698,24 +706,21 @@
|
||||||
</graphicElement>
|
</graphicElement>
|
||||||
</line>
|
</line>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="83e75496-d9dc-4254-b523-e1d993400086" style="Column header" x="439" y="10" width="35" height="14" forecolor="#000000"/>
|
<reportElement uuid="83e75496-d9dc-4254-b523-e1d993400086" style="Column header" x="439" y="12" width="35" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Pedagio]]></text>
|
<text><![CDATA[Pedagio]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="29a2782d-6d15-4c55-8747-de54f2bdc2da" style="Column header" x="221" y="10" width="39" height="14" forecolor="#000000"/>
|
<reportElement uuid="29a2782d-6d15-4c55-8747-de54f2bdc2da" style="Column header" x="221" y="12" width="39" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Pedagio]]></text>
|
<text><![CDATA[Pedagio]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<line>
|
<line>
|
||||||
<reportElement uuid="7b9be18f-0a9d-4305-a952-fda5221c66e1" x="124" y="7" width="241" height="1"/>
|
<reportElement uuid="7b9be18f-0a9d-4305-a952-fda5221c66e1" x="0" y="9" width="821" height="1"/>
|
||||||
</line>
|
|
||||||
<line>
|
|
||||||
<reportElement uuid="4bf8efb3-ec05-493c-8f2f-6ab6d779c807" x="369" y="7" width="176" height="1"/>
|
|
||||||
</line>
|
</line>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="405ec457-71ee-49f3-860a-bce717c7e196" x="209" y="0" width="44" height="9"/>
|
<reportElement uuid="405ec457-71ee-49f3-860a-bce717c7e196" x="209" y="0" width="44" height="9"/>
|
||||||
|
@ -732,14 +737,14 @@
|
||||||
<text><![CDATA[Pré-venda GAP]]></text>
|
<text><![CDATA[Pré-venda GAP]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="03836a53-0392-4d69-8df1-8348177a8c5d" style="Column header" x="474" y="10" width="35" height="14" forecolor="#000000"/>
|
<reportElement uuid="03836a53-0392-4d69-8df1-8348177a8c5d" style="Column header" x="474" y="12" width="35" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Embarque]]></text>
|
<text><![CDATA[Embarque]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="eb09ede8-028e-440e-b3be-c0aae921bb67" style="Column header" x="295" y="10" width="35" height="14" forecolor="#000000"/>
|
<reportElement uuid="eb09ede8-028e-440e-b3be-c0aae921bb67" style="Column header" x="295" y="12" width="35" height="14" forecolor="#000000"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="6" isBold="false"/>
|
<font size="6" isBold="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
|
Loading…
Reference in New Issue