fixes bug#23074
qua: dev: Incluido o campo de seguro opcional no relatorio forma de pagamento por agência, conforme spec. Evidencia em anexa git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@108473 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
ee73f3f674
commit
1b0b3b8f23
|
@ -60,6 +60,7 @@ public class RelatorioFormaPagamentoAgencia extends RelatorioDemandas {
|
||||||
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END *(nvl(cfp.importe, 0) - nvl(c.importepedagio, 0) - nvl(c.importeseguro, 0) - nvl(c.importetaxaembarque, 0))) AS tarifa, ");
|
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END *(nvl(cfp.importe, 0) - nvl(c.importepedagio, 0) - nvl(c.importeseguro, 0) - nvl(c.importetaxaembarque, 0))) AS tarifa, ");
|
||||||
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(c.importepedagio, 0)) AS pedagio, ");
|
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(c.importepedagio, 0)) AS pedagio, ");
|
||||||
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(c.importeseguro, 0)) AS seguro, ");
|
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(c.importeseguro, 0)) AS seguro, ");
|
||||||
|
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(ee.impingreso, 0)) AS seguro_opcional, ");
|
||||||
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(c.importetaxaembarque, 0)) AS taxa, ");
|
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(c.importetaxaembarque, 0)) AS taxa, ");
|
||||||
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(cfp.importe, 0)) AS total, ");
|
sql.append(" SUM(CASE WHEN c.MOTIVOCANCELACION_ID IS NULL THEN 1 ELSE -1 END * nvl(cfp.importe, 0)) AS total, ");
|
||||||
sql.append(" COUNT(c.preciopagado) AS qtde ");
|
sql.append(" COUNT(c.preciopagado) AS qtde ");
|
||||||
|
@ -68,6 +69,7 @@ public class RelatorioFormaPagamentoAgencia extends RelatorioDemandas {
|
||||||
sql.append(" join forma_pago fp on cfp.formapago_id = fp.formapago_id ");
|
sql.append(" join forma_pago fp on cfp.formapago_id = fp.formapago_id ");
|
||||||
sql.append(" join punto_venta pv on pv.PUNTOVENTA_ID = c.PUNTOVENTA_ID ");
|
sql.append(" join punto_venta pv on pv.PUNTOVENTA_ID = c.PUNTOVENTA_ID ");
|
||||||
sql.append(" join marca m on m.MARCA_ID = c.MARCA_ID and m.activo = 1 ");
|
sql.append(" join marca m on m.MARCA_ID = c.MARCA_ID and m.activo = 1 ");
|
||||||
|
sql.append(" left join evento_extra ee on (ee.boleto_id = c.transacao_id and ee.activo = 1 ) ");
|
||||||
sql.append(where);
|
sql.append(where);
|
||||||
sql.append(" AND c.INDREIMPRESION = 0 ");
|
sql.append(" AND c.INDREIMPRESION = 0 ");
|
||||||
sql.append(" group by to_char(c.fechorventa, 'dd/MM/yyyy'), pv.NOMBPUNTOVENTA, fp.DESCPAGO ");
|
sql.append(" group by to_char(c.fechorventa, 'dd/MM/yyyy'), pv.NOMBPUNTOVENTA, fp.DESCPAGO ");
|
||||||
|
@ -86,6 +88,7 @@ public class RelatorioFormaPagamentoAgencia extends RelatorioDemandas {
|
||||||
dataResult.put("TARIFA", rset.getDouble("TARIFA"));
|
dataResult.put("TARIFA", rset.getDouble("TARIFA"));
|
||||||
dataResult.put("PEDAGIO", rset.getDouble("PEDAGIO"));
|
dataResult.put("PEDAGIO", rset.getDouble("PEDAGIO"));
|
||||||
dataResult.put("SEGURO", rset.getDouble("SEGURO"));
|
dataResult.put("SEGURO", rset.getDouble("SEGURO"));
|
||||||
|
dataResult.put("SEGURO_OPCIONAL", rset.getDouble("SEGURO_OPCIONAL"));
|
||||||
dataResult.put("TAXA", rset.getDouble("TAXA"));
|
dataResult.put("TAXA", rset.getDouble("TAXA"));
|
||||||
dataResult.put("TOTAL", rset.getDouble("TOTAL"));
|
dataResult.put("TOTAL", rset.getDouble("TOTAL"));
|
||||||
dataResult.put("QTDE", rset.getInt("QTDE"));
|
dataResult.put("QTDE", rset.getInt("QTDE"));
|
||||||
|
|
|
@ -9,6 +9,7 @@ FORMA_PAG = FORMA DE PAG.
|
||||||
VALOR = TARIFA
|
VALOR = TARIFA
|
||||||
PEDAGIO = PEDÁGIO
|
PEDAGIO = PEDÁGIO
|
||||||
SEGURO = SEGURO
|
SEGURO = SEGURO
|
||||||
|
SEGURO_OPCIONAL = SEGURO OPCIONAL
|
||||||
TAXAS = TAXAS
|
TAXAS = TAXAS
|
||||||
TOTAL = TOTAL
|
TOTAL = TOTAL
|
||||||
QTDE = QTDE
|
QTDE = QTDE
|
||||||
|
|
|
@ -9,6 +9,7 @@ FORMA_PAG = FORMA DE PAG.
|
||||||
VALOR = TARIFA
|
VALOR = TARIFA
|
||||||
PEDAGIO = PEDÁGIO
|
PEDAGIO = PEDÁGIO
|
||||||
SEGURO = SEGURO
|
SEGURO = SEGURO
|
||||||
|
SEGURO_OPCIONAL = SEGURO OPCIONAL
|
||||||
TAXAS = TAXAS
|
TAXAS = TAXAS
|
||||||
TOTAL = TOTAL
|
TOTAL = TOTAL
|
||||||
QTDE = QTDE
|
QTDE = QTDE
|
||||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
<?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="relatorioFormaPagamentoAgencia" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" isFloatColumnFooter="true" uuid="832cc8a2-6330-4063-9b36-f96514ae8283">
|
<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="relatorioFormaPagamentoAgencia" pageWidth="842" pageHeight="595" orientation="Landscape" whenNoDataType="NoDataSection" columnWidth="802" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" isFloatColumnFooter="true" uuid="832cc8a2-6330-4063-9b36-f96514ae8283">
|
||||||
<property name="ireport.zoom" value="1.7715610000000088"/>
|
<property name="ireport.zoom" value="2.143588810000011"/>
|
||||||
<property name="ireport.x" value="321"/>
|
<property name="ireport.x" value="0"/>
|
||||||
<property name="ireport.y" value="0"/>
|
<property name="ireport.y" value="0"/>
|
||||||
<parameter name="DATA_INICIAL" class="java.util.Date"/>
|
<parameter name="DATA_INICIAL" class="java.util.Date"/>
|
||||||
<parameter name="DATA_FINAL" class="java.util.Date"/>
|
<parameter name="DATA_FINAL" class="java.util.Date"/>
|
||||||
|
@ -19,6 +19,7 @@
|
||||||
<field name="TAXA" class="java.lang.Double"/>
|
<field name="TAXA" class="java.lang.Double"/>
|
||||||
<field name="TOTAL" class="java.lang.Double"/>
|
<field name="TOTAL" class="java.lang.Double"/>
|
||||||
<field name="QTDE" class="java.lang.Integer"/>
|
<field name="QTDE" class="java.lang.Integer"/>
|
||||||
|
<field name="SEGURO_OPCIONAL" class="java.lang.Double"/>
|
||||||
<variable name="PEDAGIO" class="java.lang.Double" calculation="Sum">
|
<variable name="PEDAGIO" class="java.lang.Double" calculation="Sum">
|
||||||
<variableExpression><![CDATA[$F{PEDAGIO}]]></variableExpression>
|
<variableExpression><![CDATA[$F{PEDAGIO}]]></variableExpression>
|
||||||
</variable>
|
</variable>
|
||||||
|
@ -37,6 +38,9 @@
|
||||||
<variable name="TARIFA" class="java.lang.Double" calculation="Sum">
|
<variable name="TARIFA" class="java.lang.Double" calculation="Sum">
|
||||||
<variableExpression><![CDATA[$F{TARIFA}]]></variableExpression>
|
<variableExpression><![CDATA[$F{TARIFA}]]></variableExpression>
|
||||||
</variable>
|
</variable>
|
||||||
|
<variable name="SEGURO_OPCIONAL" class="java.lang.Double" calculation="Sum">
|
||||||
|
<variableExpression><![CDATA[$F{SEGURO_OPCIONAL}]]></variableExpression>
|
||||||
|
</variable>
|
||||||
<background>
|
<background>
|
||||||
<band splitType="Stretch"/>
|
<band splitType="Stretch"/>
|
||||||
</background>
|
</background>
|
||||||
|
@ -57,7 +61,7 @@
|
||||||
<textFieldExpression><![CDATA[$R{TITULO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{TITULO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="c45a1ecd-8b5e-4bd7-9139-56e0844cea7e" mode="Opaque" x="144" y="20" width="10" height="20" backcolor="#CCCCCC"/>
|
<reportElement uuid="c45a1ecd-8b5e-4bd7-9139-56e0844cea7e" mode="Opaque" x="144" y="20" width="54" height="20" backcolor="#CCCCCC"/>
|
||||||
<textElement>
|
<textElement>
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
@ -69,7 +73,7 @@
|
||||||
<textFieldExpression><![CDATA[$P{DATA_INICIAL}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$P{DATA_INICIAL}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="dd/MM/yyyy">
|
<textField pattern="dd/MM/yyyy">
|
||||||
<reportElement uuid="3948e59f-21d8-47c8-8077-a57af30605c5" mode="Opaque" x="154" y="20" width="459" height="20" backcolor="#CCCCCC"/>
|
<reportElement uuid="3948e59f-21d8-47c8-8077-a57af30605c5" mode="Opaque" x="198" y="20" width="415" height="20" backcolor="#CCCCCC"/>
|
||||||
<textElement/>
|
<textElement/>
|
||||||
<textFieldExpression><![CDATA[$P{DATA_FINAL}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$P{DATA_FINAL}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -108,35 +112,35 @@
|
||||||
<textFieldExpression><![CDATA[$R{DATA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{DATA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement uuid="29bb0167-21cd-401c-94d9-f94bb1e9b9e4" x="66" y="0" width="201" height="20"/>
|
<reportElement uuid="29bb0167-21cd-401c-94d9-f94bb1e9b9e4" x="66" y="0" width="132" height="20"/>
|
||||||
<textElement textAlignment="Center" markup="none">
|
<textElement textAlignment="Center" markup="none">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$R{AGENCIA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{AGENCIA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement uuid="9457e696-5c75-4983-98c3-9dc4fc54e976" x="267" y="0" width="110" height="20"/>
|
<reportElement uuid="9457e696-5c75-4983-98c3-9dc4fc54e976" x="198" y="0" width="87" height="20"/>
|
||||||
<textElement textAlignment="Right" markup="none">
|
<textElement textAlignment="Right" markup="none">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$R{FORMA_PAG}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{FORMA_PAG}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement uuid="ab54d7e9-29fd-42da-9721-07fe99bb8874" x="377" y="0" width="90" height="20"/>
|
<reportElement uuid="ab54d7e9-29fd-42da-9721-07fe99bb8874" x="285" y="0" width="69" height="20"/>
|
||||||
<textElement textAlignment="Right" markup="none">
|
<textElement textAlignment="Right" markup="none">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$R{VALOR}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{VALOR}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement uuid="fafe4849-b6d5-4a20-ab2c-bb3551337bbd" x="467" y="0" width="78" height="20"/>
|
<reportElement uuid="fafe4849-b6d5-4a20-ab2c-bb3551337bbd" x="354" y="0" width="70" height="20"/>
|
||||||
<textElement textAlignment="Right" markup="none">
|
<textElement textAlignment="Right" markup="none">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$R{PEDAGIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{PEDAGIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement uuid="52cf4306-6208-414e-8892-3085a69fa84a" x="545" y="0" width="68" height="20"/>
|
<reportElement uuid="52cf4306-6208-414e-8892-3085a69fa84a" x="424" y="0" width="77" height="20"/>
|
||||||
<textElement textAlignment="Right" markup="none">
|
<textElement textAlignment="Right" markup="none">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
@ -160,12 +164,19 @@
|
||||||
<reportElement uuid="33fdc3c8-28af-450b-9afb-bffbe50ff8b8" x="1" y="20" width="801" height="1"/>
|
<reportElement uuid="33fdc3c8-28af-450b-9afb-bffbe50ff8b8" x="1" y="20" width="801" height="1"/>
|
||||||
</line>
|
</line>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement uuid="478182fa-9c5c-4e61-8719-e4b056b80585" x="740" y="0" width="49" height="20"/>
|
<reportElement uuid="478182fa-9c5c-4e61-8719-e4b056b80585" x="740" y="0" width="62" height="20"/>
|
||||||
<textElement textAlignment="Right" markup="none">
|
<textElement textAlignment="Right" markup="none">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$R{QTDE}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{QTDE}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
<textField>
|
||||||
|
<reportElement uuid="fd782db0-7497-4596-8ace-8adbd28b895a" x="501" y="0" width="112" height="20"/>
|
||||||
|
<textElement textAlignment="Center" markup="none">
|
||||||
|
<font isBold="true"/>
|
||||||
|
</textElement>
|
||||||
|
<textFieldExpression><![CDATA[$R{SEGURO_OPCIONAL}]]></textFieldExpression>
|
||||||
|
</textField>
|
||||||
</band>
|
</band>
|
||||||
</columnHeader>
|
</columnHeader>
|
||||||
<detail>
|
<detail>
|
||||||
|
@ -176,17 +187,17 @@
|
||||||
<textFieldExpression><![CDATA[$F{DATA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{DATA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isBlankWhenNull="true">
|
<textField isBlankWhenNull="true">
|
||||||
<reportElement uuid="151a46f2-5c54-4a0e-91c2-a49986a08cff" x="267" y="0" width="110" height="20" isPrintWhenDetailOverflows="true"/>
|
<reportElement uuid="151a46f2-5c54-4a0e-91c2-a49986a08cff" x="198" y="0" width="87" height="20" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{FORMA_PAGAMENTO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{FORMA_PAGAMENTO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isBlankWhenNull="true">
|
<textField isBlankWhenNull="true">
|
||||||
<reportElement uuid="e873a0b8-5b07-4883-8be6-edf75307e9ab" x="66" y="0" width="201" height="20" isPrintWhenDetailOverflows="true"/>
|
<reportElement uuid="e873a0b8-5b07-4883-8be6-edf75307e9ab" x="66" y="0" width="132" height="20" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Center"/>
|
<textElement textAlignment="Center"/>
|
||||||
<textFieldExpression><![CDATA[$F{AGENCIA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{AGENCIA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="d2f490c1-e807-4243-a3e0-b86229a83c6b" x="377" y="0" width="90" height="20" isPrintWhenDetailOverflows="true"/>
|
<reportElement uuid="d2f490c1-e807-4243-a3e0-b86229a83c6b" x="285" y="0" width="69" height="20" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{TARIFA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{TARIFA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -196,17 +207,17 @@
|
||||||
<textFieldExpression><![CDATA[$F{TOTAL}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{TOTAL}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isBlankWhenNull="true">
|
<textField isBlankWhenNull="true">
|
||||||
<reportElement uuid="acacd737-9c59-4893-ac3a-ab43c1909a69" x="740" y="0" width="49" height="20" isPrintWhenDetailOverflows="true"/>
|
<reportElement uuid="acacd737-9c59-4893-ac3a-ab43c1909a69" x="740" y="0" width="62" height="20" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{QTDE}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{QTDE}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="a3119d26-2d10-40c5-98dc-bf0f6be3fc25" x="467" y="0" width="78" height="20" isPrintWhenDetailOverflows="true"/>
|
<reportElement uuid="a3119d26-2d10-40c5-98dc-bf0f6be3fc25" x="354" y="0" width="70" height="20" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{PEDAGIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{PEDAGIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="ccad4f84-243a-47cf-904a-15c4ba7feee4" x="545" y="0" width="68" height="20" isPrintWhenDetailOverflows="true"/>
|
<reportElement uuid="ccad4f84-243a-47cf-904a-15c4ba7feee4" x="424" y="0" width="77" height="20" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{SEGURO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{SEGURO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -215,6 +226,11 @@
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{TAXA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{TAXA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
||||||
|
<reportElement uuid="48f4dece-76dc-4445-89f3-73c0537c8bf9" x="501" y="0" width="112" height="20" isPrintWhenDetailOverflows="true"/>
|
||||||
|
<textElement textAlignment="Center"/>
|
||||||
|
<textFieldExpression><![CDATA[$F{SEGURO_OPCIONAL}]]></textFieldExpression>
|
||||||
|
</textField>
|
||||||
</band>
|
</band>
|
||||||
</detail>
|
</detail>
|
||||||
<columnFooter>
|
<columnFooter>
|
||||||
|
@ -226,21 +242,21 @@
|
||||||
<summary>
|
<summary>
|
||||||
<band height="50">
|
<band height="50">
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement uuid="23836f01-2215-4ba5-8d68-59a493e7f45a" x="267" y="8" width="110" height="20"/>
|
<reportElement uuid="23836f01-2215-4ba5-8d68-59a493e7f45a" x="198" y="8" width="87" height="20"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<text><![CDATA[Total]]></text>
|
<text><![CDATA[Total]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="26a2768f-98c4-40d6-8437-a3431e29767d" x="506" y="8" width="107" height="20"/>
|
<reportElement uuid="26a2768f-98c4-40d6-8437-a3431e29767d" x="424" y="8" width="77" height="20"/>
|
||||||
<textElement textAlignment="Right" verticalAlignment="Middle">
|
<textElement textAlignment="Right" verticalAlignment="Middle">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$V{SEGURO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{SEGURO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="c3d56b38-e963-4eb8-8c1d-631bc26d3c68" x="467" y="8" width="78" height="20"/>
|
<reportElement uuid="c3d56b38-e963-4eb8-8c1d-631bc26d3c68" x="354" y="8" width="70" height="20"/>
|
||||||
<textElement textAlignment="Right" verticalAlignment="Middle">
|
<textElement textAlignment="Right" verticalAlignment="Middle">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
@ -261,7 +277,7 @@
|
||||||
<textFieldExpression><![CDATA[$V{TOTAL}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{TOTAL}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="###0" isBlankWhenNull="true">
|
<textField pattern="###0" isBlankWhenNull="true">
|
||||||
<reportElement uuid="bdbb35f4-3d9d-4dcb-a849-30bb1ce38361" x="740" y="8" width="49" height="20"/>
|
<reportElement uuid="bdbb35f4-3d9d-4dcb-a849-30bb1ce38361" x="740" y="8" width="62" height="20"/>
|
||||||
<textElement textAlignment="Right" verticalAlignment="Middle">
|
<textElement textAlignment="Right" verticalAlignment="Middle">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
@ -271,12 +287,19 @@
|
||||||
<reportElement uuid="29cf051d-d1b2-4744-932b-9e8adb6b254d" x="1" y="5" width="801" height="1"/>
|
<reportElement uuid="29cf051d-d1b2-4744-932b-9e8adb6b254d" x="1" y="5" width="801" height="1"/>
|
||||||
</line>
|
</line>
|
||||||
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement uuid="6b7dcb42-1af8-4243-89d7-50d6bf0d9ba5" x="377" y="8" width="90" height="20"/>
|
<reportElement uuid="6b7dcb42-1af8-4243-89d7-50d6bf0d9ba5" x="285" y="8" width="69" height="20"/>
|
||||||
<textElement textAlignment="Right" verticalAlignment="Middle">
|
<textElement textAlignment="Right" verticalAlignment="Middle">
|
||||||
<font isBold="true"/>
|
<font isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$V{TARIFA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{TARIFA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
<textField pattern="#,##0.00" isBlankWhenNull="true">
|
||||||
|
<reportElement uuid="993c02bc-fc54-4efc-bd4a-5fd5f3226937" x="501" y="8" width="112" height="20"/>
|
||||||
|
<textElement textAlignment="Center" verticalAlignment="Middle">
|
||||||
|
<font isBold="true"/>
|
||||||
|
</textElement>
|
||||||
|
<textFieldExpression><![CDATA[$V{SEGURO_OPCIONAL}]]></textFieldExpression>
|
||||||
|
</textField>
|
||||||
</band>
|
</band>
|
||||||
</summary>
|
</summary>
|
||||||
<noData>
|
<noData>
|
||||||
|
|
Loading…
Reference in New Issue