fixes bug#54018

AL-1232
qua:
dev:Aristides

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@114099 d1611594-4594-4d17-8e1d-87c2c4800839
master
gleison.cruz 2022-09-08 19:18:11 +00:00
parent ba87c9c904
commit 32722bc377
6 changed files with 445 additions and 286 deletions

View File

@ -66,8 +66,11 @@ public class RelatorioAgenciaFechamentoNovo extends Relatorio {
Integer qtdSeguro = NumberUtils.INTEGER_ZERO; Integer qtdSeguro = NumberUtils.INTEGER_ZERO;
BigDecimal valorExcesso = BigDecimal.ZERO; BigDecimal valorExcesso = BigDecimal.ZERO;
BigDecimal valorSeguro = BigDecimal.ZERO; BigDecimal valorSeguro = BigDecimal.ZERO;
BigDecimal difMaior = BigDecimal.ZERO;
BigDecimal total = BigDecimal.ZERO;
RelatorioAgenciaFechamentoBean agenciaFechamento = new RelatorioAgenciaFechamentoBean(); RelatorioAgenciaFechamentoBean agenciaFechamento = new RelatorioAgenciaFechamentoBean();
agenciaFechamento.setEmpresa(empresaNome); agenciaFechamento.setEmpresa(empresaNome);
@ -101,14 +104,34 @@ public class RelatorioAgenciaFechamentoNovo extends Relatorio {
qtdSeguro += rset2.getInt("qtdSeguro"); qtdSeguro += rset2.getInt("qtdSeguro");
qtdExcesso = rset2.getInt("qtdExcesso"); qtdExcesso = rset2.getInt("qtdExcesso");
valorSeguro = valorSeguro.add(rset2.getBigDecimal("valorSeguro")); valorSeguro = valorSeguro.add(rset2.getBigDecimal("valorSeguro"));
valorExcesso = valorExcesso.add(rset2.getBigDecimal("valorExcesso")); valorExcesso = valorExcesso.add(rset2.getBigDecimal("valorExcesso"));
difMaior = valorExcesso.add(rset2.getBigDecimal("difMaior"));
} }
agenciaFechamento.setQtdExcesso(qtdExcesso); agenciaFechamento.setQtdExcesso(qtdExcesso);
agenciaFechamento.setQtdSeguro(qtdSeguro); agenciaFechamento.setQtdSeguro(qtdSeguro);
agenciaFechamento.setValorExcesso(valorExcesso); agenciaFechamento.setValorExcesso(valorExcesso);
agenciaFechamento.setValorSeguro(valorSeguro); agenciaFechamento.setValorSeguro(valorSeguro);
agenciaFechamento.setDifMaior(difMaior);
//total.add(rset1.getBigDecimal("valorBilhete"));
//total.add(rset1.getBigDecimal("valorVch"));
//total.add(rset1.getBigDecimal("valorInternet"));
total = rset1.getBigDecimal("total");
total.add(difMaior);
//total.subtract(rset1.getBigDecimal("valorEstornado"));
//total.subtract(rset1.getBigDecimal("valorEstornado"));
//total.subtract(rset1.getBigDecimal("valorOCD"));
agenciaFechamento.setTotal(total);
agenciaFechamento.setValorOCD(rset1.getBigDecimal("valorOCD"));
lsDadosRelatorio.add(agenciaFechamento); lsDadosRelatorio.add(agenciaFechamento);
//Estava dando um erro de "máximo de cursores abertos excedido" //Estava dando um erro de "máximo de cursores abertos excedido"
@ -139,6 +162,29 @@ public class RelatorioAgenciaFechamentoNovo extends Relatorio {
private String carregarDadosTotaisdeVenda(String puntoVenta, String empresa) { private String carregarDadosTotaisdeVenda(String puntoVenta, String empresa) {
StringBuilder sql = new StringBuilder(); StringBuilder sql = new StringBuilder();
/*
* sql.append("WITH BASE_DIF AS ("); sql.append(" SELECT (C.PRECIOPAGADO - CF.IMPORTE) AS DIF_MAIOR,"); sql.append(" C.CAJA_ID"); sql.append(" FROM CAJA C INNER JOIN CAJA_FORMAPAGO CF ON (C.CAJA_ID = CF.CAJA_ID)"); sql.append(" INNER JOIN FORMA_PAGO FG ON (CF.FORMAPAGO_ID = FG.FORMAPAGO_ID)"); sql.append(" INNER JOIN BOLETO B ON (C.TRANSACAOORIGINAL_ID = B.BOLETO_ID)");
* sql.append(" WHERE FG.FORMAPAGO_ID <> 10 AND C.PRECIOPAGADO > IMPORTE"); sql.append(" )");
*/
sql.append(" SELECT CODIGO,");
sql.append(" DESCRICAO,");
sql.append(" VALORBILHETE,");
sql.append(" QTDBILHETE,");
sql.append(" VALORSEGURO,");
sql.append(" QTDSEGURO,");
sql.append(" VALORVCH,");
sql.append(" QTDVCH,");
sql.append(" VALORINTERNET,");
sql.append(" QTDINTERNET,");
sql.append(" VALORCANCELADO,");
sql.append(" QTDCANCELADO,");
sql.append(" VALORESTORNADO,");
sql.append(" QTDESTORNADO,");
sql.append(" VALOROCD,");
//sql.append(" DIFMAIOR,");
sql.append(" ((VALORBILHETE+VALORVCH+VALORINTERNET)-VALORCANCELADO-VALORESTORNADO-VALOROCD) AS TOTAL");
sql.append(" FROM (");
sql.append(" SELECT pv.PUNTOVENTA_ID AS codigo, "); sql.append(" SELECT pv.PUNTOVENTA_ID AS codigo, ");
sql.append(" pv.nombpuntoventa AS descricao, "); sql.append(" pv.nombpuntoventa AS descricao, ");
sql.append(" COALESCE(SUM( "); sql.append(" COALESCE(SUM( ");
@ -226,13 +272,18 @@ public class RelatorioAgenciaFechamentoNovo extends Relatorio {
sql.append(" AND c.MOTIVOCANCELACION_ID <> 31 "); sql.append(" AND c.MOTIVOCANCELACION_ID <> 31 ");
sql.append(" THEN 1 "); sql.append(" THEN 1 ");
sql.append(" ELSE NULL "); sql.append(" ELSE NULL ");
sql.append(" END),0) AS qtdEstornado "); sql.append(" END),0) AS qtdEstornado, ");
sql.append(" "); sql.append(" COALESCE(SUM(O.VALOR_PAGAR),0) AS VALOROCD ");
//sql.append(" COALESCE(SUM(BD.DIF_MAIOR),0) AS DIFMAIOR");
sql.append(" FROM CAJA c "); sql.append(" FROM CAJA c ");
sql.append(" INNER JOIN PUNTO_VENTA pv "); sql.append(" INNER JOIN PUNTO_VENTA pv ");
sql.append(" ON c.PUNTOVENTA_ID = pv.PUNTOVENTA_ID "); sql.append(" ON c.PUNTOVENTA_ID = pv.PUNTOVENTA_ID ");
sql.append(" INNER JOIN marca m "); sql.append(" INNER JOIN marca m ");
sql.append(" ON m.marca_id = c.marca_id "); sql.append(" ON m.marca_id = c.marca_id ");
sql.append(" LEFT JOIN OCD O ");
sql.append(" ON (C.TRANSACAOORIGINAL_ID = O.BOLETO_ID AND O.INDPAGO = 1)");
/*sql.append(" LEFT JOIN BASE_DIF BD ");
sql.append(" ON (BD.CAJA_ID = C.CAJA_ID)");*/
sql.append(" WHERE c.TURNO_ID IS NOT NULL "); sql.append(" WHERE c.TURNO_ID IS NOT NULL ");
sql.append(" AND c.FECCORTE BETWEEN :de AND :ate "); sql.append(" AND c.FECCORTE BETWEEN :de AND :ate ");
if (puntoVenta != null && !puntoVenta.equals("-1")) { if (puntoVenta != null && !puntoVenta.equals("-1")) {
@ -248,6 +299,7 @@ public class RelatorioAgenciaFechamentoNovo extends Relatorio {
sql.append(" AND NVL(C.MONEDA_ID, 1) = :MOEDA_ID "); sql.append(" AND NVL(C.MONEDA_ID, 1) = :MOEDA_ID ");
sql.append(" GROUP BY pv.PUNTOVENTA_ID, pv.nombpuntoventa "); sql.append(" GROUP BY pv.PUNTOVENTA_ID, pv.nombpuntoventa ");
sql.append(" ORDER BY pv.nombpuntoventa "); sql.append(" ORDER BY pv.nombpuntoventa ");
sql.append(")");
return sql.toString(); return sql.toString();
@ -257,8 +309,9 @@ public class RelatorioAgenciaFechamentoNovo extends Relatorio {
StringBuilder sql = new StringBuilder(); StringBuilder sql = new StringBuilder();
sql.append(" SELECT "); sql.append(" SELECT ");
sql.append(" COALESCE(SUM(CASE WHEN tee.CVETIPOEVENTO = 'DIF_MAIOR' THEN cd.PRECIO ELSE NULL END),0) AS difmaior, ");
sql.append(" COALESCE(SUM(CASE WHEN tee.CVETIPOEVENTO = 'EXCESSO_BAGAGEM' THEN cd.PRECIO ELSE NULL END),0) AS valorExcesso, "); sql.append(" COALESCE(SUM(CASE WHEN tee.CVETIPOEVENTO = 'EXCESSO_BAGAGEM' THEN cd.PRECIO ELSE NULL END),0) AS valorExcesso, ");
sql.append(" COALESCE(COUNT(CASE WHEN tee.CVETIPOEVENTO = 'EXCESSO_BAGAGEM' THEN 1 ELSE NULL END),0) as qtdExcesso, "); sql.append(" COALESCE(COUNT(CASE WHEN tee.CVETIPOEVENTO = 'EXCESSO_BAGAGEM' THEN 1 ELSE NULL END),0) as qtdExcesso, ");
sql.append(" COALESCE(SUM(CASE WHEN tee.CVETIPOEVENTO = 'SEGURO_OPCIONAL' THEN cd.PRECIO ELSE NULL END),0) AS valorSeguro, "); sql.append(" COALESCE(SUM(CASE WHEN tee.CVETIPOEVENTO = 'SEGURO_OPCIONAL' THEN cd.PRECIO ELSE NULL END),0) AS valorSeguro, ");
sql.append(" COALESCE(COUNT(CASE WHEN tee.CVETIPOEVENTO = 'SEGURO_OPCIONAL' THEN 1 ELSE NULL END),0) as qtdSeguro "); sql.append(" COALESCE(COUNT(CASE WHEN tee.CVETIPOEVENTO = 'SEGURO_OPCIONAL' THEN 1 ELSE NULL END),0) as qtdSeguro ");
sql.append(" FROM CAJA_DIVERSOS cd "); sql.append(" FROM CAJA_DIVERSOS cd ");
@ -269,7 +322,7 @@ public class RelatorioAgenciaFechamentoNovo extends Relatorio {
sql.append(" WHERE cd.MOTIVOCANCELACION_ID IS NULL "); sql.append(" WHERE cd.MOTIVOCANCELACION_ID IS NULL ");
sql.append(" AND ee.activo = 1 "); sql.append(" AND ee.activo = 1 ");
sql.append(" AND cd.TURNO_ID IS NOT NULL "); sql.append(" AND cd.TURNO_ID IS NOT NULL ");
sql.append(" AND tee.CVETIPOEVENTO in ('EXCESSO_BAGAGEM', 'SEGURO_OPCIONAL' ) "); sql.append(" AND tee.CVETIPOEVENTO in ('EXCESSO_BAGAGEM', 'SEGURO_OPCIONAL', 'DIF_MAIOR') ");
sql.append(" AND cd.FECCORTE BETWEEN :de AND :ate "); sql.append(" AND cd.FECCORTE BETWEEN :de AND :ate ");
if (puntoVenta != null && !puntoVenta.equals("-1")) { if (puntoVenta != null && !puntoVenta.equals("-1")) {
sql.append(" AND cd.PUNTOVENTA_ID = ").append(puntoVenta); sql.append(" AND cd.PUNTOVENTA_ID = ").append(puntoVenta);

View File

@ -1,41 +1,43 @@
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) #Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/)
#geral #geral
detail.agencia = AG\u00CANCIA detail.agencia=AG\u00CANCIA
detail.qtd.bilhete = Qtd. Bilhete Entrada detail.qtdbilhete=Cant. Boleto de entrada
detail.qtd.cancelados = Qtd. Cancelados detail.qtdcancelados=Cant. Cancelados
detail.qtd.estornados = Qtd. Estornados detail.qtdestornados=Cant. Inveridos
detail.qtd.excesso = Qtd. Excesso Entrada detail.qtdexcesso=Cant. Exceso Entrada
detail.qtd.internet = Qtd. Internet Entrada detail.qtdinternet=Cant. Entrada aInternet
detail.qtd.itex = Qtd. Itex Entrada detail.qtditex=Cant. Entrada Itex
detail.qtd.seguro = Qtd. Seguro Entrada detail.qtd.eguro=Cant. Entrada de Seguro
detail.qtd.vch = Qtd. VCH Entrada detail.qtdvch=Cant. Entrada VCH
detail.quantidade = QUANTIDADE detail.quantidade=LA CANTIDAD
detail.totalGeral = TOTAL GERAL detail.valor=VALOR
detail.valor = VALOR detail.valorbilhete=Valor del boleto de entrada
detail.valor.bilhete = Valor Bilhete Entrada detail.valorcancelados=Montos cancelados
detail.valor.cancelados = Valor Cancelados detail.valorestornados=Importe invertido
detail.valor.estornados = Valor Estornados detail.valorexcesso=Entrada de exceso de valor
detail.valor.excesso = Valor Excesso Entrada detail.valorinternet=Entrada de valor de Internet
detail.valor.internet = Valor Internet Entrada detail.valoritex=Entrada de elemento de valor
detail.valor.itex = Valor Itex Entrada detail.valorseguro=Entrada de valor de seguro
detail.valor.seguro = Valor Seguro Entrada detail.valorvch=Valor de VCH de entrada
detail.valor.vch = Valor VCH Entrada detail.valorOCD=Dev. OCD
detail.difMaior=Dif. Maior
detail.total=Total
header.anulado = Anulados header.anulado=Anulados
header.codigo = C\u00F3digo header.codigo=C\u00F3digo
#Labels header #Labels header
header.data = Data : header.dat=Data :
header.descricao = Descri\u00E7\u00E3o header.descricao=Descri\u00E7\u00E3o
header.despesa = Despesa header.despesa=Gastos
header.devolvido = Devolvidos header.devolvido=Devuelto
header.digitado = Digitado header.digitado=Mecanografiado
header.empresa = Empresa : header.empresa=Empresa :
header.receita = Receita header.receita=Ingresos
header.total = Total header.total=Total
header.vendido = Vendido header.vendido=Vendido
linhas = Linhas linhas=Líneas
msg.a = a msg.a=a
msg.noData = No se pudo obtener datos con los par\u00E1metros reportados. msg.noData=No se pudo obtener datos con los par\u00E1metros reportados.

View File

@ -1,41 +1,43 @@
#Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/) #Generated by ResourceBundle Editor (http://essiembre.github.io/eclipse-rbe/)
#geral #geral
detail.agencia = Ag\u00EAncia detail.agencia=AG\u00CANCIA
detail.qtd.bilhete = Qtd. Bilhete Entrada detail.qtdbilhete=Qtd. Bilhete Entrada
detail.qtd.cancelados = Qtd. Cancelados detail.qtdcancelados=Qtd. Cancelados
detail.qtd.estornados = Qtd. Estornados detail.qtdestornados=Qtd. Estornados
detail.qtd.excesso = Qtd. Excesso Entrada detail.qtdexcesso=Qtd. Excesso Entrada
detail.qtd.internet = Qtd. Internet Entrada detail.qtdinternet=Qtd. Internet Entrada
detail.qtd.itex = Qtd. Itex Entrada detail.qtditex=Qtd. Itex Entrada
detail.qtd.seguro = Qtd. Seguro Entrada detail.qtdseguro=Qtd. Seguro Entrada
detail.qtd.vch = Qtd. VCH Entrada detail.qtdvch=Qtd. VCH Entrada
detail.quantidade = QUANTIDADE detail.quantidade=QUANTIDADE
detail.totalGeral = TOTAL GERAL detail.valor=VALOR
detail.valor = VALOR detail.valorbilhete=Valor Bilhete Entrada
detail.valor.bilhete = Valor Bilhete Entrada detail.valorcancelados=Valor Cancelados
detail.valor.cancelados = Valor Cancelados detail.valorestornados=Valor Estornados
detail.valor.estornados = Valor Estornados detail.valorexcesso=Valor Excesso Entrada
detail.valor.excesso = Valor Excesso Entrada detail.valorinternet=Valor Internet Entrada
detail.valor.internet = Valor Internet Entrada detail.valoritex=Valor Itex Entrada
detail.valor.itex = Valor Itex Entrada detail.valorseguro=Valor Seguro Entrada
detail.valor.seguro = Valor Seguro Entrada detail.valorvch=Valor VCH Entrada
detail.valor.vch = Valor VCH Entrada detail.valorOCD=Dev. OCD
detail.difMaior=Dif. Maior
detail.total=Total
header.anulado = Anulados header.anulado=Anulados
header.codigo = C\u00F3digo header.codigo=C\u00F3digo
#Labels header #Labels header
header.data = Data : header.data = Data :
header.descricao = Descri\u00E7\u00E3o header.descricao=Descri\u00E7\u00E3o
header.despesa = Despesa header.despesa=Despesa
header.devolvido = Devolvidos header.devolvido=Devolvidos
header.digitado = Digitado header.digitado=Digitado
header.empresa = Empresa : header.empresa=Empresa :
header.receita = Receita header.receita=Receita
header.total = Total header.total=Total
header.vendido = Vendido header.vendido=Vendido
linhas = Linhas linhas=Linhas
msg.a = a msg.a=a
msg.noData = No se pudo obtener datos con los par\u00E1metros reportados. msg.noData=No se pudo obtener datos con los par\u00E1metros reportados.

View File

@ -32,6 +32,9 @@
<field name="qtdCancelado" class="java.lang.Integer"/> <field name="qtdCancelado" class="java.lang.Integer"/>
<field name="valorEstornado" class="java.math.BigDecimal"/> <field name="valorEstornado" class="java.math.BigDecimal"/>
<field name="qtdEstornado" class="java.lang.Integer"/> <field name="qtdEstornado" class="java.lang.Integer"/>
<field name="valorOCD" class="java.math.BigDecimal"/>
<field name="difMaior" class="java.math.BigDecimal"/>
<field name="total" class="java.math.BigDecimal"/>
<variable name="sum.qtdBilhete" class="java.lang.Integer" calculation="Sum"> <variable name="sum.qtdBilhete" class="java.lang.Integer" calculation="Sum">
<variableExpression><![CDATA[$F{qtdBilhete}]]></variableExpression> <variableExpression><![CDATA[$F{qtdBilhete}]]></variableExpression>
</variable> </variable>
@ -74,6 +77,15 @@
<variable name="sum.valorSeguro" class="java.math.BigDecimal" calculation="Sum"> <variable name="sum.valorSeguro" class="java.math.BigDecimal" calculation="Sum">
<variableExpression><![CDATA[$F{valorSeguro}]]></variableExpression> <variableExpression><![CDATA[$F{valorSeguro}]]></variableExpression>
</variable> </variable>
<variable name="sum.valorOCD" class="java.math.BigDecimal" calculation="Sum">
<variableExpression><![CDATA[$F{valorOCD}]]></variableExpression>
</variable>
<variable name="sum.difMaior" class="java.math.BigDecimal" calculation="Sum">
<variableExpression><![CDATA[$F{difMaior}]]></variableExpression>
</variable>
<variable name="sum.total" class="java.math.BigDecimal" calculation="Sum">
<variableExpression><![CDATA[$F{total}]]></variableExpression>
</variable>
<background> <background>
<band splitType="Stretch"/> <band splitType="Stretch"/>
</background> </background>
@ -141,336 +153,399 @@
</band> </band>
</pageHeader> </pageHeader>
<columnHeader> <columnHeader>
<band height="38" splitType="Stretch"> <band height="20" splitType="Stretch">
<line>
<reportElement uuid="ae94e51c-f84c-405c-a9c3-d8fd0c48f03a" mode="Transparent" x="0" y="37" width="857" height="1"/>
</line>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="2cbc8ddc-38e5-4914-8189-5761ddeb2ce9" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" x="0" y="0" width="99" height="36" isPrintWhenDetailOverflows="true"/> <reportElement uuid="7965e761-2e24-4f17-84eb-9431c98ce72c" positionType="FixRelativeToBottom" x="85" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none"> <textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/> <font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valorbilhete}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ab6b6770-67e8-4224-9304-8de30d3c1384" positionType="FixRelativeToBottom" mode="Transparent" x="220" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtdexcesso}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="e3f4df4e-24a9-45b3-8ac3-f8b66d46a15f" positionType="FixRelativeToBottom" mode="Transparent" x="265" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valorseguro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="79775d53-3de4-4c0c-8ec7-3be13738dc14" positionType="FixRelativeToBottom" mode="Transparent" x="310" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtdseguro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="746627ad-15b0-4435-93ce-6d370b75e594" positionType="FixRelativeToBottom" mode="Transparent" x="355" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valorvch}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3647e647-81bb-4098-afce-52d942daa341" positionType="FixRelativeToBottom" mode="Transparent" x="445" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valorinternet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="328a6678-fc02-4845-98e6-a3d3bfaa2c73" positionType="FixRelativeToBottom" mode="Transparent" x="490" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtdinternet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="eb34f98d-93fe-4dc9-8852-31c12270ae3d" positionType="FixRelativeToBottom" mode="Transparent" x="626" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valorestornados}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="a7c28fc6-e4fc-431b-b5ba-b001a36dcb54" positionType="FixRelativeToBottom" mode="Transparent" x="671" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtdestornados}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="bbaa5f53-76e0-491e-9145-e522122709e5" positionType="FixRelativeToBottom" x="130" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtdbilhete}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="2b25ca5a-2c25-4c7d-87d1-5bfd205177a9" positionType="FixRelativeToBottom" mode="Transparent" x="175" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valorexcesso}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="0844b500-feab-477d-ade1-2d943491de32" positionType="FixRelativeToBottom" mode="Transparent" x="400" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtdvch}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="2cca17d2-47ba-4dba-a8c3-96e4f6d7deff" positionType="FixRelativeToBottom" mode="Transparent" x="535" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valorcancelados}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="959d61e9-4311-4fab-8ead-da9c65f00be3" positionType="FixRelativeToBottom" mode="Transparent" x="580" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtdcancelados}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="2cbc8ddc-38e5-4914-8189-5761ddeb2ce9" positionType="FixRelativeToBottom" x="0" y="0" width="85" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="6" isBold="true"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$R{detail.agencia}]]></textFieldExpression> <textFieldExpression><![CDATA[$R{detail.agencia}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="7965e761-2e24-4f17-84eb-9431c98ce72c" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" x="99" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/> <reportElement uuid="fdd01abd-5110-406e-bf87-7e7f693d0f86" positionType="FixRelativeToBottom" mode="Transparent" x="716" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none"> <textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/> <font size="6" isBold="true"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$R{detail.valor.bilhete}]]></textFieldExpression> <textFieldExpression><![CDATA[$R{detail.valorOCD}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="bbaa5f53-76e0-491e-9145-e522122709e5" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" x="152" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/> <reportElement uuid="cf9e9207-6011-4624-85b1-433667905c47" positionType="FixRelativeToBottom" mode="Transparent" x="806" y="0" width="52" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none"> <textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/> <font size="6" isBold="true"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$R{detail.qtd.bilhete}]]></textFieldExpression> <textFieldExpression><![CDATA[$R{detail.total}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="2b25ca5a-2c25-4c7d-87d1-5bfd205177a9" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="205" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/> <reportElement uuid="79f3f230-5cd0-45c5-b86d-f25d2527f492" positionType="FixRelativeToBottom" mode="Transparent" x="761" y="0" width="45" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none"> <textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/> <font size="6" isBold="true"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$R{detail.valor.excesso}]]></textFieldExpression> <textFieldExpression><![CDATA[$R{detail.difMaior}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="ab6b6770-67e8-4224-9304-8de30d3c1384" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="258" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtd.excesso}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="e3f4df4e-24a9-45b3-8ac3-f8b66d46a15f" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="311" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valor.seguro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="79775d53-3de4-4c0c-8ec7-3be13738dc14" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="364" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtd.seguro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="746627ad-15b0-4435-93ce-6d370b75e594" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="417" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valor.vch}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="0844b500-feab-477d-ade1-2d943491de32" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="470" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtd.vch}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3647e647-81bb-4098-afce-52d942daa341" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="523" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valor.internet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="328a6678-fc02-4845-98e6-a3d3bfaa2c73" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="576" y="0" width="53" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtd.internet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="959d61e9-4311-4fab-8ead-da9c65f00be3" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="686" y="0" width="57" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtd.cancelados}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="2cca17d2-47ba-4dba-a8c3-96e4f6d7deff" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="629" y="0" width="57" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valor.cancelados}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="eb34f98d-93fe-4dc9-8852-31c12270ae3d" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="743" y="0" width="57" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.valor.estornados}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="a7c28fc6-e4fc-431b-b5ba-b001a36dcb54" positionType="FixRelativeToBottom" stretchType="RelativeToTallestObject" mode="Transparent" x="800" y="0" width="57" height="36" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Bottom" markup="none">
<font size="11" isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[$R{detail.qtd.estornados}]]></textFieldExpression>
</textField> </textField>
</band> </band>
</columnHeader> </columnHeader>
<detail> <detail>
<band height="17" splitType="Stretch"> <band height="15" splitType="Stretch">
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="784343f8-f7aa-4997-82e7-312878bd9a27" stretchType="RelativeToTallestObject" mode="Transparent" x="470" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="617806c3-5059-4e8b-9cb3-5b2bd10e4705" stretchType="RelativeToTallestObject" mode="Transparent" x="581" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdVch}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ad46494b-0240-46d1-a775-f91f0035d7f8" stretchType="RelativeToTallestObject" x="99" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorBilhete}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0ed9578b-73d5-4f51-b21c-07d9419bbc08" stretchType="RelativeToTallestObject" mode="Transparent" x="311" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorSeguro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="617806c3-5059-4e8b-9cb3-5b2bd10e4705" stretchType="RelativeToTallestObject" mode="Transparent" x="686" y="0" width="57" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{qtdCancelado}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{qtdCancelado}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="1ed844e5-7aa4-49ee-8024-765e5ae49f74" stretchType="RelativeToTallestObject" x="152" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdBilhete}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="92017408-1781-4e17-90b7-5ff86457cf6d" stretchType="RelativeToTallestObject" mode="Transparent" x="364" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdSeguro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="b7842ed3-aa20-4fe9-996a-c8397aa66c40" stretchType="RelativeToTallestObject" mode="Transparent" x="523" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="6562d46b-27f9-4bef-a471-8eff982378c5" stretchType="RelativeToTallestObject" mode="Transparent" x="626" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorInternet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="36f5d507-0340-4c7e-b44b-5057c1e8bee6" stretchType="RelativeToTallestObject" mode="Transparent" x="417" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorVch}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="c24531bc-66b7-459b-9c60-07bea18e98d9" stretchType="RelativeToTallestObject" mode="Transparent" x="576" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdInternet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e2ad1400-e2c6-48b0-98c8-812d3c8f008d" stretchType="RelativeToTallestObject" mode="Transparent" x="629" y="0" width="57" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorCancelado}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="7f08e540-2cf9-4da3-b40a-fb7d5275751f" stretchType="RelativeToTallestObject" mode="Transparent" x="258" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdExcesso}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="16c5bcd4-ac1c-4c49-b065-5794fb9c2e32" stretchType="RelativeToTallestObject" mode="Transparent" x="205" y="0" width="53" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorExcesso}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6562d46b-27f9-4bef-a471-8eff982378c5" stretchType="RelativeToTallestObject" mode="Transparent" x="743" y="0" width="57" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{valorEstornado}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{valorEstornado}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="false"> <textField isStretchWithOverflow="true" isBlankWhenNull="false">
<reportElement uuid="16f536ed-9001-4b34-85f4-a01198390b7d" stretchType="RelativeToTallestObject" x="0" y="0" width="99" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="16f536ed-9001-4b34-85f4-a01198390b7d" stretchType="RelativeToTallestObject" x="0" y="0" width="85" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{descricao}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{descricao}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="33d170a8-cd4c-4148-85b7-48a078e68f7d" stretchType="RelativeToTallestObject" mode="Transparent" x="800" y="0" width="57" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="33d170a8-cd4c-4148-85b7-48a078e68f7d" stretchType="RelativeToTallestObject" mode="Transparent" x="671" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$F{qtdEstornado}]]></textFieldExpression> <textFieldExpression><![CDATA[$F{qtdEstornado}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="784343f8-f7aa-4997-82e7-312878bd9a27" stretchType="RelativeToTallestObject" mode="Transparent" x="400" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdVch}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="ad46494b-0240-46d1-a775-f91f0035d7f8" stretchType="RelativeToTallestObject" x="85" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorBilhete}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="0ed9578b-73d5-4f51-b21c-07d9419bbc08" stretchType="RelativeToTallestObject" mode="Transparent" x="265" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorSeguro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="1ed844e5-7aa4-49ee-8024-765e5ae49f74" stretchType="RelativeToTallestObject" x="130" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdBilhete}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="92017408-1781-4e17-90b7-5ff86457cf6d" stretchType="RelativeToTallestObject" mode="Transparent" x="310" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdSeguro}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="b7842ed3-aa20-4fe9-996a-c8397aa66c40" stretchType="RelativeToTallestObject" mode="Transparent" x="445" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorInternet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="36f5d507-0340-4c7e-b44b-5057c1e8bee6" stretchType="RelativeToTallestObject" mode="Transparent" x="355" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorVch}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="c24531bc-66b7-459b-9c60-07bea18e98d9" stretchType="RelativeToTallestObject" mode="Transparent" x="490" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdInternet}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e2ad1400-e2c6-48b0-98c8-812d3c8f008d" stretchType="RelativeToTallestObject" mode="Transparent" x="535" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorCancelado}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="7f08e540-2cf9-4da3-b40a-fb7d5275751f" stretchType="RelativeToTallestObject" mode="Transparent" x="220" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{qtdExcesso}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="16c5bcd4-ac1c-4c49-b065-5794fb9c2e32" stretchType="RelativeToTallestObject" mode="Transparent" x="175" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="6" isBold="false"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorExcesso}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="1aced1dd-e8d4-423f-91b9-d38720975e40" stretchType="RelativeToTallestObject" x="716" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{valorOCD}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="e261ef85-8d34-4708-85a5-8bed85b54785" stretchType="RelativeToTallestObject" x="761" y="0" width="45" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{difMaior}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="2171d4cc-9c99-41f1-afb1-56783f6acd83" stretchType="RelativeToTallestObject" x="806" y="0" width="52" height="14" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$F{total}]]></textFieldExpression>
</textField>
</band> </band>
</detail> </detail>
<lastPageFooter> <lastPageFooter>
<band height="18"> <band height="20">
<line> <line>
<reportElement uuid="1653e342-87ec-40f2-94ad-5d27b1020c3a" mode="Transparent" x="0" y="0" width="857" height="1"/> <reportElement uuid="1653e342-87ec-40f2-94ad-5d27b1020c3a" mode="Transparent" x="0" y="0" width="857" height="1"/>
</line> </line>
<textField isStretchWithOverflow="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f0f7fc52-26be-4c51-8c78-3c55375be4aa" x="0" y="1" width="99" height="17"/> <reportElement uuid="f0f7fc52-26be-4c51-8c78-3c55375be4aa" stretchType="RelativeToTallestObject" x="0" y="3" width="85" height="14"/>
<textElement textAlignment="Left" markup="none"> <textElement textAlignment="Right" markup="none">
<font size="10"/> <font size="6"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$R{detail.totalGeral}]]></textFieldExpression> <textFieldExpression><![CDATA[$R{detail.totalGeral}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="5c65a20a-c9d5-4a90-99bc-a388aeaf3b9a" stretchType="RelativeToTallestObject" x="99" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="5c65a20a-c9d5-4a90-99bc-a388aeaf3b9a" stretchType="RelativeToTallestObject" x="85" y="0" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.valorBilhete}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.valorBilhete}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="dfae2822-460b-4e81-be01-a176d7a2aac7" stretchType="RelativeToTallestObject" mode="Transparent" x="576" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="dfae2822-460b-4e81-be01-a176d7a2aac7" stretchType="RelativeToTallestObject" mode="Transparent" x="490" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.qtdInternet}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.qtdInternet}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c96675e1-9572-4ab1-9f83-6ec7a6ce6692" stretchType="RelativeToTallestObject" mode="Transparent" x="311" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="c96675e1-9572-4ab1-9f83-6ec7a6ce6692" stretchType="RelativeToTallestObject" mode="Transparent" x="265" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.valorSeguro}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.valorSeguro}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="31a240a5-8c29-4293-a2e3-844b2ca695ef" stretchType="RelativeToTallestObject" mode="Transparent" x="470" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="31a240a5-8c29-4293-a2e3-844b2ca695ef" stretchType="RelativeToTallestObject" mode="Transparent" x="400" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.qtdVch}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.qtdVch}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="91c51dac-2f23-40a3-beca-81d43577e200" stretchType="RelativeToTallestObject" mode="Transparent" x="743" y="1" width="57" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="91c51dac-2f23-40a3-beca-81d43577e200" stretchType="RelativeToTallestObject" mode="Transparent" x="626" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.valorEstornado}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.valorEstornado}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="6035409c-38a6-4809-8e25-df5d9fe77cf4" stretchType="RelativeToTallestObject" mode="Transparent" x="417" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="6035409c-38a6-4809-8e25-df5d9fe77cf4" stretchType="RelativeToTallestObject" mode="Transparent" x="355" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.valorVch}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.valorVch}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="a9096947-664a-4340-a0d9-93872e846918" stretchType="RelativeToTallestObject" mode="Transparent" x="523" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="a9096947-664a-4340-a0d9-93872e846918" stretchType="RelativeToTallestObject" mode="Transparent" x="445" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.valorInternet}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.valorInternet}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="1e646b2f-f00a-47aa-84f2-50f886028a22" stretchType="RelativeToTallestObject" mode="Transparent" x="364" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="1e646b2f-f00a-47aa-84f2-50f886028a22" stretchType="RelativeToTallestObject" mode="Transparent" x="310" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.qtdSeguro}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.qtdSeguro}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="3070f702-c0c4-41fc-8afc-79d25df8f645" stretchType="RelativeToTallestObject" mode="Transparent" x="686" y="1" width="57" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="3070f702-c0c4-41fc-8afc-79d25df8f645" stretchType="RelativeToTallestObject" mode="Transparent" x="581" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.qtdCancelado}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.qtdCancelado}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="c40286db-ba4d-46d5-a377-a3b7982affe5" stretchType="RelativeToTallestObject" mode="Transparent" x="205" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="c40286db-ba4d-46d5-a377-a3b7982affe5" stretchType="RelativeToTallestObject" mode="Transparent" x="175" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.valorExcesso}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.valorExcesso}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="b5f5917f-69e4-4408-8961-d9d50f151ede" stretchType="RelativeToTallestObject" mode="Transparent" x="629" y="1" width="57" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="b5f5917f-69e4-4408-8961-d9d50f151ede" stretchType="RelativeToTallestObject" mode="Transparent" x="536" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.valorCancelado}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.valorCancelado}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="6f4e820e-a46f-4354-9c67-7535cdf12881" stretchType="RelativeToTallestObject" mode="Transparent" x="258" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="6f4e820e-a46f-4354-9c67-7535cdf12881" stretchType="RelativeToTallestObject" mode="Transparent" x="220" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.qtdExcesso}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.qtdExcesso}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="c19ad692-5d21-4015-94b4-e67390847023" stretchType="RelativeToTallestObject" mode="Transparent" x="800" y="1" width="57" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="c19ad692-5d21-4015-94b4-e67390847023" stretchType="RelativeToTallestObject" mode="Transparent" x="671" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.qtdEstornado}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.qtdEstornado}]]></textFieldExpression>
</textField> </textField>
<textField isStretchWithOverflow="true" isBlankWhenNull="true"> <textField isStretchWithOverflow="true" isBlankWhenNull="true">
<reportElement uuid="903b955c-d69f-487a-9ebe-5cfe37b174e5" stretchType="RelativeToTallestObject" x="152" y="1" width="53" height="17" isPrintWhenDetailOverflows="true"/> <reportElement uuid="903b955c-d69f-487a-9ebe-5cfe37b174e5" stretchType="RelativeToTallestObject" x="130" y="2" width="45" height="16" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center" verticalAlignment="Top" markup="none"> <textElement textAlignment="Center" verticalAlignment="Top" markup="none">
<font size="11" isBold="false"/> <font size="6" isBold="false"/>
</textElement> </textElement>
<textFieldExpression><![CDATA[$V{sum.qtdBilhete}]]></textFieldExpression> <textFieldExpression><![CDATA[$V{sum.qtdBilhete}]]></textFieldExpression>
</textField> </textField>
<line>
<reportElement uuid="b7862f5f-e52b-46cf-8a43-ffdddc3d0c53" x="-2" y="1" width="857" height="1"/>
</line>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="f567159f-10d9-4408-823b-4edbb6ebe7d5" stretchType="RelativeToTallestObject" x="716" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$V{sum.valorOCD}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="7fab5128-1aa9-46ea-b06c-2dbf951f6a01" stretchType="RelativeToTallestObject" x="761" y="2" width="45" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$V{sum.difMaior}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="#,##0.00" isBlankWhenNull="true">
<reportElement uuid="3c5ebc8a-0792-4bf6-aadf-39842a09a8dd" stretchType="RelativeToTallestObject" x="806" y="2" width="52" height="17" isPrintWhenDetailOverflows="true"/>
<textElement textAlignment="Center">
<font size="6"/>
</textElement>
<textFieldExpression><![CDATA[$V{sum.total}]]></textFieldExpression>
</textField>
</band> </band>
</lastPageFooter> </lastPageFooter>
<noData> <noData>

View File

@ -21,6 +21,9 @@ public class RelatorioAgenciaFechamentoBean {
protected BigDecimal valorInternet; protected BigDecimal valorInternet;
protected BigDecimal valorCancelado; protected BigDecimal valorCancelado;
protected BigDecimal valorEstornado; protected BigDecimal valorEstornado;
protected BigDecimal valorOCD;
protected BigDecimal difMaior;
protected BigDecimal total;
public String getEmpresa() { public String getEmpresa() {
return empresa; return empresa;
@ -150,4 +153,28 @@ public class RelatorioAgenciaFechamentoBean {
this.valorEstornado = valorEstornado; this.valorEstornado = valorEstornado;
} }
public BigDecimal getValorOCD() {
return valorOCD;
}
public void setValorOCD(BigDecimal valorOCD) {
this.valorOCD = valorOCD;
}
public BigDecimal getDifMaior() {
return difMaior;
}
public void setDifMaior(BigDecimal difMaior) {
this.difMaior = difMaior;
}
public BigDecimal getTotal() {
return total;
}
public void setTotal(BigDecimal total) {
this.total = total;
}
} }