fixes bug#23716
qua: dev:lucas git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@110143 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
b10c201fb6
commit
00f7c64ddb
|
@ -0,0 +1,32 @@
|
|||
#geral
|
||||
msg.noData=Não foi possivel obter dados com os parâmetros informados.
|
||||
|
||||
#Labels cabeçalho
|
||||
cabecalho.relatorio=Relatório:
|
||||
cabecalho.periodo=Período:
|
||||
cabecalho.periodoA=à
|
||||
cabecalho.dataHora=Data/Hora:
|
||||
cabecalho.impressorPor=Impressor por:
|
||||
cabecalho.pagina=Página
|
||||
cabecalho.de=de
|
||||
cabecalho.filtros=Filtros:
|
||||
|
||||
label.dataVenda=Data Venda
|
||||
label.horaVenda=Hora Venda
|
||||
label.origem=Origem
|
||||
label.destino=Destino
|
||||
label.dataViagem=Data Viagem
|
||||
label.valorBPe=Valor
|
||||
label.origemPV= Loc. Venda
|
||||
label.valortarifa=Tarifa
|
||||
label.valortaxa=Taxa
|
||||
label.valorpedagio=Pedágio
|
||||
label.valorseguro=Seguro
|
||||
label.valoroutros=Outros
|
||||
label.chaveAcesso=Chave Acesso
|
||||
label.protocolo=Protocolo
|
||||
label.numBPe=Núm. BPe
|
||||
label.serie=Série
|
||||
label.status=Status
|
||||
label.obs=Observação
|
||||
header.filtro.total=Total Geral:
|
|
@ -0,0 +1,32 @@
|
|||
#geral
|
||||
msg.noData=Não foi possivel obter dados com os parâmetros informados.
|
||||
|
||||
#Labels cabeçalho
|
||||
cabecalho.relatorio=Relatório:
|
||||
cabecalho.periodo=Período:
|
||||
cabecalho.periodoA=à
|
||||
cabecalho.dataHora=Data/Hora:
|
||||
cabecalho.impressorPor=Impressor por:
|
||||
cabecalho.pagina=Página
|
||||
cabecalho.de=de
|
||||
cabecalho.filtros=Filtros:
|
||||
header.filtro.total=Total Geral:
|
||||
|
||||
label.dataVenda=Data Venda
|
||||
label.horaVenda=Hora Venda
|
||||
label.origem=Origem
|
||||
label.destino=Destino
|
||||
label.dataViagem=Data Viagem
|
||||
label.valorBPe=Valor
|
||||
label.origemPV= Loc. Venda
|
||||
label.valortarifa=Tarifa
|
||||
label.valortaxa=Taxa
|
||||
label.valorpedagio=Pedágio
|
||||
label.valorseguro=Seguro
|
||||
label.valoroutros=Outros
|
||||
label.chaveAcesso=Chave Acesso
|
||||
label.protocolo=Protocolo
|
||||
label.numBPe=Núm. BPe
|
||||
label.serie=Série
|
||||
label.status=Status
|
||||
label.obs=Observação
|
|
@ -26,7 +26,7 @@ import org.zkoss.zul.Textbox;
|
|||
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
||||
import com.rjconsultores.ventaboletos.entidad.Estado;
|
||||
import com.rjconsultores.ventaboletos.relatorios.impl.RelatorioBPe;
|
||||
import com.rjconsultores.ventaboletos.relatorios.impl.RelatorioBPeNumeracaoReuso;
|
||||
import com.rjconsultores.ventaboletos.relatorios.impl.RelatorioBpeNumeracaoReuso;
|
||||
import com.rjconsultores.ventaboletos.relatorios.impl.RelatorioBPeRejeitadoEnvioContingencia;
|
||||
import com.rjconsultores.ventaboletos.relatorios.utilitarios.Relatorio;
|
||||
import com.rjconsultores.ventaboletos.service.EmpresaService;
|
||||
|
@ -170,7 +170,7 @@ public class RelatorioBPeController extends MyGenericForwardComposer {
|
|||
if(rdbGroup.getSelectedItem().getValue().equals("RC") || rdbGroup.getSelectedItem().getValue().equals("R")) {
|
||||
relatorio = new RelatorioBPeRejeitadoEnvioContingencia(parametros, dataSourceRead.getConnection());
|
||||
} else if(rdbGroup.getSelectedItem().getValue().equals("NR")) {
|
||||
relatorio = new RelatorioBPeNumeracaoReuso(parametros, dataSourceRead.getConnection());
|
||||
relatorio = new RelatorioBpeNumeracaoReuso(parametros, dataSourceRead.getConnection());
|
||||
}
|
||||
else {
|
||||
relatorio = new RelatorioBPe(parametros, dataSourceRead.getConnection());
|
||||
|
|
Loading…
Reference in New Issue