fixes bug#21926
qua: Silvania dev: Wallace git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@106757 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
819c7d9971
commit
4ed94ad86b
|
@ -36,7 +36,13 @@ public class RelatorioVendasBilheteiroSintetico extends Relatorio {
|
||||||
Boolean isFechamento = parametros.get("ORGANIZADOFECHAMENTO")==null? false: (Boolean)parametros.get("ORGANIZADOFECHAMENTO");
|
Boolean isFechamento = parametros.get("ORGANIZADOFECHAMENTO")==null? false: (Boolean)parametros.get("ORGANIZADOFECHAMENTO");
|
||||||
|
|
||||||
sql.append("select ");
|
sql.append("select ");
|
||||||
sql.append(" pv.NUMPUNTOVENTA, us.cveusuario , us.NOMBUSUARIO, tpv.DESCTIPO, ");
|
sql.append(" pv.NUMPUNTOVENTA, us.cveusuario , tpv.DESCTIPO, ");
|
||||||
|
|
||||||
|
if(isDigitacao) {
|
||||||
|
sql.append(" CONCAT(CONCAT(est.NUMCAJA, ' - '), est.DESCESTACION) as NOMBUSUARIO, ");
|
||||||
|
} else {
|
||||||
|
sql.append(" us.NOMBUSUARIO, ");
|
||||||
|
}
|
||||||
|
|
||||||
if(isFechamento) {
|
if(isFechamento) {
|
||||||
sql.append(" uc.CVEUSUARIO as USUARIOFEC, pvc.NUMPUNTOVENTA as NUMPUNTOVENTAFEC, ");
|
sql.append(" uc.CVEUSUARIO as USUARIOFEC, pvc.NUMPUNTOVENTA as NUMPUNTOVENTAFEC, ");
|
||||||
|
@ -120,9 +126,10 @@ public class RelatorioVendasBilheteiroSintetico extends Relatorio {
|
||||||
sql.append(" join MARCA m on m.marca_id = ca.marca_id ");
|
sql.append(" join MARCA m on m.marca_id = ca.marca_id ");
|
||||||
|
|
||||||
if (isDigitacao) {
|
if (isDigitacao) {
|
||||||
sql.append(" JOIN DIGITA_ITEM_BOLETO dib on ca.TRANSACAO_ID = dib.BOLETO_ID ");
|
sql.append(" JOIN DIGITA_ITEM_BOLETO dib on (ca.TRANSACAO_ID = dib.BOLETO_ID) ");
|
||||||
sql.append(" LEFT JOIN DIGITA_VENTA dv on dib.DIGITAVENTA_ID = dv.DIGITAVENTA_ID ");
|
sql.append(" LEFT JOIN DIGITA_VENTA dv on (dib.DIGITAVENTA_ID = dv.DIGITAVENTA_ID) ");
|
||||||
sql.append(" LEFT JOIN USUARIO_UBICACION udu on udu.USUARIO_ID = dv.USUARIO_ID and udu.ACTIVO = 1 ");
|
sql.append(" LEFT JOIN USUARIO_UBICACION udu on (udu.USUARIO_ID = dv.USUARIO_ID and udu.ACTIVO = 1) ");
|
||||||
|
sql.append(" LEFT JOIN ESTACION est on (est.USUARIO_ID = udu.USUARIO_ID AND est.ACTIVO = 1) ");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isFechamento) {
|
if(isFechamento) {
|
||||||
|
@ -167,14 +174,25 @@ public class RelatorioVendasBilheteiroSintetico extends Relatorio {
|
||||||
if (parametros.get("TIPOPUNTOVENTA_ID") != null && !parametros.get("TIPOPUNTOVENTA_ID").toString().equals("-1")) {
|
if (parametros.get("TIPOPUNTOVENTA_ID") != null && !parametros.get("TIPOPUNTOVENTA_ID").toString().equals("-1")) {
|
||||||
sql.append(" and pv.TIPOPTOVTA_ID = :TIPOPUNTOVENTA_ID ");
|
sql.append(" and pv.TIPOPTOVTA_ID = :TIPOPUNTOVENTA_ID ");
|
||||||
}
|
}
|
||||||
sql.append(" group by pv.NUMPUNTOVENTA, us.cveusuario, us.NOMBUSUARIO , tpv.DESCTIPO ");
|
sql.append(" group by pv.NUMPUNTOVENTA, us.cveusuario, tpv.DESCTIPO, ");
|
||||||
|
|
||||||
|
if(isDigitacao) {
|
||||||
|
sql.append(" CONCAT(CONCAT(est.NUMCAJA, ' - '), est.DESCESTACION) ");
|
||||||
|
} else {
|
||||||
|
sql.append(" us.NOMBUSUARIO ");
|
||||||
|
}
|
||||||
|
|
||||||
if(isFechamento) {
|
if(isFechamento) {
|
||||||
sql.append(" , uc.CVEUSUARIO, pvc.NUMPUNTOVENTA ");
|
sql.append(" , uc.CVEUSUARIO, pvc.NUMPUNTOVENTA ");
|
||||||
}
|
}
|
||||||
|
sql.append(" order by pv.NUMPUNTOVENTA, ");
|
||||||
|
|
||||||
|
if(isDigitacao) {
|
||||||
|
sql.append(" CONCAT(CONCAT(est.NUMCAJA, ' - '), est.DESCESTACION) ");
|
||||||
|
} else {
|
||||||
|
sql.append(" us.NOMBUSUARIO ");
|
||||||
|
}
|
||||||
|
|
||||||
sql.append(" order by pv.NUMPUNTOVENTA, us.NOMBUSUARIO ");
|
|
||||||
|
|
||||||
NamedParameterStatement stmt = new NamedParameterStatement(conexao, sql.toString());
|
NamedParameterStatement stmt = new NamedParameterStatement(conexao, sql.toString());
|
||||||
if (parametros.get("EMPRESA_ID") != null) {
|
if (parametros.get("EMPRESA_ID") != null) {
|
||||||
stmt.setInt("EMPRESA_ID", Integer.valueOf(parametros.get("EMPRESA_ID").toString()));
|
stmt.setInt("EMPRESA_ID", Integer.valueOf(parametros.get("EMPRESA_ID").toString()));
|
||||||
|
@ -186,7 +204,7 @@ public class RelatorioVendasBilheteiroSintetico extends Relatorio {
|
||||||
if (parametros.get("TIPOPUNTOVENTA_ID") != null && !parametros.get("TIPOPUNTOVENTA_ID").toString().equals("-1")) {
|
if (parametros.get("TIPOPUNTOVENTA_ID") != null && !parametros.get("TIPOPUNTOVENTA_ID").toString().equals("-1")) {
|
||||||
stmt.setInt("TIPOPUNTOVENTA_ID", Integer.valueOf(parametros.get("TIPOPUNTOVENTA_ID").toString()));
|
stmt.setInt("TIPOPUNTOVENTA_ID", Integer.valueOf(parametros.get("TIPOPUNTOVENTA_ID").toString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
ResultSet rset = stmt.executeQuery();
|
ResultSet rset = stmt.executeQuery();
|
||||||
|
|
||||||
rset.setFetchSize(1000);
|
rset.setFetchSize(1000);
|
||||||
|
|
Binary file not shown.
|
@ -67,7 +67,7 @@
|
||||||
<pageHeader>
|
<pageHeader>
|
||||||
<band height="53" splitType="Stretch">
|
<band height="53" splitType="Stretch">
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement x="44" y="39" width="716" height="14" uuid="c486add3-94d7-419f-9f37-04f6a6da879e"/>
|
<reportElement uuid="c486add3-94d7-419f-9f37-04f6a6da879e" x="44" y="39" width="716" height="14"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="0.0"/>
|
<bottomPen lineWidth="0.0"/>
|
||||||
|
@ -78,7 +78,7 @@
|
||||||
<textFieldExpression><![CDATA[$P{FILTROS}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$P{FILTROS}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="dd/MM/yyyy" isBlankWhenNull="false">
|
<textField pattern="dd/MM/yyyy" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="43" y="14" width="69" height="14" forecolor="#000000" backcolor="#FFFFFF" uuid="42796e20-405c-441f-9fd9-b26238bc7cdb"/>
|
<reportElement uuid="42796e20-405c-441f-9fd9-b26238bc7cdb" mode="Transparent" x="43" y="14" width="69" height="14" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
<textFieldExpression><![CDATA[$P{DATA_INICIAL}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$P{DATA_INICIAL}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="" isBlankWhenNull="false">
|
<textField pattern="" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="0" y="0" width="550" height="15" forecolor="#000000" backcolor="#FFFFFF" uuid="d2973779-79dc-4cc8-937a-e9167c42bab0"/>
|
<reportElement uuid="d2973779-79dc-4cc8-937a-e9167c42bab0" mode="Transparent" x="0" y="0" width="550" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
<textFieldExpression><![CDATA[$P{NOME_RELATORIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$P{NOME_RELATORIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="dd/MM/yyyy" isBlankWhenNull="false">
|
<textField pattern="dd/MM/yyyy" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="122" y="14" width="168" height="14" forecolor="#000000" backcolor="#FFFFFF" uuid="8730e85b-d436-42cd-beb6-1a881bad2478"/>
|
<reportElement uuid="8730e85b-d436-42cd-beb6-1a881bad2478" mode="Transparent" x="122" y="14" width="168" height="14" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
<textFieldExpression><![CDATA[$P{DATA_FINAL}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$P{DATA_FINAL}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="" isBlankWhenNull="false">
|
<textField pattern="" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="0" y="14" width="44" height="14" forecolor="#000000" backcolor="#FFFFFF" uuid="26bbd310-5e59-4975-a47f-b0048e80b1b6"/>
|
<reportElement uuid="26bbd310-5e59-4975-a47f-b0048e80b1b6" mode="Transparent" x="0" y="14" width="44" height="14" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -110,7 +110,7 @@
|
||||||
<textFieldExpression><![CDATA[$R{cabecalho.periodo}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{cabecalho.periodo}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="" isBlankWhenNull="false">
|
<textField pattern="" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="0" y="39" width="45" height="14" forecolor="#000000" backcolor="#FFFFFF" uuid="9630a784-5f92-4abe-805c-fd175e4f8241"/>
|
<reportElement uuid="9630a784-5f92-4abe-805c-fd175e4f8241" mode="Transparent" x="0" y="39" width="45" height="14" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="0.0"/>
|
<bottomPen lineWidth="0.0"/>
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
<textFieldExpression><![CDATA[$R{cabecalho.filtros}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{cabecalho.filtros}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="dd/MM/yyyy HH:mm" isBlankWhenNull="false">
|
<textField pattern="dd/MM/yyyy HH:mm" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="669" y="0" width="89" height="15" forecolor="#000000" backcolor="#FFFFFF" uuid="91cded42-c53d-469a-abc7-6eb0d59f69af"/>
|
<reportElement uuid="91cded42-c53d-469a-abc7-6eb0d59f69af" mode="Transparent" x="669" y="0" width="89" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -130,7 +130,7 @@
|
||||||
<textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
|
<textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="" isBlankWhenNull="false">
|
<textField pattern="" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="550" y="28" width="208" height="12" forecolor="#000000" backcolor="#FFFFFF" uuid="62f6ba6e-1aaf-4449-aef6-2e9d6e541856"/>
|
<reportElement uuid="62f6ba6e-1aaf-4449-aef6-2e9d6e541856" mode="Transparent" x="550" y="28" width="208" height="12" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="7" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="7" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -138,7 +138,7 @@
|
||||||
<textFieldExpression><![CDATA[$R{cabecalho.impressorPor}+" "+$P{USUARIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{cabecalho.impressorPor}+" "+$P{USUARIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField evaluationTime="Report" pattern="" isBlankWhenNull="false">
|
<textField evaluationTime="Report" pattern="" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="743" y="14" width="15" height="15" forecolor="#000000" backcolor="#FFFFFF" uuid="985f839c-258a-47eb-b72b-bec819b7bdbb"/>
|
<reportElement uuid="985f839c-258a-47eb-b72b-bec819b7bdbb" mode="Transparent" x="743" y="14" width="15" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
<textFieldExpression><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="" isBlankWhenNull="false">
|
<textField pattern="" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="550" y="14" width="186" height="15" forecolor="#000000" backcolor="#FFFFFF" uuid="ba831a24-59f4-4f8f-888f-fd69711018e9"/>
|
<reportElement uuid="ba831a24-59f4-4f8f-888f-fd69711018e9" mode="Transparent" x="550" y="14" width="186" height="15" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -154,14 +154,14 @@
|
||||||
<textFieldExpression><![CDATA[$R{cabecalho.pagina}+" "+$V{PAGE_NUMBER}+" "+$R{cabecalho.de}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{cabecalho.pagina}+" "+$V{PAGE_NUMBER}+" "+$R{cabecalho.de}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement x="550" y="0" width="119" height="15" uuid="5cbb57ef-bd5e-4d1b-a077-d0ff398df801"/>
|
<reportElement uuid="5cbb57ef-bd5e-4d1b-a077-d0ff398df801" x="550" y="0" width="119" height="15"/>
|
||||||
<textElement textAlignment="Right">
|
<textElement textAlignment="Right">
|
||||||
<font size="9" isBold="true"/>
|
<font size="9" isBold="true"/>
|
||||||
</textElement>
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$R{cabecalho.dataHora}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$R{cabecalho.dataHora}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern="" isBlankWhenNull="false">
|
<textField pattern="" isBlankWhenNull="false">
|
||||||
<reportElement mode="Transparent" x="112" y="14" width="10" height="14" forecolor="#000000" backcolor="#FFFFFF" uuid="6d6ab075-006c-4796-98d5-f047ae963876"/>
|
<reportElement uuid="6d6ab075-006c-4796-98d5-f047ae963876" mode="Transparent" x="112" y="14" width="10" height="14" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
||||||
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
<font fontName="SansSerif" size="9" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||||
<paragraph lineSpacing="Single"/>
|
<paragraph lineSpacing="Single"/>
|
||||||
|
@ -173,7 +173,7 @@
|
||||||
<columnHeader>
|
<columnHeader>
|
||||||
<band height="15" splitType="Stretch">
|
<band height="15" splitType="Stretch">
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="145" y="0" width="82" height="14" isPrintWhenDetailOverflows="true" uuid="dddf51af-453b-4840-b6cf-7c9a612e9d1f"/>
|
<reportElement uuid="dddf51af-453b-4840-b6cf-7c9a612e9d1f" stretchType="RelativeToTallestObject" x="101" y="0" width="137" height="14" isPrintWhenDetailOverflows="true"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -184,7 +184,7 @@
|
||||||
<textFieldExpression><![CDATA["Bilheteiro"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["Bilheteiro"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="0" y="0" width="75" height="14" isPrintWhenDetailOverflows="true" uuid="8886dc03-69cd-4fc5-94b5-b8ff18d4a0c0"/>
|
<reportElement uuid="8886dc03-69cd-4fc5-94b5-b8ff18d4a0c0" stretchType="RelativeToTallestObject" x="0" y="0" width="57" height="14" isPrintWhenDetailOverflows="true"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -195,7 +195,7 @@
|
||||||
<textFieldExpression><![CDATA["Num. Agência"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["Num. Agência"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="290" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" uuid="55197ae8-5dab-4548-a3b8-3adfb5beb93a"/>
|
<reportElement uuid="55197ae8-5dab-4548-a3b8-3adfb5beb93a" stretchType="RelativeToTallestObject" x="301" y="0" width="54" height="14" isPrintWhenDetailOverflows="true"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -206,7 +206,7 @@
|
||||||
<textFieldExpression><![CDATA["QTD. Vendas"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["QTD. Vendas"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" mode="Transparent" x="355" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" forecolor="#000000" backcolor="#FFFFFF" uuid="84e3c491-4384-43d5-9a2c-3ec0e65ecda5"/>
|
<reportElement uuid="84e3c491-4384-43d5-9a2c-3ec0e65ecda5" stretchType="RelativeToTallestObject" mode="Transparent" x="355" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -218,7 +218,7 @@
|
||||||
<textFieldExpression><![CDATA["VLR. Vendas"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["VLR. Vendas"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" mode="Transparent" x="485" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" forecolor="#000000" backcolor="#FFFFFF" uuid="c1c8f17d-849d-4ba1-9c2b-c0dc2eb446f9"/>
|
<reportElement uuid="c1c8f17d-849d-4ba1-9c2b-c0dc2eb446f9" stretchType="RelativeToTallestObject" mode="Transparent" x="485" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -230,7 +230,7 @@
|
||||||
<textFieldExpression><![CDATA["VLR. Cancelados"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["VLR. Cancelados"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="75" y="0" width="70" height="14" isPrintWhenDetailOverflows="true" uuid="bdb8c19b-67d9-4175-9d87-62d468c535b8"/>
|
<reportElement uuid="bdb8c19b-67d9-4175-9d87-62d468c535b8" stretchType="RelativeToTallestObject" x="57" y="0" width="44" height="14" isPrintWhenDetailOverflows="true"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -241,7 +241,7 @@
|
||||||
<textFieldExpression><![CDATA["Login"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["Login"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" mode="Transparent" x="420" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" forecolor="#000000" backcolor="#FFFFFF" uuid="083ed504-c257-4a90-9f63-b20e828cc97f"/>
|
<reportElement uuid="083ed504-c257-4a90-9f63-b20e828cc97f" stretchType="RelativeToTallestObject" mode="Transparent" x="420" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -253,7 +253,7 @@
|
||||||
<textFieldExpression><![CDATA["QTD. Cancelados"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["QTD. Cancelados"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="227" y="0" width="63" height="14" isPrintWhenDetailOverflows="true" uuid="53544418-723e-4443-941d-c9be7bd13270"/>
|
<reportElement uuid="53544418-723e-4443-941d-c9be7bd13270" stretchType="RelativeToTallestObject" x="238" y="0" width="63" height="14" isPrintWhenDetailOverflows="true"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -264,7 +264,7 @@
|
||||||
<textFieldExpression><![CDATA["Canal Venda"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["Canal Venda"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" mode="Transparent" x="550" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" forecolor="#000000" backcolor="#FFFFFF" uuid="76fd3558-b58d-4eee-9d01-b65e1fb72a67"/>
|
<reportElement uuid="76fd3558-b58d-4eee-9d01-b65e1fb72a67" stretchType="RelativeToTallestObject" mode="Transparent" x="550" y="0" width="65" height="14" isPrintWhenDetailOverflows="true" forecolor="#000000" backcolor="#FFFFFF"/>
|
||||||
<box rightPadding="0">
|
<box rightPadding="0">
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -276,7 +276,7 @@
|
||||||
<textFieldExpression><![CDATA["VLR. Total"]]></textFieldExpression>
|
<textFieldExpression><![CDATA["VLR. Total"]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="690" y="0" width="70" height="14" isPrintWhenDetailOverflows="true" uuid="4c08c112-9e3f-40d9-b8fb-7e743146259e"/>
|
<reportElement uuid="4c08c112-9e3f-40d9-b8fb-7e743146259e" stretchType="RelativeToTallestObject" x="690" y="0" width="70" height="14" isPrintWhenDetailOverflows="true"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -287,7 +287,7 @@
|
||||||
<textFieldExpression><![CDATA["Usuário Fec."]]></textFieldExpression>
|
<textFieldExpression><![CDATA["Usuário Fec."]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="615" y="0" width="75" height="14" isPrintWhenDetailOverflows="true" uuid="8f054822-af2d-4286-bfd8-ea2c0c398fc0"/>
|
<reportElement uuid="8f054822-af2d-4286-bfd8-ea2c0c398fc0" stretchType="RelativeToTallestObject" x="615" y="0" width="75" height="14" isPrintWhenDetailOverflows="true"/>
|
||||||
<box>
|
<box>
|
||||||
<topPen lineWidth="1.25"/>
|
<topPen lineWidth="1.25"/>
|
||||||
<bottomPen lineWidth="1.25"/>
|
<bottomPen lineWidth="1.25"/>
|
||||||
|
@ -302,55 +302,61 @@
|
||||||
<detail>
|
<detail>
|
||||||
<band height="15" splitType="Stretch">
|
<band height="15" splitType="Stretch">
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="0" y="0" width="75" height="15" uuid="01ee8c0d-6a68-45ea-a4e1-165a48cc89d4"/>
|
<reportElement uuid="01ee8c0d-6a68-45ea-a4e1-165a48cc89d4" stretchType="RelativeToTallestObject" x="0" y="0" width="57" height="15"/>
|
||||||
<textElement textAlignment="Center"/>
|
<textElement textAlignment="Center"/>
|
||||||
<textFieldExpression><![CDATA[$F{NUMPUNTOVENTA}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{NUMPUNTOVENTA}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="75" y="0" width="70" height="15" uuid="152742f7-1799-4416-a180-3f55ebd20eb0"/>
|
<reportElement uuid="152742f7-1799-4416-a180-3f55ebd20eb0" stretchType="RelativeToTallestObject" x="57" y="0" width="44" height="15"/>
|
||||||
|
<textElement/>
|
||||||
<textFieldExpression><![CDATA[$F{CVEUSUARIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{CVEUSUARIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="145" y="0" width="82" height="15" uuid="7456c2e1-eb6f-48ba-8097-3ebc40c96bcd"/>
|
<reportElement uuid="7456c2e1-eb6f-48ba-8097-3ebc40c96bcd" stretchType="RelativeToTallestObject" x="101" y="0" width="137" height="15"/>
|
||||||
|
<textElement>
|
||||||
|
<paragraph leftIndent="2"/>
|
||||||
|
</textElement>
|
||||||
<textFieldExpression><![CDATA[$F{NOMBUSUARIO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{NOMBUSUARIO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="290" y="0" width="65" height="15" uuid="0debe4a0-072f-46ed-957b-635c73d4c92c"/>
|
<reportElement uuid="0debe4a0-072f-46ed-957b-635c73d4c92c" stretchType="RelativeToTallestObject" x="301" y="0" width="54" height="15"/>
|
||||||
<textElement textAlignment="Center"/>
|
<textElement textAlignment="Center"/>
|
||||||
<textFieldExpression><![CDATA[$F{QTDVENDAS}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{QTDVENDAS}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" pattern=" #,##0.00" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" pattern=" #,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="485" y="0" width="65" height="15" isPrintWhenDetailOverflows="true" uuid="de74b2a9-67c4-415c-abca-fa3549d9b0a7"/>
|
<reportElement uuid="de74b2a9-67c4-415c-abca-fa3549d9b0a7" stretchType="RelativeToTallestObject" x="485" y="0" width="65" height="15" isPrintWhenDetailOverflows="true"/>
|
||||||
<box rightPadding="2"/>
|
<box rightPadding="2"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{VLRCANCELADOS}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{VLRCANCELADOS}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" pattern=" #,##0.00" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" pattern=" #,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="355" y="0" width="65" height="15" isPrintWhenDetailOverflows="true" uuid="da9cc79b-499f-4b9f-b1fd-7de995071fea"/>
|
<reportElement uuid="da9cc79b-499f-4b9f-b1fd-7de995071fea" stretchType="RelativeToTallestObject" x="355" y="0" width="65" height="15" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$F{VLRVENDAS}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{VLRVENDAS}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="227" y="0" width="63" height="15" uuid="49206373-b1d1-4c3e-8475-705c707b8286"/>
|
<reportElement uuid="49206373-b1d1-4c3e-8475-705c707b8286" stretchType="RelativeToTallestObject" x="238" y="0" width="63" height="15"/>
|
||||||
|
<textElement/>
|
||||||
<textFieldExpression><![CDATA[$F{DESCTIPO}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{DESCTIPO}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" pattern=" #,##0.00" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" pattern=" #,##0.00" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="550" y="0" width="65" height="15" isPrintWhenDetailOverflows="true" uuid="c338d2a3-b762-47b8-9d83-99f3ecb20e15"/>
|
<reportElement uuid="c338d2a3-b762-47b8-9d83-99f3ecb20e15" stretchType="RelativeToTallestObject" x="550" y="0" width="65" height="15" isPrintWhenDetailOverflows="true"/>
|
||||||
<box rightPadding="2"/>
|
<box rightPadding="2"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$V{vlrTotal}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{vlrTotal}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="420" y="0" width="65" height="15" isPrintWhenDetailOverflows="true" uuid="cb0241c1-c8ed-446d-accf-36af4a4ab540"/>
|
<reportElement uuid="cb0241c1-c8ed-446d-accf-36af4a4ab540" stretchType="RelativeToTallestObject" x="420" y="0" width="65" height="15" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Center"/>
|
<textElement textAlignment="Center"/>
|
||||||
<textFieldExpression><![CDATA[$F{QTDCANCELADOS}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{QTDCANCELADOS}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="690" y="0" width="70" height="15" isPrintWhenDetailOverflows="true" uuid="25ed46d6-6d9c-4708-beb4-246400076ba7"/>
|
<reportElement uuid="25ed46d6-6d9c-4708-beb4-246400076ba7" stretchType="RelativeToTallestObject" x="690" y="0" width="70" height="15" isPrintWhenDetailOverflows="true"/>
|
||||||
|
<textElement/>
|
||||||
<textFieldExpression><![CDATA[$F{USUARIOFEC}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{USUARIOFEC}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||||
<reportElement stretchType="RelativeToTallestObject" x="615" y="0" width="75" height="15" isPrintWhenDetailOverflows="true" uuid="c7aac4e8-e722-4cb8-b787-2e7ded7b0654"/>
|
<reportElement uuid="c7aac4e8-e722-4cb8-b787-2e7ded7b0654" stretchType="RelativeToTallestObject" x="615" y="0" width="75" height="15" isPrintWhenDetailOverflows="true"/>
|
||||||
<textElement textAlignment="Center"/>
|
<textElement textAlignment="Center"/>
|
||||||
<textFieldExpression><![CDATA[$F{NUMPUNTOVENTAFEC}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$F{NUMPUNTOVENTAFEC}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
|
@ -359,33 +365,33 @@
|
||||||
<lastPageFooter>
|
<lastPageFooter>
|
||||||
<band height="20">
|
<band height="20">
|
||||||
<textField pattern=" #,##0.00">
|
<textField pattern=" #,##0.00">
|
||||||
<reportElement x="355" y="0" width="65" height="20" uuid="4fe96ddc-d868-49b8-8da6-819532f96884"/>
|
<reportElement uuid="4fe96ddc-d868-49b8-8da6-819532f96884" x="355" y="0" width="65" height="20"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$V{vlrVendaTotal}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{vlrVendaTotal}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField pattern=" #,##0.00">
|
<textField pattern=" #,##0.00">
|
||||||
<reportElement x="485" y="0" width="65" height="20" uuid="04a540b3-e38f-47ca-85fe-3501dbc6c6a3"/>
|
<reportElement uuid="04a540b3-e38f-47ca-85fe-3501dbc6c6a3" x="485" y="0" width="65" height="20"/>
|
||||||
<box rightPadding="2"/>
|
<box rightPadding="2"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$V{vlrCanceladosTotal}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{vlrCanceladosTotal}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement x="420" y="0" width="65" height="20" uuid="1d047de8-99d1-4293-924e-68e503c9e3bb"/>
|
<reportElement uuid="1d047de8-99d1-4293-924e-68e503c9e3bb" x="420" y="0" width="65" height="20"/>
|
||||||
<textElement textAlignment="Center"/>
|
<textElement textAlignment="Center"/>
|
||||||
<textFieldExpression><![CDATA[$V{qtdCanceladosTotal}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{qtdCanceladosTotal}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<textField>
|
<textField>
|
||||||
<reportElement x="290" y="0" width="65" height="20" uuid="8635b7a5-3642-4e3c-83d0-61f00680f2e1"/>
|
<reportElement uuid="8635b7a5-3642-4e3c-83d0-61f00680f2e1" x="290" y="0" width="65" height="20"/>
|
||||||
<textElement textAlignment="Center"/>
|
<textElement textAlignment="Center"/>
|
||||||
<textFieldExpression><![CDATA[$V{qtdVendasTotal}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{qtdVendasTotal}]]></textFieldExpression>
|
||||||
</textField>
|
</textField>
|
||||||
<staticText>
|
<staticText>
|
||||||
<reportElement x="0" y="0" width="290" height="20" uuid="4b21c6f2-7b3a-4ff4-b3d3-714ece376255"/>
|
<reportElement uuid="4b21c6f2-7b3a-4ff4-b3d3-714ece376255" x="0" y="0" width="290" height="20"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<text><![CDATA[Totais:]]></text>
|
<text><![CDATA[Totais:]]></text>
|
||||||
</staticText>
|
</staticText>
|
||||||
<textField pattern=" #,##0.00">
|
<textField pattern=" #,##0.00">
|
||||||
<reportElement x="550" y="0" width="65" height="20" uuid="ee93037d-feb2-42ec-96f7-af8d2d61f13d"/>
|
<reportElement uuid="ee93037d-feb2-42ec-96f7-af8d2d61f13d" x="550" y="0" width="65" height="20"/>
|
||||||
<box rightPadding="2"/>
|
<box rightPadding="2"/>
|
||||||
<textElement textAlignment="Right"/>
|
<textElement textAlignment="Right"/>
|
||||||
<textFieldExpression><![CDATA[$V{vlrTotalCompleto}]]></textFieldExpression>
|
<textFieldExpression><![CDATA[$V{vlrTotalCompleto}]]></textFieldExpression>
|
||||||
|
|
Loading…
Reference in New Issue