fixes bug#16940
dev:thiago qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@98650 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
97c869f57f
commit
093d75dca3
|
@ -86,16 +86,43 @@ public class RelatorioBPe extends Relatorio {
|
|||
sql.append(" bpe.CHBPE, ");
|
||||
sql.append(" bol.NUM_BPE as num_bpe, ");
|
||||
sql.append(" COALESCE(bol.NUMSERIE_BPE, '1') as numserie_bpe, ");
|
||||
sql.append(" CASE bpe.CODSTAT ");
|
||||
sql.append(" WHEN '100' THEN (CASE WHEN bpe.TIPOSUBSTITUICAO IS NULL THEN 'Autorizado' ELSE 'Substituído' END ) ");
|
||||
sql.append(" WHEN '102' THEN (CASE WHEN bpe.TIPOSUBSTITUICAO IS NOT NULL THEN 'Substituído' END) ");
|
||||
sql.append(" WHEN '135' THEN (CASE bpe.TIPOEVENTO WHEN '110111' THEN 'Cancelado' WHEN '110115' THEN 'Não embarcado' ELSE NULL END) ");
|
||||
sql.append(" WHEN '150' THEN 'Aut.Conting.' ");
|
||||
sql.append(" ELSE 'Rejeitado' END as status, ");
|
||||
|
||||
sql.append(" case bpe.codstat ");
|
||||
|
||||
sql.append(" when '100' then ( ");
|
||||
sql.append(" case ");
|
||||
sql.append(" when bpe.tiposubstituicao is null and bpeSub.bpe_id is null then 'Autorizado' ");
|
||||
sql.append(" when bpe.tiposubstituicao is not null then 'Autorizado/Substitução' ");
|
||||
sql.append(" when bpeSub.bpe_id is not null then 'Autorizado/Substituído' ");
|
||||
sql.append(" else 'Autorizado' ");
|
||||
sql.append(" end ");
|
||||
sql.append(" ) ");
|
||||
|
||||
sql.append(" when '102' then ( ");
|
||||
sql.append(" case ");
|
||||
sql.append(" when bpe.tiposubstituicao is not null then 'Substitução' ");
|
||||
sql.append(" when bpeSub.bpe_id is not null then 'Substituído' ");
|
||||
sql.append(" end ");
|
||||
sql.append(" ) ");
|
||||
|
||||
sql.append(" when '135' then ( ");
|
||||
sql.append(" case bpe.tipoevento ");
|
||||
sql.append(" when '110111' then 'Cancelado' ");
|
||||
sql.append(" when '110115' then 'Não embarcado' ");
|
||||
sql.append(" else '' ");
|
||||
sql.append(" end ");
|
||||
sql.append(" ) ");
|
||||
|
||||
sql.append(" when '150' then 'Aut.Conting.' ");
|
||||
|
||||
sql.append(" else 'Rejeitado' ");
|
||||
sql.append(" end as status, ");
|
||||
|
||||
sql.append(" CASE WHEN bpe.CODSTAT not in ('100','135') THEN bpe.motivo ELSE NULL END as obs, ");
|
||||
sql.append(" bpe.QRCODE, bpe.errocontingencia ");
|
||||
|
||||
sql.append(" FROM BPE bpe ");
|
||||
sql.append(" LEFT JOIN BPE bpeSub on bpeSub.bpesubstituicao_id = bpe.bpe_id and bpeSub.activo = 1 ");
|
||||
sql.append(" LEFT JOIN BOLETO bol ON bol.BOLETO_ID = bpe.BOLETO_ID and bpe.activo = 1 ");
|
||||
sql.append(" LEFT JOIN estado e ON e.CODIBGE = bpe.UF ");
|
||||
sql.append(" LEFT JOIN marca ma ON bol.MARCA_ID = ma.MARCA_ID ");
|
||||
|
@ -112,19 +139,21 @@ public class RelatorioBPe extends Relatorio {
|
|||
sql.append(" AND e.ESTADO_ID IN ( " + estados + " )");
|
||||
}
|
||||
|
||||
if (status != null && status.equals("A")) {
|
||||
sql.append(" AND bpe.CODSTAT = '100' AND bpe.TIPOSUBSTITUICAO IS NULL AND bol.ACTIVO = 1 ");
|
||||
} else if (status != null && status.equals("C")) {
|
||||
if (status != null && status.equals("A")) { //Autorizados
|
||||
sql.append(" AND bpe.CODSTAT = '100' AND bol.ACTIVO = 1 ");
|
||||
} else if (status != null && status.equals("C")) {//Cancelados
|
||||
sql.append(" AND bpe.CODSTAT = '135' AND bpe.TIPOEVENTO = '110111' AND bol.ACTIVO = 1 ");
|
||||
} else if (status != null && status.equals("S")) {
|
||||
} else if (status != null && status.equals("S")) {//Substituidos
|
||||
sql.append(" AND bpe.CODSTAT IN ('100', '102') AND bpeSub.BPE_ID IS NOT NULL AND bol.ACTIVO = 1 ");
|
||||
} else if (status != null && status.equals("SB")) {//Substituicao
|
||||
sql.append(" AND bpe.CODSTAT IN ('100', '102') AND bpe.TIPOSUBSTITUICAO IS NOT NULL AND bol.ACTIVO = 1 ");
|
||||
} else if (status != null && status.equals("NE")) {
|
||||
} else if (status != null && status.equals("NE")) {//Nao Embarcado
|
||||
sql.append(" AND bpe.CODSTAT = '135' AND bpe.TIPOEVENTO = '110115' AND bol.ACTIVO = 1 ");
|
||||
} else if (status != null && status.equals("R")) {
|
||||
} else if (status != null && status.equals("R")) {//Rejeitado
|
||||
sql.append(" AND bpe.CODSTAT NOT IN ('100','135','102','150') ");
|
||||
}else if (status != null && status.equals("AA")) {
|
||||
sql.append(" AND bpe.CODSTAT = '150' AND bpe.TIPOSUBSTITUICAO IS NULL AND bol.ACTIVO = 1 ");
|
||||
}else if (status != null && status.equals("RC")) {
|
||||
}else if (status != null && status.equals("AA")) {//Autorizado Contingencia
|
||||
sql.append(" AND bpe.CODSTAT = '150' AND bol.ACTIVO = 1 ");
|
||||
}else if (status != null && status.equals("RC")) {//Rejeitado Envio Contingencia
|
||||
sql.append(" AND bpe.CODSTAT IN ('-10','-20') AND bol.ACTIVO = 1 ");
|
||||
}
|
||||
if(StringUtils.isNotBlank(constanteService.buscarPorNomeConstante("RELATORIO_BPE_OTIMIZADO").getValorconstante()) && Boolean.parseBoolean(constanteService.buscarPorNomeConstante("RELATORIO_BPE_OTIMIZADO").getValorconstante())) {
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
<?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="RelatorioBPe" pageWidth="1270" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="1230" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="2de20ee0-535e-49d2-a7be-c24a30351d9f">
|
||||
<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="RelatorioBPe" pageWidth="1350" pageHeight="842" whenNoDataType="NoDataSection" columnWidth="1310" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="2de20ee0-535e-49d2-a7be-c24a30351d9f">
|
||||
<property name="ireport.zoom" value="0.75"/>
|
||||
<property name="ireport.x" value="211"/>
|
||||
<property name="ireport.x" value="271"/>
|
||||
<property name="ireport.y" value="0"/>
|
||||
<property name="net.sf.jasperreports.export.xls.exclude.origin.band.1" value="title"/>
|
||||
<property name="net.sf.jasperreports.export.xls.exclude.origin.keep.first.band.2" value="columnHeader"/>
|
||||
|
@ -25,7 +25,7 @@
|
|||
<title>
|
||||
<band height="79" splitType="Stretch">
|
||||
<textField pattern="" isBlankWhenNull="false">
|
||||
<reportElement mode="Transparent" x="0" y="0" width="937" height="41" forecolor="#000000" backcolor="#FFFFFF" uuid="da52f710-3882-4beb-ba6f-870e03f6800d"/>
|
||||
<reportElement mode="Transparent" x="0" y="0" width="1021" height="41" forecolor="#000000" backcolor="#FFFFFF" uuid="da52f710-3882-4beb-ba6f-870e03f6800d"/>
|
||||
<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" markup="none">
|
||||
<font fontName="SansSerif" size="16" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||
<paragraph lineSpacing="Single"/>
|
||||
|
@ -33,7 +33,7 @@
|
|||
<textFieldExpression><![CDATA[$P{NOME_RELATORIO}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField evaluationTime="Report" pattern="" isBlankWhenNull="false">
|
||||
<reportElement mode="Transparent" x="1207" y="25" width="21" height="16" forecolor="#000000" backcolor="#FFFFFF" uuid="2f4f1314-9363-4e6d-822f-c85c1890998b"/>
|
||||
<reportElement mode="Transparent" x="1289" y="25" width="21" height="16" forecolor="#000000" backcolor="#FFFFFF" uuid="2f4f1314-9363-4e6d-822f-c85c1890998b"/>
|
||||
<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"/>
|
||||
<paragraph lineSpacing="Single"/>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<textFieldExpression><![CDATA[$V{PAGE_NUMBER}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField pattern="" isBlankWhenNull="false">
|
||||
<reportElement mode="Transparent" x="939" y="42" width="289" height="15" forecolor="#000000" backcolor="#FFFFFF" uuid="c8a70b8d-369e-48ae-a911-a5d9692316f7"/>
|
||||
<reportElement mode="Transparent" x="1021" y="42" width="289" height="15" forecolor="#000000" backcolor="#FFFFFF" uuid="c8a70b8d-369e-48ae-a911-a5d9692316f7"/>
|
||||
<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" markup="none">
|
||||
<font fontName="SansSerif" size="10" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfEncoding="Cp1252" isPdfEmbedded="false"/>
|
||||
<paragraph lineSpacing="Single"/>
|
||||
|
@ -49,7 +49,7 @@
|
|||
<textFieldExpression><![CDATA[$R{cabecalho.impressorPor}+" "+$P{USUARIO}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField pattern="dd/MM/yyyy HH:mm" isBlankWhenNull="false">
|
||||
<reportElement mode="Transparent" x="1124" y="0" width="104" height="25" forecolor="#000000" backcolor="#FFFFFF" uuid="ad4bbfb8-582d-4aa2-904d-8dfe60e54442"/>
|
||||
<reportElement mode="Transparent" x="1206" y="0" width="104" height="25" forecolor="#000000" backcolor="#FFFFFF" uuid="ad4bbfb8-582d-4aa2-904d-8dfe60e54442"/>
|
||||
<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"/>
|
||||
<paragraph lineSpacing="Single"/>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField pattern="" isBlankWhenNull="false">
|
||||
<reportElement mode="Transparent" x="939" y="25" width="267" height="16" forecolor="#000000" backcolor="#FFFFFF" uuid="8601bf20-f5f8-4fed-9445-7adfe580d236"/>
|
||||
<reportElement mode="Transparent" x="1021" y="25" width="267" height="16" forecolor="#000000" backcolor="#FFFFFF" uuid="8601bf20-f5f8-4fed-9445-7adfe580d236"/>
|
||||
<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"/>
|
||||
<paragraph lineSpacing="Single"/>
|
||||
|
@ -65,24 +65,24 @@
|
|||
<textFieldExpression><![CDATA[$R{cabecalho.pagina}+" "+$V{PAGE_NUMBER}+" "+$R{cabecalho.de}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField>
|
||||
<reportElement x="939" y="0" width="185" height="25" uuid="b48a0903-0b2a-4ae5-ae04-811d097a9f91"/>
|
||||
<reportElement x="1021" y="0" width="185" height="25" uuid="b48a0903-0b2a-4ae5-ae04-811d097a9f91"/>
|
||||
<textElement textAlignment="Right">
|
||||
<font size="9" isBold="true"/>
|
||||
</textElement>
|
||||
<textFieldExpression><![CDATA[$R{cabecalho.dataHora}]]></textFieldExpression>
|
||||
</textField>
|
||||
<line>
|
||||
<reportElement x="-1" y="58" width="1231" height="1" uuid="3c577f75-c6d6-4c11-a846-bfe71a8a1b42"/>
|
||||
<reportElement x="-1" y="58" width="1311" height="1" uuid="3c577f75-c6d6-4c11-a846-bfe71a8a1b42"/>
|
||||
</line>
|
||||
<textField isStretchWithOverflow="true">
|
||||
<reportElement x="-1" y="59" width="1231" height="15" uuid="aff6535e-c25b-4f31-ad3a-baacc52e4974"/>
|
||||
<reportElement x="-1" y="59" width="1311" height="15" uuid="aff6535e-c25b-4f31-ad3a-baacc52e4974"/>
|
||||
<textElement verticalAlignment="Middle">
|
||||
<font size="10"/>
|
||||
</textElement>
|
||||
<textFieldExpression><![CDATA[$P{FILTROS}]]></textFieldExpression>
|
||||
</textField>
|
||||
<line>
|
||||
<reportElement positionType="Float" x="-1" y="78" width="1231" height="1" uuid="84641d2c-21a5-47f0-b4a8-afe7bf700cb6"/>
|
||||
<reportElement positionType="Float" x="-1" y="78" width="1311" height="1" uuid="84641d2c-21a5-47f0-b4a8-afe7bf700cb6"/>
|
||||
</line>
|
||||
</band>
|
||||
</title>
|
||||
|
@ -153,14 +153,14 @@
|
|||
<textFieldExpression><![CDATA[$R{label.serie}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField>
|
||||
<reportElement x="860" y="0" width="77" height="15" uuid="aaabe6ae-6466-4b39-8f39-b94460463dc8"/>
|
||||
<reportElement x="860" y="0" width="157" height="15" uuid="aaabe6ae-6466-4b39-8f39-b94460463dc8"/>
|
||||
<textElement>
|
||||
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
|
||||
</textElement>
|
||||
<textFieldExpression><![CDATA[$R{label.status}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField>
|
||||
<reportElement x="937" y="0" width="293" height="15" uuid="bdb50181-e913-4a43-9344-c599b323706a"/>
|
||||
<reportElement x="1017" y="0" width="293" height="15" uuid="bdb50181-e913-4a43-9344-c599b323706a"/>
|
||||
<textElement>
|
||||
<font size="10" isBold="false" pdfFontName="Helvetica-Bold"/>
|
||||
</textElement>
|
||||
|
@ -236,14 +236,14 @@
|
|||
<textFieldExpression><![CDATA[$F{numserie_bpe}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||
<reportElement stretchType="RelativeToTallestObject" x="860" y="0" width="77" height="15" isPrintWhenDetailOverflows="true" uuid="66eaa400-673d-4b37-b2ef-982910e6c78c"/>
|
||||
<reportElement stretchType="RelativeToTallestObject" x="860" y="0" width="157" height="15" isPrintWhenDetailOverflows="true" uuid="66eaa400-673d-4b37-b2ef-982910e6c78c"/>
|
||||
<textElement>
|
||||
<font size="9"/>
|
||||
</textElement>
|
||||
<textFieldExpression><![CDATA[$F{status}]]></textFieldExpression>
|
||||
</textField>
|
||||
<textField isStretchWithOverflow="true" isBlankWhenNull="true">
|
||||
<reportElement stretchType="RelativeToTallestObject" x="937" y="0" width="293" height="15" isPrintWhenDetailOverflows="true" uuid="7b8ce326-5e48-4b4f-ba2d-60fabfdc4119"/>
|
||||
<reportElement stretchType="RelativeToTallestObject" x="1017" y="0" width="293" height="15" isPrintWhenDetailOverflows="true" uuid="7b8ce326-5e48-4b4f-ba2d-60fabfdc4119"/>
|
||||
<textElement>
|
||||
<font size="9"/>
|
||||
</textElement>
|
||||
|
|
|
@ -1350,6 +1350,12 @@ editarEmpresaController.emiteDABpeVdaInternet.ajuda = Emite DABP-e Venda Interne
|
|||
editarEmpresaController.emiteDABpeVdaIntJ3.ajuda = Emite DABP-e Venda Internet J3
|
||||
editarEmpresaController.exigeClienteCompradorVdaCallCenter = Cliente Comprador Obrigatório Venda Call Center
|
||||
editarEmpresaController.exigeClienteCompradorVdaCallCenter.ajuda = Cliente Comprador Obrigatório Venda Call Center
|
||||
editarEmpresaController.habilitaIEDescentralizadaText.label = Permite Descentralizar Inscrição Estadual para Emissão BP-e por Origem
|
||||
editarEmpresaController.habilitaIEDescentralizada.label = Habilita Inscrição Estadual Descentralizada BP-e
|
||||
editarEmpresaController.origemIEDescentralizada.label = Origem Inscrição Estadual Descentralizada
|
||||
editarEmpresaController.MSG.origemIEDescentralizadaNaoInformada = A Origem da Inscrição Estadual Descentralizada não foi informada
|
||||
editarEmpresaController.MSG.origemIEDescentralizadaJaInformada = A Origem {0} da Inscrição Estadual Descentralizada já Informada para o Estado {1}
|
||||
editarEmpresaController.MSG.origemIEDescentralizadaUFIncompativel = UF da Origem da Inscrição Estadual Descentralizada selecionada incompatível
|
||||
|
||||
editarEmpresaController.contaBancaria.label = Cuentas Bancárias
|
||||
editarEmpresaController.contaBancaria.instiFinanceira = Instituición financiera
|
||||
|
@ -8013,12 +8019,21 @@ relatorioBPeController.lbDtFim.value = Data Fim
|
|||
relatorioBPeController.lbUF.value = UF
|
||||
relatorioBPeController.lbStatus.value = Status
|
||||
relatorioBPeController.lbAutorizado.value = Autorizado
|
||||
relatorioBPeController.lbAutorizado.value.tooltiptext = Exibe os bilhetes Autorizados, Autorizados e Substituídos, Autorizados e Substituição
|
||||
relatorioBPeController.lbRejeitado.value = Rejeitado
|
||||
relatorioBPeController.lbRejeitado.value.tooltiptext = Exibe os bilhetes Rejeitados
|
||||
relatorioBPeController.lbCancelado.value = Cancelado
|
||||
relatorioBPeController.lbCancelado.value.tooltiptext = Exibe os bilhetes Cancelados
|
||||
relatorioBPeController.lbSubstituido.value = Substituído
|
||||
relatorioBPeController.lbSubstituido.value.tooltiptext = Exibe os bilhetes Autorizados e depois foram Substituídos
|
||||
relatorioBPeController.lbSubstituicao.value = Substituição
|
||||
relatorioBPeController.lbSubstituicao.value.tooltiptext = Exibe os bilhetes Autorizados a partir de uma Substituição
|
||||
relatorioBPeController.lbNaoEmbarcado.value = Não embarcado
|
||||
relatorioBPeController.lbNaoEmbarcado.value.tooltiptext = Exibe os bilhetes Não Embarcados
|
||||
relatorioBPeController.lbAutorConting.value = Autorizado em Contingência
|
||||
relatorioBPeController.lbAutorConting.value.tooltiptext = Exibe os bilhetes Autorizados em Contingência
|
||||
relatorioBPeController.lbRejeitadoEnvioContingencia.value = Rejeitado Envio em Contingência
|
||||
relatorioBPeController.lbRejeitadoEnvioContingencia.value.tooltiptext = Exibe os bilhetes Rejeitados com Envio em Contingência
|
||||
relatorioBPeController.MSG.informarData = Favor informar data inicial e final.
|
||||
relatorioBPeController.MSG.dataInicialMaiorQueFinal = Data de inicio não pode ser maior do que a final.
|
||||
|
||||
|
|
|
@ -1474,6 +1474,12 @@ editarEmpresaController.emiteDABpeVdaInternet.ajuda = Emite DABP-e Venda Interne
|
|||
editarEmpresaController.emiteDABpeVdaIntJ3.ajuda = Emite DABP-e Venda Internet J3
|
||||
editarEmpresaController.exigeClienteCompradorVdaCallCenter = Cliente Comprador Obrigatório Venda Call Center
|
||||
editarEmpresaController.exigeClienteCompradorVdaCallCenter.ajuda = Cliente Comprador Obrigatório Venda Call Center
|
||||
editarEmpresaController.habilitaIEDescentralizadaText.label = Permite Descentralizar Inscrição Estadual para Emissão BP-e por Origem
|
||||
editarEmpresaController.habilitaIEDescentralizada.label = Habilita Inscrição Estadual Descentralizada BP-e
|
||||
editarEmpresaController.origemIEDescentralizada.label = Origem Inscrição Estadual Descentralizada
|
||||
editarEmpresaController.MSG.origemIEDescentralizadaNaoInformada = A Origem da Inscrição Estadual Descentralizada não foi informada
|
||||
editarEmpresaController.MSG.origemIEDescentralizadaJaInformada = A Origem {0} da Inscrição Estadual Descentralizada já Informada para o Estado {1}
|
||||
editarEmpresaController.MSG.origemIEDescentralizadaUFIncompativel = UF da Origem da Inscrição Estadual Descentralizada selecionada incompatível
|
||||
|
||||
editarEmpresaController.contaBancaria.label = Contas Bancárias
|
||||
editarEmpresaController.contaBancaria.instiFinanceira = Instituição Financeira
|
||||
|
@ -8541,12 +8547,22 @@ relatorioBPeController.lbDtFim.value = Data Fim
|
|||
relatorioBPeController.lbUF.value = UF
|
||||
relatorioBPeController.lbStatus.value = Status
|
||||
relatorioBPeController.lbAutorizado.value = Autorizado
|
||||
relatorioBPeController.lbAutorizado.value.tooltiptext = Exibe os bilhetes Autorizados, Autorizados e Substituídos, Autorizados e Substituição
|
||||
relatorioBPeController.lbRejeitado.value = Rejeitado
|
||||
relatorioBPeController.lbRejeitado.value.tooltiptext = Exibe os bilhetes Rejeitados
|
||||
relatorioBPeController.lbCancelado.value = Cancelado
|
||||
relatorioBPeController.lbCancelado.value.tooltiptext = Exibe os bilhetes Cancelados
|
||||
relatorioBPeController.lbSubstituido.value = Substituído
|
||||
relatorioBPeController.lbSubstituido.value.tooltiptext = Exibe os bilhetes Autorizados e depois foram Substituídos
|
||||
relatorioBPeController.lbSubstituicao.value = Substituição
|
||||
relatorioBPeController.lbSubstituicao.value.tooltiptext = Exibe os bilhetes Autorizados a partir de uma Substituição
|
||||
relatorioBPeController.lbNaoEmbarcado.value = Não embarcado
|
||||
relatorioBPeController.lbNaoEmbarcado.value.tooltiptext = Exibe os bilhetes Não Embarcados
|
||||
relatorioBPeController.lbAutorConting.value = Autorizado em Contingência
|
||||
relatorioBPeController.lbAutorConting.value.tooltiptext = Exibe os bilhetes Autorizados em Contingência
|
||||
relatorioBPeController.lbRejeitadoEnvioContingencia.value = Rejeitado Envio em Contingência
|
||||
relatorioBPeController.lbRejeitadoEnvioContingencia.value.tooltiptext = Exibe os bilhetes Rejeitados com Envio em Contingência
|
||||
|
||||
relatorioBPeController.MSG.informarData = Favor informar data inicial e final.
|
||||
relatorioBPeController.MSG.dataInicialMaiorQueFinal = Data de inicio não pode ser maior do que a final.
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<zk xmlns="http://www.zkoss.org/2005/zul">
|
||||
<window id="winFiltroRelatorioBPe" apply="${relatorioBPeController}"
|
||||
contentStyle="overflow:auto"
|
||||
height="352px" width="940px" border="normal">
|
||||
height="375px" width="600px" border="normal">
|
||||
<grid fixedLayout="true">
|
||||
<columns>
|
||||
<column width="10%" />
|
||||
|
@ -50,13 +50,14 @@
|
|||
<label
|
||||
value="${c:l('relatorioBPeController.lbStatus.value')}" />
|
||||
<radiogroup Id="rdbGroup">
|
||||
<radio id="rdbAutorizado" value="A" label="${c:l('relatorioBPeController.lbAutorizado.value')}" selected="true"/>
|
||||
<radio id="rdbRejeitado" value="R" label="${c:l('relatorioBPeController.lbRejeitado.value')}" />
|
||||
<radio id="rdbCancelado" value="C" label="${c:l('relatorioBPeController.lbCancelado.value')}" />
|
||||
<radio id="rdbSubstituido" value="S" label="${c:l('relatorioBPeController.lbSubstituido.value')}" />
|
||||
<radio id="rdbNaoEmbarcado" value="NE" label="${c:l('relatorioBPeController.lbNaoEmbarcado.value')}" />
|
||||
<radio id="rdbAutorConting" value="AA" label="${c:l('relatorioBPeController.lbAutorConting.value')}" />
|
||||
<radio id="rdbRejeitadoEnvioContingencia" value="RC" label="${c:l('relatorioBPeController.lbRejeitadoEnvioContingencia.value')}" />
|
||||
<radio id="rdbAutorizado" value="A" label="${c:l('relatorioBPeController.lbAutorizado.value')}" selected="true" tooltiptext="${c:l('relatorioBPeController.lbAutorizado.value.tooltiptext')}"/>
|
||||
<radio id="rdbRejeitado" value="R" label="${c:l('relatorioBPeController.lbRejeitado.value')}" tooltiptext="${c:l('relatorioBPeController.lbRejeitado.value.tooltiptext')}" />
|
||||
<radio id="rdbCancelado" value="C" label="${c:l('relatorioBPeController.lbCancelado.value')}" tooltiptext="${c:l('relatorioBPeController.lbCancelado.value.tooltiptext')}" />
|
||||
<radio id="rdbSubstituido" value="S" label="${c:l('relatorioBPeController.lbSubstituido.value')}" tooltiptext="${c:l('relatorioBPeController.lbSubstituido.value.tooltiptext')}" />
|
||||
<radio id="rdbSubstituicao" value="SB" label="${c:l('relatorioBPeController.lbSubstituicao.value')}" tooltiptext="${c:l('relatorioBPeController.lbSubstituicao.value.tooltiptext')}" />
|
||||
<radio id="rdbNaoEmbarcado" value="NE" label="${c:l('relatorioBPeController.lbNaoEmbarcado.value')}" tooltiptext="${c:l('relatorioBPeController.lbNaoEmbarcado.value.tooltiptext')}" />
|
||||
<radio id="rdbAutorConting" value="AA" label="${c:l('relatorioBPeController.lbAutorConting.value')}" tooltiptext="${c:l('relatorioBPeController.lbAutorConting.value.tooltiptext')}" />
|
||||
<radio id="rdbRejeitadoEnvioContingencia" value="RC" label="${c:l('relatorioBPeController.lbRejeitadoEnvioContingencia.value')}" tooltiptext="${c:l('relatorioBPeController.lbRejeitadoEnvioContingencia.value.tooltiptext')}" />
|
||||
</radiogroup>
|
||||
</row>
|
||||
|
||||
|
|
Loading…
Reference in New Issue