fixes bug#22144
qua:Debora dev: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@106998 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
be0b30600a
commit
8e75f28d95
|
@ -51,6 +51,7 @@ public class RelatorioTaxasLinha extends Relatorio {
|
||||||
Boolean isTxEmbarque = (Boolean) parametros.get("IS_TX_EMBARQUE");
|
Boolean isTxEmbarque = (Boolean) parametros.get("IS_TX_EMBARQUE");
|
||||||
Boolean isPedagio = (Boolean) parametros.get("IS_PEDAGIO");
|
Boolean isPedagio = (Boolean) parametros.get("IS_PEDAGIO");
|
||||||
Boolean isSeguro = (Boolean) parametros.get("IS_SEGURO");
|
Boolean isSeguro = (Boolean) parametros.get("IS_SEGURO");
|
||||||
|
Boolean isSeguroW2I = (Boolean) parametros.get("IS_SEGUROOPCIONAL");
|
||||||
|
|
||||||
lsDadosRelatorio = new ArrayList<RelatorioTaxasLinhaBean>();
|
lsDadosRelatorio = new ArrayList<RelatorioTaxasLinhaBean>();
|
||||||
|
|
||||||
|
@ -198,6 +199,8 @@ public class RelatorioTaxasLinha extends Relatorio {
|
||||||
isValidado = true;
|
isValidado = true;
|
||||||
}else if( importePedagio.doubleValue() > 0 && isPedagio ) {
|
}else if( importePedagio.doubleValue() > 0 && isPedagio ) {
|
||||||
isValidado = true;
|
isValidado = true;
|
||||||
|
}else if((taxasLinha.getTotalValorSeguroOpcionalCancelado().compareTo(BigDecimal.ZERO)==1 || taxasLinha.getTotalValorseguroOpcionalVendido().compareTo(BigDecimal.ZERO)==1) && isSeguroW2I ) {
|
||||||
|
isValidado = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( isValidado ) {
|
if( isValidado ) {
|
||||||
|
@ -289,7 +292,7 @@ public class RelatorioTaxasLinha extends Relatorio {
|
||||||
sql.append("LEFT JOIN RUTA RT ON RT.RUTA_ID = CJ.RUTA_ID ");
|
sql.append("LEFT JOIN RUTA RT ON RT.RUTA_ID = CJ.RUTA_ID ");
|
||||||
sql.append("LEFT JOIN SEGPOLV SX ON SX.BOLETO_ID =CJ.TRANSACAO_ID ");
|
sql.append("LEFT JOIN SEGPOLV SX ON SX.BOLETO_ID =CJ.TRANSACAO_ID ");
|
||||||
|
|
||||||
sql.append("WHERE (CJ.IMPORTETAXAEMBARQUE>0 OR CJ.IMPORTEPEDAGIO>0 OR CJ.IMPORTESEGURO>0) ");
|
sql.append("WHERE (CJ.IMPORTETAXAEMBARQUE>0 OR CJ.IMPORTEPEDAGIO>0 OR CJ.IMPORTESEGURO>0 OR SX.VALOR>0) ");
|
||||||
sql.append("AND CJ.INDSTATUSOPERACION = 'F' ");
|
sql.append("AND CJ.INDSTATUSOPERACION = 'F' ");
|
||||||
sql.append("AND CJ.INDREIMPRESION = 0 ");
|
sql.append("AND CJ.INDREIMPRESION = 0 ");
|
||||||
sql.append("AND DECODE(:TIPO_DATA, 1, CJ.FECHORVENTA, 2, CJ.FECCORRIDA) BETWEEN :DATA_INICIAL AND :DATA_FINAL ");
|
sql.append("AND DECODE(:TIPO_DATA, 1, CJ.FECHORVENTA, 2, CJ.FECCORRIDA) BETWEEN :DATA_INICIAL AND :DATA_FINAL ");
|
||||||
|
|
|
@ -110,14 +110,14 @@ public class RelatorioW2IAnalitico extends Relatorio {
|
||||||
sql.append("em.nombempresa AS empresa, ");
|
sql.append("em.nombempresa AS empresa, ");
|
||||||
sql.append("pv.puntoventa_id AS puntoVentaId, ");
|
sql.append("pv.puntoventa_id AS puntoVentaId, ");
|
||||||
sql.append("pv.nombpuntoventa As agencia, ");
|
sql.append("pv.nombpuntoventa As agencia, ");
|
||||||
sql.append("sx.boleto_id AS numBilhete, ");
|
sql.append("b.numfoliosistema AS numBilhete, ");
|
||||||
sql.append("po.descparada AS origem, ");
|
sql.append("po.descparada AS origem, ");
|
||||||
sql.append("pd.descparada AS destino, ");
|
sql.append("pd.descparada AS destino, ");
|
||||||
sql.append("b.fechorviaje dataViaje, ");
|
sql.append("b.fechorviaje dataViaje, ");
|
||||||
sql.append("b.fechorventa dataVenda, ");
|
sql.append("b.fechorventa dataVenda, ");
|
||||||
sql.append("b.numasiento AS poltrona, ");
|
sql.append("b.numasiento AS poltrona, ");
|
||||||
sql.append("sx.valor AS valorTaxa, ");
|
sql.append("sx.valor AS valorTaxa, ");
|
||||||
sql.append("CASE WHEN sx.status=0 THEN 'V' ELSE 'C' END status ");
|
sql.append("CASE WHEN sx.status=0 THEN 'C' ELSE 'V' END status ");
|
||||||
|
|
||||||
sql.append("FROM segpolv sx ");
|
sql.append("FROM segpolv sx ");
|
||||||
|
|
||||||
|
|
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="RelatorioTaxasLinha" pageWidth="595" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="efbc89d4-6f08-4ea5-802f-d4f48ed208e2">
|
<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="RelatorioTaxasLinha" pageWidth="595" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="efbc89d4-6f08-4ea5-802f-d4f48ed208e2">
|
||||||
<property name="ireport.zoom" value="2.0"/>
|
<property name="ireport.zoom" value="2.0"/>
|
||||||
<property name="ireport.x" value="8"/>
|
<property name="ireport.x" value="205"/>
|
||||||
<property name="ireport.y" value="94"/>
|
<property name="ireport.y" value="0"/>
|
||||||
<style name="textStyle" isDefault="true" fontSize="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false"/>
|
<style name="textStyle" isDefault="true" fontSize="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false"/>
|
||||||
<style name="table">
|
<style name="table">
|
||||||
<box>
|
<box>
|
||||||
|
@ -536,18 +536,16 @@
|
||||||
<textFieldExpression><![CDATA[$F{CIDADE_DESTINO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{CIDADE_DESTINO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00">
|
<textField pattern="#,##0.00">
|
||||||
<reportElement uuid="6454beed-fb72-4aa5-8bff-7eb4ea6c26ba" x="181" y="1" width="30" height="11">
|
<reportElement uuid="6454beed-fb72-4aa5-8bff-7eb4ea6c26ba" x="151" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_TX_EMBARQUE}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_TX_EMBARQUE}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right" markup="none"/>
|
<textElement textAlignment="Right" markup="none"/>
|
||||||
<textFieldExpression><![CDATA[$F{IMPORTETAXAEMBARQUE}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{IMPORTETAXAEMBARQUE}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00">
|
<textField pattern="#,##0.00">
|
||||||
<reportElement uuid="1242bccb-ce44-47d6-ac13-6f4df97f707e" x="151" y="1" width="30" height="11">
|
<reportElement uuid="1242bccb-ce44-47d6-ac13-6f4df97f707e" x="181" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_PEDAGIO}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_PEDAGIO}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{IMPORTEPEDAGIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{IMPORTEPEDAGIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -555,7 +553,6 @@
|
||||||
<reportElement uuid="2184d556-1501-4525-8d09-510f9d798b86" x="211" y="1" width="30" height="11">
|
<reportElement uuid="2184d556-1501-4525-8d09-510f9d798b86" x="211" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_SEGURO}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_SEGURO}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{IMPORTESEGURO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{IMPORTESEGURO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -563,7 +560,6 @@
|
||||||
<reportElement uuid="58c1e14e-9c44-4e34-8b57-fbb6af384ce3" x="331" y="1" width="30" height="11">
|
<reportElement uuid="58c1e14e-9c44-4e34-8b57-fbb6af384ce3" x="331" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_TX_EMBARQUE}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_TX_EMBARQUE}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{TOTAL_EMBARQUE}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{TOTAL_EMBARQUE}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -571,7 +567,6 @@
|
||||||
<reportElement uuid="05426ccc-ff54-4381-8406-ae0c4290a54b" x="361" y="1" width="30" height="11">
|
<reportElement uuid="05426ccc-ff54-4381-8406-ae0c4290a54b" x="361" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_PEDAGIO}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_PEDAGIO}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{TOTAL_PEDAGIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{TOTAL_PEDAGIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -579,7 +574,6 @@
|
||||||
<reportElement uuid="8a365def-0ad3-48e8-b942-5d00f5d74a21" x="391" y="1" width="30" height="11">
|
<reportElement uuid="8a365def-0ad3-48e8-b942-5d00f5d74a21" x="391" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_SEGURO}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_SEGURO}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{TOTAL_SEGURO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{TOTAL_SEGURO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -587,7 +581,6 @@
|
||||||
<reportElement uuid="7059069b-3c22-416a-afc1-d05473a3d429" x="241" y="1" width="30" height="11">
|
<reportElement uuid="7059069b-3c22-416a-afc1-d05473a3d429" x="241" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_TX_EMBARQUE}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_TX_EMBARQUE}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{EMBARQUE_VENDIDOS}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{EMBARQUE_VENDIDOS}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -595,7 +588,6 @@
|
||||||
<reportElement uuid="049ba79a-5ee9-4ee2-80d7-d498ad7d7125" x="271" y="1" width="30" height="11">
|
<reportElement uuid="049ba79a-5ee9-4ee2-80d7-d498ad7d7125" x="271" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_PEDAGIO}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_PEDAGIO}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{PEDAGIO_VENDIDOS}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{PEDAGIO_VENDIDOS}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -603,7 +595,6 @@
|
||||||
<reportElement uuid="c15ba1bc-2040-4a73-a221-52d574fbedb4" x="301" y="1" width="30" height="11">
|
<reportElement uuid="c15ba1bc-2040-4a73-a221-52d574fbedb4" x="301" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_SEGURO}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_SEGURO}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{SEGURO_VENDIDOS}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{SEGURO_VENDIDOS}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -611,7 +602,6 @@
|
||||||
<reportElement uuid="14366362-112f-4407-af42-1d4bb373340a" x="451" y="1" width="30" height="11">
|
<reportElement uuid="14366362-112f-4407-af42-1d4bb373340a" x="451" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_SEGUROOPCIONAL}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_SEGUROOPCIONAL}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{totalValorSeguroOpcionalCancelado}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{totalValorSeguroOpcionalCancelado}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -619,7 +609,6 @@
|
||||||
<reportElement uuid="9921ad8d-d1bd-4789-becc-583210c0b4e9" x="421" y="1" width="30" height="11">
|
<reportElement uuid="9921ad8d-d1bd-4789-becc-583210c0b4e9" x="421" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_SEGUROOPCIONAL}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_SEGUROOPCIONAL}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{qtdSeguroOpcionalCancelado}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{qtdSeguroOpcionalCancelado}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -627,7 +616,6 @@
|
||||||
<reportElement uuid="1d0ddaa7-506e-4e81-b798-d6832489da83" x="481" y="1" width="30" height="11">
|
<reportElement uuid="1d0ddaa7-506e-4e81-b798-d6832489da83" x="481" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_SEGUROOPCIONAL}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_SEGUROOPCIONAL}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{qtdSeguroOpcionalVendidos}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{qtdSeguroOpcionalVendidos}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -635,7 +623,6 @@
|
||||||
<reportElement uuid="fb64c49c-1370-47fd-a0b0-e4d5f24d02d9" x="511" y="1" width="30" height="11">
|
<reportElement uuid="fb64c49c-1370-47fd-a0b0-e4d5f24d02d9" x="511" y="1" width="30" height="11">
|
||||||
<printWhenExpression><![CDATA[$P{IS_SEGUROOPCIONAL}]]></printWhenExpression>
|
<printWhenExpression><![CDATA[$P{IS_SEGUROOPCIONAL}]]></printWhenExpression>
|
||||||
</reportElement>
|
</reportElement>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{totalValorseguroOpcionalVendido}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{totalValorseguroOpcionalVendido}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
|
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="RelatorioTaxasLinha" pageWidth="595" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="efbc89d4-6f08-4ea5-802f-d4f48ed208e2">
|
<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="RelatorioTaxasLinha" pageWidth="595" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="efbc89d4-6f08-4ea5-802f-d4f48ed208e2">
|
||||||
<property name="ireport.zoom" value="2.0"/>
|
<property name="ireport.zoom" value="2.0"/>
|
||||||
<property name="ireport.x" value="335"/>
|
<property name="ireport.x" value="250"/>
|
||||||
<property name="ireport.y" value="172"/>
|
<property name="ireport.y" value="0"/>
|
||||||
<style name="textStyle" isDefault="true" fontSize="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false"/>
|
<style name="textStyle" isDefault="true" fontSize="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false"/>
|
||||||
<style name="table">
|
<style name="table">
|
||||||
<box>
|
<box>
|
||||||
|
@ -346,7 +346,6 @@
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00">
|
<textField pattern="#,##0.00">
|
||||||
<reportElement uuid="c15ba1bc-2040-4a73-a221-52d574fbedb4" x="425" y="1" width="70" height="11"/>
|
<reportElement uuid="c15ba1bc-2040-4a73-a221-52d574fbedb4" x="425" y="1" width="70" height="11"/>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font isStrikeThrough="false"/>
|
<font isStrikeThrough="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
|
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="RelatorioW2ISintetico" pageWidth="595" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="efbc89d4-6f08-4ea5-802f-d4f48ed208e2">
|
<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="RelatorioW2ISintetico" pageWidth="595" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="efbc89d4-6f08-4ea5-802f-d4f48ed208e2">
|
||||||
<property name="ireport.zoom" value="2.0"/>
|
<property name="ireport.zoom" value="2.0"/>
|
||||||
<property name="ireport.x" value="252"/>
|
<property name="ireport.x" value="91"/>
|
||||||
<property name="ireport.y" value="0"/>
|
<property name="ireport.y" value="0"/>
|
||||||
<style name="textStyle" isDefault="true" fontSize="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false"/>
|
<style name="textStyle" isDefault="true" fontSize="6" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false"/>
|
||||||
<style name="table">
|
<style name="table">
|
||||||
|
@ -288,7 +288,6 @@
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="">
|
<textField pattern="">
|
||||||
<reportElement uuid="6454beed-fb72-4aa5-8bff-7eb4ea6c26ba" x="310" y="1" width="70" height="11"/>
|
<reportElement uuid="6454beed-fb72-4aa5-8bff-7eb4ea6c26ba" x="310" y="1" width="70" height="11"/>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right" markup="none">
|
<textElement textAlignment="Right" markup="none">
|
||||||
<font isStrikeThrough="false"/>
|
<font isStrikeThrough="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
@ -296,13 +295,11 @@
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00">
|
<textField pattern="#,##0.00">
|
||||||
<reportElement uuid="1242bccb-ce44-47d6-ac13-6f4df97f707e" x="230" y="1" width="80" height="11"/>
|
<reportElement uuid="1242bccb-ce44-47d6-ac13-6f4df97f707e" x="230" y="1" width="80" height="11"/>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{totalValorSeguroOpcionalCancelado}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{totalValorSeguroOpcionalCancelado}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="#,##0.00" isBlankWhenNull="false">
|
<textField pattern="#,##0.00" isBlankWhenNull="false">
|
||||||
<reportElement uuid="2184d556-1501-4525-8d09-510f9d798b86" x="380" y="1" width="80" height="11"/>
|
<reportElement uuid="2184d556-1501-4525-8d09-510f9d798b86" x="380" y="1" width="80" height="11"/>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font isStrikeThrough="false"/>
|
<font isStrikeThrough="false"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
|
@ -310,7 +307,6 @@
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="">
|
<textField pattern="">
|
||||||
<reportElement uuid="824ec618-40e0-4c6c-a104-83940ed8e8b7" x="150" y="1" width="80" height="11"/>
|
<reportElement uuid="824ec618-40e0-4c6c-a104-83940ed8e8b7" x="150" y="1" width="80" height="11"/>
|
||||||
<box rightPadding="5"/>
|
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{qtdSeguroOpcionalCancelado}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{qtdSeguroOpcionalCancelado}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
|
Loading…
Reference in New Issue