fixes bug#AL-1786
parent
e8a74f7b33
commit
fa713ecb7c
20
pom.xml
20
pom.xml
|
@ -3,7 +3,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ventaboletosadm</artifactId>
|
<artifactId>ventaboletosadm</artifactId>
|
||||||
<version>1.0.17</version>
|
<version>1.0.21</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
|
@ -55,13 +55,13 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ModelWeb</artifactId>
|
<artifactId>ModelWeb</artifactId>
|
||||||
<version>1.0.13</version>
|
<version>1.0.16</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>Flyway</artifactId>
|
<artifactId>Flyway</artifactId>
|
||||||
<version>1.0.5</version>
|
<version>1.0.7</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -118,24 +118,26 @@
|
||||||
<version>3.14.0.Final</version>
|
<version>3.14.0.Final</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jboss.spec</groupId>
|
<groupId>javax.servlet</groupId>
|
||||||
<artifactId>jboss-javaee-all-6.0</artifactId>
|
<artifactId>javax.servlet-api</artifactId>
|
||||||
<version>3.0.3.Final</version>
|
<version>4.0.0</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-beanutils</groupId>
|
<groupId>commons-beanutils</groupId>
|
||||||
<artifactId>commons-beanutils</artifactId>
|
<artifactId>commons-beanutils</artifactId>
|
||||||
<version>1.8.2</version>
|
<version>1.9.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-codec</groupId>
|
<groupId>commons-codec</groupId>
|
||||||
<artifactId>commons-codec</artifactId>
|
<artifactId>commons-codec</artifactId>
|
||||||
<version>1.10</version>
|
<version>1.10</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.zkoss.common</groupId>
|
<groupId>org.zkoss.common</groupId>
|
||||||
<artifactId>zcommon</artifactId>
|
<artifactId>zcommon</artifactId>
|
||||||
|
|
|
@ -20,6 +20,7 @@ import net.sf.jasperreports.engine.JasperFillManager;
|
||||||
import net.sf.jasperreports.engine.JasperPrint;
|
import net.sf.jasperreports.engine.JasperPrint;
|
||||||
import net.sf.jasperreports.engine.export.JExcelApiExporter;
|
import net.sf.jasperreports.engine.export.JExcelApiExporter;
|
||||||
import net.sf.jasperreports.engine.export.JExcelApiExporterParameter;
|
import net.sf.jasperreports.engine.export.JExcelApiExporterParameter;
|
||||||
|
import net.sf.jasperreports.engine.export.JRXlsExporter;
|
||||||
import net.sf.jasperreports.engine.util.JRProperties;
|
import net.sf.jasperreports.engine.util.JRProperties;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -173,6 +174,38 @@ public class RenderRelatorioJasper {
|
||||||
exporterXLS.exportReport();
|
exporterXLS.exportReport();
|
||||||
return output.toByteArray();
|
return output.toByteArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected byte[] renderXlsNovo(boolean isCustomXls) throws Exception {
|
||||||
|
JRXlsExporter exporterXLS = new JRXlsExporter();
|
||||||
|
ByteArrayOutputStream output = new ByteArrayOutputStream();
|
||||||
|
/*
|
||||||
|
// As duas propriedades são para quando o arquivo xls chegar no máximo de linhas pular para a próxima aba do arquivo mantis #11294
|
||||||
|
exporterXLS.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.TRUE);
|
||||||
|
exporterXLS.setParameter(JRXlsExporterParameter.MAXIMUM_ROWS_PER_SHEET, 65500);
|
||||||
|
|
||||||
|
exporterXLS.setParameter(XlsExporterConfiguration.JASPER_PRINT, this.jasperPrint);
|
||||||
|
exporterXLS.setParameter(JRXlsExporterParameter.OUTPUT_STREAM, output);
|
||||||
|
|
||||||
|
exporterXLS.setExporterInput(new SimpleExporterInput(jasperPrint));
|
||||||
|
exporterXLS.setExporterOutput(new SimpleOutputStreamExporterOutput(destFile));
|
||||||
|
SimpleXlsReportConfiguration configuration = new SimpleXlsReportConfiguration();
|
||||||
|
configuration.setOnePagePerSheet(false);
|
||||||
|
configuration.setRemoveEmptySpaceBetweenRows(true);
|
||||||
|
exporter.setConfiguration(configuration);
|
||||||
|
|
||||||
|
if (!isCustomXls) {
|
||||||
|
exporterXLS.setParameter(JExcelApiExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.FALSE);
|
||||||
|
exporterXLS.setParameter(JExcelApiExporterParameter.IS_DETECT_CELL_TYPE, Boolean.TRUE);
|
||||||
|
exporterXLS.setParameter(JExcelApiExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE);
|
||||||
|
exporterXLS.setParameter(JExcelApiExporterParameter.IS_REMOVE_EMPTY_SPACE_BETWEEN_ROWS, Boolean.TRUE);
|
||||||
|
exporterXLS.setParameter(JExcelApiExporterParameter.IS_REMOVE_EMPTY_SPACE_BETWEEN_COLUMNS, Boolean.TRUE);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
// collapseRowSpan
|
||||||
|
// JRXlsExporterParameter.
|
||||||
|
exporterXLS.exportReport();
|
||||||
|
return output.toByteArray();
|
||||||
|
}
|
||||||
|
|
||||||
protected byte[] renderPdf() throws Exception {
|
protected byte[] renderPdf() throws Exception {
|
||||||
return JasperExportManager.exportReportToPdf(this.jasperPrint);
|
return JasperExportManager.exportReportToPdf(this.jasperPrint);
|
||||||
|
|
|
@ -73,6 +73,7 @@ import com.rjconsultores.ventaboletos.entidad.ComEmpFormapago;
|
||||||
import com.rjconsultores.ventaboletos.entidad.ComEmpTipoEventoExtra;
|
import com.rjconsultores.ventaboletos.entidad.ComEmpTipoEventoExtra;
|
||||||
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
import com.rjconsultores.ventaboletos.entidad.Empresa;
|
||||||
import com.rjconsultores.ventaboletos.entidad.EmpresaAdyenConfig;
|
import com.rjconsultores.ventaboletos.entidad.EmpresaAdyenConfig;
|
||||||
|
import com.rjconsultores.ventaboletos.entidad.EmpresaCieloLinkConfig;
|
||||||
import com.rjconsultores.ventaboletos.entidad.EmpresaContaBancaria;
|
import com.rjconsultores.ventaboletos.entidad.EmpresaContaBancaria;
|
||||||
import com.rjconsultores.ventaboletos.entidad.EmpresaEmail;
|
import com.rjconsultores.ventaboletos.entidad.EmpresaEmail;
|
||||||
import com.rjconsultores.ventaboletos.entidad.EmpresaEmailConfig;
|
import com.rjconsultores.ventaboletos.entidad.EmpresaEmailConfig;
|
||||||
|
@ -93,6 +94,7 @@ import com.rjconsultores.ventaboletos.exception.BusinessException;
|
||||||
import com.rjconsultores.ventaboletos.service.CategoriaService;
|
import com.rjconsultores.ventaboletos.service.CategoriaService;
|
||||||
import com.rjconsultores.ventaboletos.service.CiudadService;
|
import com.rjconsultores.ventaboletos.service.CiudadService;
|
||||||
import com.rjconsultores.ventaboletos.service.EmpresaAdyenConfigService;
|
import com.rjconsultores.ventaboletos.service.EmpresaAdyenConfigService;
|
||||||
|
import com.rjconsultores.ventaboletos.service.EmpresaCieloLinkService;
|
||||||
import com.rjconsultores.ventaboletos.service.EmpresaEmailConfigService;
|
import com.rjconsultores.ventaboletos.service.EmpresaEmailConfigService;
|
||||||
import com.rjconsultores.ventaboletos.service.EmpresaEmailEComerceService;
|
import com.rjconsultores.ventaboletos.service.EmpresaEmailEComerceService;
|
||||||
import com.rjconsultores.ventaboletos.service.EmpresaEmailFlexBusService;
|
import com.rjconsultores.ventaboletos.service.EmpresaEmailFlexBusService;
|
||||||
|
@ -157,6 +159,8 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
@Autowired
|
@Autowired
|
||||||
private EmpresaEmailFlexBusService empresaEmailFlexBusService;
|
private EmpresaEmailFlexBusService empresaEmailFlexBusService;
|
||||||
@Autowired
|
@Autowired
|
||||||
|
private EmpresaCieloLinkService empresaCieloLinkService;
|
||||||
|
@Autowired
|
||||||
private EmpresaSaferConfigService empresaSaferConfigService;
|
private EmpresaSaferConfigService empresaSaferConfigService;
|
||||||
@Autowired
|
@Autowired
|
||||||
private EmpresaAdyenConfigService empresaAdyenConfigService;
|
private EmpresaAdyenConfigService empresaAdyenConfigService;
|
||||||
|
@ -166,6 +170,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
private EmpresaEmailEComerce empresaEmailEComerce;
|
private EmpresaEmailEComerce empresaEmailEComerce;
|
||||||
private EmpresaEmailConfig empresaEmailConfig;
|
private EmpresaEmailConfig empresaEmailConfig;
|
||||||
private EmpresaEmailFlexBus empresaEmailFlexBus;
|
private EmpresaEmailFlexBus empresaEmailFlexBus;
|
||||||
|
private EmpresaCieloLinkConfig empresaCieloLinkConfig;
|
||||||
private EmpresaSaferConfig empresaSaferConfig;
|
private EmpresaSaferConfig empresaSaferConfig;
|
||||||
private EmpresaAdyenConfig empresaAdyenConfig;
|
private EmpresaAdyenConfig empresaAdyenConfig;
|
||||||
private MyListbox empresaList;
|
private MyListbox empresaList;
|
||||||
|
@ -206,8 +211,19 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
private CKeditor messageCupomEmbarqueFlexBus;
|
private CKeditor messageCupomEmbarqueFlexBus;
|
||||||
private MyComboboxEstandar cmbTipoAutorizacaoFlexBus;
|
private MyComboboxEstandar cmbTipoAutorizacaoFlexBus;
|
||||||
|
|
||||||
private Textbox textAssuntoECommerce;
|
//CieloLink
|
||||||
|
private Textbox txtClientId;
|
||||||
|
private Textbox txtMerchantId;
|
||||||
|
private Textbox txtSecret;
|
||||||
|
private Textbox txtMinutosCancela;
|
||||||
|
private Textbox txtCieloUrl;
|
||||||
|
|
||||||
|
//eRede
|
||||||
|
private Checkbox chkRedeProducao;
|
||||||
|
private Textbox txtFiliation;
|
||||||
|
private Textbox txtToken;
|
||||||
|
|
||||||
|
private Textbox textAssuntoECommerce;
|
||||||
private Radio rdgFechaVenta;
|
private Radio rdgFechaVenta;
|
||||||
private Radio rdgFechaSalida;
|
private Radio rdgFechaSalida;
|
||||||
private Radio rdgRestringeZSim;
|
private Radio rdgRestringeZSim;
|
||||||
|
@ -417,6 +433,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
lsEstados = estadoService.buscarNotInEmpresaImposto(empresa);
|
lsEstados = estadoService.buscarNotInEmpresaImposto(empresa);
|
||||||
lsTodosEstados = estadoService.obtenerTodos();
|
lsTodosEstados = estadoService.obtenerTodos();
|
||||||
|
|
||||||
lsCidades = new ArrayList<Ciudad>();
|
lsCidades = new ArrayList<Ciudad>();
|
||||||
lsBanco = instFinanceiraService.obtenerTodos();
|
lsBanco = instFinanceiraService.obtenerTodos();
|
||||||
|
|
||||||
|
@ -429,6 +446,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
if (empresa != null && empresa.getEmpresaId() != null) {
|
if (empresa != null && empresa.getEmpresaId() != null) {
|
||||||
empresaEmailFlexBus = empresaEmailFlexBusService.buscarPorEmpresa(empresa);
|
empresaEmailFlexBus = empresaEmailFlexBusService.buscarPorEmpresa(empresa);
|
||||||
|
empresaCieloLinkConfig = empresaCieloLinkService.buscarPorEmpresa(empresa).orElse(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
super.doAfterCompose(comp);
|
super.doAfterCompose(comp);
|
||||||
|
@ -454,6 +472,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
btnAdicionarEstadoImposto.setVisible(true);
|
btnAdicionarEstadoImposto.setVisible(true);
|
||||||
btnAdicionarInscEstadual.setVisible(true);
|
btnAdicionarInscEstadual.setVisible(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empresaEmailConfig != null) {
|
if (empresaEmailConfig != null) {
|
||||||
if(empresaEmailConfig.getIndAutenticacao()){
|
if(empresaEmailConfig.getIndAutenticacao()){
|
||||||
chkAutenticacao.setChecked(true);
|
chkAutenticacao.setChecked(true);
|
||||||
|
@ -486,6 +505,14 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
chkAutenticacaoFlexBus.setChecked(true);
|
chkAutenticacaoFlexBus.setChecked(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empresaCieloLinkConfig != null) {
|
||||||
|
txtClientId.setText(empresaCieloLinkConfig.getClientId());
|
||||||
|
txtMerchantId.setText(empresaCieloLinkConfig.getMerchantId());
|
||||||
|
txtSecret.setText(empresaCieloLinkConfig.getSecret());
|
||||||
|
txtCieloUrl.setText(empresaCieloLinkConfig.getUrl());
|
||||||
|
txtMinutosCancela.setText(empresaCieloLinkConfig.getMinutosCancela().toString());
|
||||||
|
}
|
||||||
|
|
||||||
if (empresaSaferConfig != null) {
|
if (empresaSaferConfig != null) {
|
||||||
txtPartnerId.setText(empresaSaferConfig.getPartnerId());
|
txtPartnerId.setText(empresaSaferConfig.getPartnerId());
|
||||||
txtContractId.setText(empresaSaferConfig.getContractId());
|
txtContractId.setText(empresaSaferConfig.getContractId());
|
||||||
|
@ -1012,6 +1039,16 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
preencheInformacoesEmpresaEmailFlexBus();
|
preencheInformacoesEmpresaEmailFlexBus();
|
||||||
empresaEmailFlexBusService.actualizacion(empresaEmailFlexBus);
|
empresaEmailFlexBusService.actualizacion(empresaEmailFlexBus);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empresaCieloLinkConfig == null) {
|
||||||
|
empresaCieloLinkConfig = new EmpresaCieloLinkConfig();
|
||||||
|
empresaCieloLinkConfig.setEmpresa(empresa);
|
||||||
|
preencheInformacoesCieloLinkConfig();
|
||||||
|
empresaCieloLinkConfig = empresaCieloLinkService.suscribir(empresaCieloLinkConfig);
|
||||||
|
} else {
|
||||||
|
preencheInformacoesCieloLinkConfig();
|
||||||
|
empresaCieloLinkService.actualizacion(empresaCieloLinkConfig);
|
||||||
|
}
|
||||||
|
|
||||||
if (empresaEmail == null) {
|
if (empresaEmail == null) {
|
||||||
empresaEmail = new EmpresaEmail();
|
empresaEmail = new EmpresaEmail();
|
||||||
|
@ -1131,6 +1168,19 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
empresaSaferConfig.setCertificado(certificado);
|
empresaSaferConfig.setCertificado(certificado);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void preencheInformacoesCieloLinkConfig() {
|
||||||
|
empresaCieloLinkConfig.setClientId(txtClientId.getValue());
|
||||||
|
empresaCieloLinkConfig.setMerchantId(txtMerchantId.getValue());
|
||||||
|
empresaCieloLinkConfig.setSecret(txtSecret.getValue());
|
||||||
|
empresaCieloLinkConfig.setUrl(txtCieloUrl.getValue());
|
||||||
|
|
||||||
|
empresaCieloLinkConfig.setMinutosCancela(
|
||||||
|
StringUtils.isEmpty(txtMinutosCancela.getValue())?
|
||||||
|
180:
|
||||||
|
Integer.parseInt(txtMinutosCancela.getValue())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
private boolean validarEmail() {
|
private boolean validarEmail() {
|
||||||
if (txtEmail.getText() == null || txtEmail.getText().isEmpty()) {
|
if (txtEmail.getText() == null || txtEmail.getText().isEmpty()) {
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -58,6 +58,7 @@ import org.zkoss.zk.ui.event.UploadEvent;
|
||||||
import org.zkoss.zk.ui.util.Clients;
|
import org.zkoss.zk.ui.util.Clients;
|
||||||
import org.zkoss.zkplus.databind.BindingListModel;
|
import org.zkoss.zkplus.databind.BindingListModel;
|
||||||
import org.zkoss.zkplus.databind.BindingListModelList;
|
import org.zkoss.zkplus.databind.BindingListModelList;
|
||||||
|
import org.zkoss.zul.Bandbox;
|
||||||
import org.zkoss.zul.Button;
|
import org.zkoss.zul.Button;
|
||||||
import org.zkoss.zul.Checkbox;
|
import org.zkoss.zul.Checkbox;
|
||||||
import org.zkoss.zul.Combobox;
|
import org.zkoss.zul.Combobox;
|
||||||
|
@ -74,10 +75,9 @@ import org.zkoss.zul.Messagebox;
|
||||||
import org.zkoss.zul.Paging;
|
import org.zkoss.zul.Paging;
|
||||||
import org.zkoss.zul.Radio;
|
import org.zkoss.zul.Radio;
|
||||||
import org.zkoss.zul.Row;
|
import org.zkoss.zul.Row;
|
||||||
|
import org.zkoss.zul.Tab;
|
||||||
import org.zkoss.zul.Textbox;
|
import org.zkoss.zul.Textbox;
|
||||||
import org.zkoss.zul.api.Bandbox;
|
import org.zkoss.zul.Timebox;
|
||||||
import org.zkoss.zul.api.Tab;
|
|
||||||
import org.zkoss.zul.api.Timebox;
|
|
||||||
|
|
||||||
import com.rjconsultores.ventaboletos.constantes.Constantes;
|
import com.rjconsultores.ventaboletos.constantes.Constantes;
|
||||||
import com.rjconsultores.ventaboletos.constantes.ConstantesFuncionSistema;
|
import com.rjconsultores.ventaboletos.constantes.ConstantesFuncionSistema;
|
||||||
|
@ -183,7 +183,6 @@ import com.rjconsultores.ventaboletos.web.utilerias.render.RenderCategoriaBloque
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderCobrancaAdcPuntoVenta;
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderCobrancaAdcPuntoVenta;
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderCobrancaAdcicionalHistorico;
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderCobrancaAdcicionalHistorico;
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderEmpresaBloquear;
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderEmpresaBloquear;
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderFormaPago;
|
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderHistoricoFormaPago;
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderHistoricoFormaPago;
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderHistoricoFormaPagoSelecao;
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderHistoricoFormaPagoSelecao;
|
||||||
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderParadaPtoVtaCheckin;
|
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderParadaPtoVtaCheckin;
|
||||||
|
|
|
@ -247,8 +247,6 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
private DiagramaAutobusService diagramaAutoBusService;
|
private DiagramaAutobusService diagramaAutoBusService;
|
||||||
|
|
||||||
private Integer numAssentoIntReservaEspecial;
|
private Integer numAssentoIntReservaEspecial;
|
||||||
|
|
||||||
private List<TipoOcupacion> tipoOcupacoesSemValidacaoList;
|
|
||||||
|
|
||||||
public void aplicarMascara() {
|
public void aplicarMascara() {
|
||||||
Clients.evalJavaScript(
|
Clients.evalJavaScript(
|
||||||
|
@ -299,8 +297,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
lsLinhas = rutaService.obtenerTodos();
|
lsLinhas = rutaService.obtenerTodos();
|
||||||
lsEmpresas = empresaService.obtenerTodos();
|
lsEmpresas = empresaService.obtenerTodos();
|
||||||
usaCPFComoFidelidade = ApplicationProperties.getInstance().isCustomHabilitado(CustomEnum.USA_CPF_COMO_FIDELIDADE.getDescricao());
|
usaCPFComoFidelidade = ApplicationProperties.getInstance().isCustomHabilitado(CustomEnum.USA_CPF_COMO_FIDELIDADE.getDescricao());
|
||||||
tipoOcupacoesSemValidacaoList = constanteService.BuscarTipoOcupacaoSemValidacao();
|
|
||||||
|
|
||||||
if (usaCPFComoFidelidade) {
|
if (usaCPFComoFidelidade) {
|
||||||
txtNumFidelidade.setDisabled(true);
|
txtNumFidelidade.setDisabled(true);
|
||||||
btnAdicionarFidelidade.setDisabled(true);
|
btnAdicionarFidelidade.setDisabled(true);
|
||||||
|
@ -602,21 +599,11 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setValidadoresCPF() {
|
private void setValidadoresCPF() {
|
||||||
|
|
||||||
if(isNaoValidarCamposOcupacao()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
txtNumRfc.setMaxlength(11);
|
txtNumRfc.setMaxlength(11);
|
||||||
txtNumRfc.setConstraint("/[0-9]{11}/ : " + Labels.getLabel("editarClienteController.MSG.validacaoCPF"));
|
txtNumRfc.setConstraint("/[0-9]{11}/ : " + Labels.getLabel("editarClienteController.MSG.validacaoCPF"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setValidadoresCPF2() {
|
private void setValidadoresCPF2() {
|
||||||
|
|
||||||
if(isNaoValidarCamposOcupacao()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
txtNumRfc2.setMaxlength(11);
|
txtNumRfc2.setMaxlength(11);
|
||||||
txtNumRfc2.setConstraint("/[0-9]{11}/ : " + Labels.getLabel("editarClienteController.MSG.validacaoCPF"));
|
txtNumRfc2.setConstraint("/[0-9]{11}/ : " + Labels.getLabel("editarClienteController.MSG.validacaoCPF"));
|
||||||
}
|
}
|
||||||
|
@ -644,7 +631,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
public void onClick$btnNovoCurso(Event ev) throws InterruptedException {
|
public void onClick$btnNovoCurso(Event ev) throws InterruptedException {
|
||||||
novoClienteCurso();
|
novoClienteCurso();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onSelect$cmbTipoIdentificacion(Event ev) throws InterruptedException {
|
public void onSelect$cmbTipoIdentificacion(Event ev) throws InterruptedException {
|
||||||
txtNumRfc.setConstraint("");
|
txtNumRfc.setConstraint("");
|
||||||
txtNumRfc.setValue("");
|
txtNumRfc.setValue("");
|
||||||
|
@ -657,21 +644,6 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
txtNumFidelidade.setText("");
|
txtNumFidelidade.setText("");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onSelect$cmbOcupacion(Event ev) throws InterruptedException {
|
|
||||||
verificarERemoverValidacaoCPF();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void verificarERemoverValidacaoCPF() {
|
|
||||||
if(isNaoValidarCamposOcupacao()) {
|
|
||||||
txtNumRfc.setConstraint("");
|
|
||||||
txtNumRfc.setValue("");
|
|
||||||
|
|
||||||
txtNumRfc2.setConstraint("");
|
|
||||||
txtNumRfc2.setValue("");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void onSelect$cmbTipoIdentificacion2(Event ev) throws InterruptedException {
|
public void onSelect$cmbTipoIdentificacion2(Event ev) throws InterruptedException {
|
||||||
txtNumRfc2.setConstraint("");
|
txtNumRfc2.setConstraint("");
|
||||||
|
@ -972,6 +944,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
cmbMotivacionViaje.getValue();
|
cmbMotivacionViaje.getValue();
|
||||||
cmbOcupacion.getValue();
|
cmbOcupacion.getValue();
|
||||||
|
|
||||||
|
|
||||||
if(!validarCampos()) {
|
if(!validarCampos()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1049,40 +1022,9 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean isNaoValidarCamposOcupacao() {
|
|
||||||
Boolean naoValidaCampos = false;
|
|
||||||
|
|
||||||
int ocupacion_id = buscarTipoOcupacionId();
|
|
||||||
|
|
||||||
if(tipoOcupacoesSemValidacaoList != null) {
|
|
||||||
|
|
||||||
for(TipoOcupacion tipoOcupacao : tipoOcupacoesSemValidacaoList) {
|
|
||||||
if(tipoOcupacao.getTipoocupacionId() == ocupacion_id) {
|
|
||||||
naoValidaCampos = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return naoValidaCampos;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private int buscarTipoOcupacionId() {
|
|
||||||
int ocupacion_id = -1;
|
|
||||||
|
|
||||||
if (cliente != null && cliente.getTipoocupacionId() != null) {
|
|
||||||
ocupacion_id = cliente.getTipoocupacionId().getTipoocupacionId();
|
|
||||||
}
|
|
||||||
|
|
||||||
return ocupacion_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean validarCampos() throws InterruptedException {
|
private boolean validarCampos() throws InterruptedException {
|
||||||
|
if (txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) {
|
||||||
Boolean isNaoValidarCampoOcupacao = isNaoValidarCamposOcupacao();
|
|
||||||
|
|
||||||
if (!isNaoValidarCampoOcupacao && txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) {
|
|
||||||
if ( cmbTipoIdentificacion != null
|
if ( cmbTipoIdentificacion != null
|
||||||
&& cmbTipoIdentificacion.getSelectedItem() != null
|
&& cmbTipoIdentificacion.getSelectedItem() != null
|
||||||
&& cmbTipoIdentificacion.getSelectedItem().getValue() != null
|
&& cmbTipoIdentificacion.getSelectedItem().getValue() != null
|
||||||
|
@ -1098,7 +1040,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isNaoValidarCampoOcupacao && txtNumRfc2.getText() != null && !txtNumRfc2.getText().isEmpty()) {
|
if (txtNumRfc2.getText() != null && !txtNumRfc2.getText().isEmpty()) {
|
||||||
if ( cmbTipoIdentificacion2 != null
|
if ( cmbTipoIdentificacion2 != null
|
||||||
&& cmbTipoIdentificacion2.getSelectedItem() != null
|
&& cmbTipoIdentificacion2.getSelectedItem() != null
|
||||||
&& cmbTipoIdentificacion2.getSelectedItem().getValue() != null
|
&& cmbTipoIdentificacion2.getSelectedItem().getValue() != null
|
||||||
|
@ -1114,7 +1056,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
List<Cliente> lsCliente = new ArrayList<Cliente>();
|
List<Cliente> lsCliente = new ArrayList<Cliente>();
|
||||||
if (!isNaoValidarCampoOcupacao && (txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) && cmbTipoIdentificacion != null
|
if ((txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) && cmbTipoIdentificacion != null
|
||||||
&& cmbTipoIdentificacion.getSelectedItem() != null
|
&& cmbTipoIdentificacion.getSelectedItem() != null
|
||||||
&& cmbTipoIdentificacion.getSelectedItem().getValue() != null
|
&& cmbTipoIdentificacion.getSelectedItem().getValue() != null
|
||||||
&& CPF.equals(cmbTipoIdentificacion.getSelectedItem().getValue().toString())){
|
&& CPF.equals(cmbTipoIdentificacion.getSelectedItem().getValue().toString())){
|
||||||
|
@ -1129,7 +1071,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isNaoValidarCampoOcupacao && txtNumRfc2.getText() != null && !txtNumRfc2.getText().isEmpty() && cmbTipoIdentificacion2 != null
|
if (txtNumRfc2.getText() != null && !txtNumRfc2.getText().isEmpty() && cmbTipoIdentificacion2 != null
|
||||||
&& cmbTipoIdentificacion2.getSelectedItem() != null
|
&& cmbTipoIdentificacion2.getSelectedItem() != null
|
||||||
&& cmbTipoIdentificacion2.getSelectedItem().getValue() != null
|
&& cmbTipoIdentificacion2.getSelectedItem().getValue() != null
|
||||||
&& CPF.equals(cmbTipoIdentificacion2.getSelectedItem().getValue().toString())) {
|
&& CPF.equals(cmbTipoIdentificacion2.getSelectedItem().getValue().toString())) {
|
||||||
|
@ -1154,7 +1096,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
boolean isEmailNaoInformado = StringUtils.isBlank(txtDescorreo.getValue());
|
boolean isEmailNaoInformado = StringUtils.isBlank(txtDescorreo.getValue());
|
||||||
|
|
||||||
if(!isNaoValidarCampoOcupacao && isTelefoneNaoInformado && isEmailNaoInformado) {
|
if(isTelefoneNaoInformado && isEmailNaoInformado) {
|
||||||
Messagebox.show(Labels.getLabel("editarClienteController.MSG.exigeEmailOuTelefone"),
|
Messagebox.show(Labels.getLabel("editarClienteController.MSG.exigeEmailOuTelefone"),
|
||||||
Labels.getLabel("editarClienteController.window.title"), Messagebox.OK,
|
Labels.getLabel("editarClienteController.window.title"), Messagebox.OK,
|
||||||
Messagebox.EXCLAMATION);
|
Messagebox.EXCLAMATION);
|
||||||
|
@ -1163,6 +1105,8 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1409,6 +1353,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
Messagebox.ERROR);
|
Messagebox.ERROR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Boolean getBoolVender1porCorrida() {
|
public Boolean getBoolVender1porCorrida() {
|
||||||
|
@ -1817,7 +1762,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
reservaEspecialCliente.setIndQuarta(indQuartaChk.isChecked());
|
reservaEspecialCliente.setIndQuarta(indQuartaChk.isChecked());
|
||||||
reservaEspecialCliente.setIndQuinta(indQuintaChk.isChecked());
|
reservaEspecialCliente.setIndQuinta(indQuintaChk.isChecked());
|
||||||
reservaEspecialCliente.setIndSexta(indSextaChk.isChecked());
|
reservaEspecialCliente.setIndSexta(indSextaChk.isChecked());
|
||||||
reservaEspecialCliente.setIndSabado(indSabadoChk.isChecked());
|
reservaEspecialCliente.setIndSabado(indSabadoChk.isChecked());
|
||||||
reservaEspecialClienteList.add(reservaEspecialCliente);
|
reservaEspecialClienteList.add(reservaEspecialCliente);
|
||||||
cliente.setListReservaEspecialCliente(reservaEspecialClienteList);
|
cliente.setListReservaEspecialCliente(reservaEspecialClienteList);
|
||||||
reservaEspecialMyListBox.setData(new ArrayList<ReservaEspecialCliente>(reservaEspecialClienteList));
|
reservaEspecialMyListBox.setData(new ArrayList<ReservaEspecialCliente>(reservaEspecialClienteList));
|
||||||
|
@ -1953,6 +1898,9 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
||||||
txtNumFidelidade.setValue(null);
|
txtNumFidelidade.setValue(null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private void limparInput() {
|
private void limparInput() {
|
||||||
cmbLinha.setSelectedItem(null);
|
cmbLinha.setSelectedItem(null);
|
||||||
|
|
|
@ -1,502 +1,402 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
|
||||||
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p"
|
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p"
|
||||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
xmlns:aop="http://www.springframework.org/schema/aop"
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
||||||
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
|
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
|
||||||
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
|
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
|
||||||
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
|
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
|
||||||
|
|
||||||
<!-- Hibernate config -->
|
<!-- Hibernate config -->
|
||||||
<context:property-placeholder
|
<context:property-placeholder
|
||||||
location="classpath:/com/rjconsultores/ventaboletos/web/cliente/conf/database.properties" />
|
location="classpath:/com/rjconsultores/ventaboletos/web/cliente/conf/database.properties" />
|
||||||
<context:component-scan base-package="com.rjconsultores.ventaboletos" />
|
<context:component-scan base-package="com.rjconsultores.ventaboletos" />
|
||||||
<tx:annotation-driven transaction-manager="transactionManager" />
|
<tx:annotation-driven transaction-manager="transactionManager" />
|
||||||
|
|
||||||
<bean id="sessionFactory"
|
<bean id="sessionFactory"
|
||||||
class="com.rjconsultores.ventaboletos.utilerias.spring.MyAnnotationSessionFactoryBean">
|
class="com.rjconsultores.ventaboletos.utilerias.spring.MyAnnotationSessionFactoryBean">
|
||||||
<property name="dataSource">
|
<property name="dataSource">
|
||||||
<ref local="dataSource" />
|
<ref local="dataSource" />
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
<property name="annotatedClasses">
|
<property name="annotatedClasses">
|
||||||
<list>
|
<list>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RegionMetropolitana</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RegionMetropolitana</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Comissao</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Comissao</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ClienteCurso</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ClienteCurso</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PacoteTarifa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PacoteTarifa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoTarifaPacote</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoTarifaPacote</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ItemAdicional</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ItemAdicional</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PacoteItem</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PacoteItem</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Pacote</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Pacote</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AbastoBoleto</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AbastoBoleto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AutobusDoc</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AutobusDoc</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Clasificacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Clasificacion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto
|
<value>com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FolioPreimpreso</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FolioPreimpreso
|
<value>com.rjconsultores.ventaboletos.entidad.RequisicionBoleto</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ClienteFidelidad</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RequisicionBoleto
|
<value>com.rjconsultores.ventaboletos.entidad.EstacionImpresora</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AlertaCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ClienteFidelidad
|
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoExcecao</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoTramo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EstacionImpresora
|
<value>com.rjconsultores.ventaboletos.entidad.AliasServico</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Autobus</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AlertaCtrl</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Autorizacion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoExcecao
|
<value>com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Articulo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoTramo
|
<value>com.rjconsultores.ventaboletos.entidad.AsientoExclusivo</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Banco</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AliasServico</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Autobus</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCargo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Autorizacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CasetaPeajeExcepcion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil
|
<value>com.rjconsultores.ventaboletos.entidad.Categoria</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaBloqueioImpPosterior</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Articulo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaClase</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AsientoExclusivo
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCorrida</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Banco</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaDescuento</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCtrl
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMarca</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMercado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCargo
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaOrgao</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaRuta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CasetaPeajeExcepcion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaPeriodo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Categoria</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CategoriaTipoPtoVta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaBloqueioImpPosterior</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Ciudad</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaClase</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCorrida
|
<value>com.rjconsultores.ventaboletos.entidad.Colonia</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ClaseServicio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCtrl</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ClaseservicioEquivalencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaDescuento
|
<value>com.rjconsultores.ventaboletos.entidad.ComisionistaExterno</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CompaniaBancaria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMarca</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Conductor</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMercado
|
<value>com.rjconsultores.ventaboletos.entidad.ConfigRestriccionPago</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoCanalVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaOrgao</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoPtovta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaRuta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoVendaWeb</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaPeriodo
|
<value>com.rjconsultores.ventaboletos.entidad.Convenio</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConvenioDet</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaTipoPtoVta
|
<value>com.rjconsultores.ventaboletos.entidad.Constante</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Corrida</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Ciudad</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CorridaCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa
|
<value>com.rjconsultores.ventaboletos.entidad.CorridaTramo</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Cortesia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Colonia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CortesiaBeneficiario</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseServicio</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CortesiaDireccion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseservicioEquivalencia
|
<value>com.rjconsultores.ventaboletos.entidad.Conexion</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConexionConf</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ComisionistaExterno
|
<value>com.rjconsultores.ventaboletos.entidad.ConexionTemp</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConexionCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CompaniaBancaria
|
<value>com.rjconsultores.ventaboletos.entidad.ConexionCtrlTemp</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConexionDescuento</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Conductor</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConexionExcepcion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfigRestriccionPago
|
<value>com.rjconsultores.ventaboletos.entidad.ConexionExcepcionRuta</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CtrlSerieEmbarcada</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoCanalVenta
|
<value>com.rjconsultores.ventaboletos.entidad.CtrlSerieBPe</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CuponConvenio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoPtovta
|
<value>com.rjconsultores.ventaboletos.entidad.CuponSecretaria</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Curso</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoVendaWeb
|
<value>com.rjconsultores.ventaboletos.entidad.Custom</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.DetDiagramaAutobus</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Convenio</value>
|
<value>com.rjconsultores.ventaboletos.entidad.DepositoBancario</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioDet</value>
|
<value>com.rjconsultores.ventaboletos.entidad.DiagramaAutobus</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Constante</value>
|
<value>com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Corrida</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Division</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CorridaCtrl</value>
|
<value>com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CorridaTramo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcadaHistorico</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Cortesia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Empleado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaBeneficiario
|
<value>com.rjconsultores.ventaboletos.entidad.Empresa</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaImposto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaDireccion
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEquivalencia</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Estacion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Conexion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EstacionSitef</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionConf</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EstacionRioCard</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionTemp</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Escola</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionCtrl</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionCtrlTemp</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAsiento</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionDescuento</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAgrupacion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionExcepcion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EsquemaCorrida</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionExcepcionRuta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EsquemaOperacional</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CtrlSerieEmbarcada</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EsquemaTramo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CtrlSerieBPe</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CuponConvenio</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionRedondo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CuponSecretaria
|
<value>com.rjconsultores.ventaboletos.entidad.Feriado</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FormaPago</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Curso</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FormaPagoDet</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Custom</value>
|
<value>com.rjconsultores.ventaboletos.entidad.GrupoCategoria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DetDiagramaAutobus
|
<value>com.rjconsultores.ventaboletos.entidad.GrupoCortesia</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.GrupoRuta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DepositoBancario
|
<value>com.rjconsultores.ventaboletos.entidad.FuncionSistema</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.LogDespesaReceitaDiversa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DiagramaAutobus</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Marca</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MarcaAutobus</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Division</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MercadoCompetido</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MerchantBancario</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcadaHistorico</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Moneda</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Empleado</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Empresa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MonitoramentoCCF</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaImposto</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEquivalencia
|
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelacion</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MotivoDevolucaoBilhete</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Estacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelVendaPacote</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EstacionSitef</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MotivocancelacionEquivalencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EstacionRioCard</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MotivoReimpresion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Escola</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MotivoViaje</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Nodo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAsiento</value>
|
<value>com.rjconsultores.ventaboletos.entidad.OrgaoCancelacion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAgrupacion
|
<value>com.rjconsultores.ventaboletos.entidad.OrgaoConcedente</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.OrgaoTramo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaCorrida</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Pais</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaOperacional
|
<value>com.rjconsultores.ventaboletos.entidad.Parada</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParadaCodOrgaoConcedente</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaTramo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParadaEquivalencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaMasivo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionRedondo
|
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParamCanjePunto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Feriado</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParamCostoTarjeta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FormaPago</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParamCompraPunto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FormaPagoDet</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParamRecoleccion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.GrupoCategoria</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParamConexion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.GrupoCortesia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Perfil</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.GrupoRuta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PerfilFuncion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FuncionSistema</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PeriodoVacacional</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.LogDespesaReceitaDiversa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Plaza</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Marca</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Pricing</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MarcaAutobus</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingFormapago</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MercadoCompetido
|
<value>com.rjconsultores.ventaboletos.entidad.PricingImporte</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingVigencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MerchantBancario
|
<value>com.rjconsultores.ventaboletos.entidad.PricingClase</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingMarca</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Moneda</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingMercado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingDia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MonitoramentoCCF</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingCorrida</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio
|
<value>com.rjconsultores.ventaboletos.entidad.PricingOcupaAntecipa</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingPuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingCategoria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoDevolucaoBilhete</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoPtoVta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelVendaPacote
|
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoServicio</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingAsiento</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MotivocancelacionEquivalencia
|
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecifico</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoOcupacion</value>
|
||||||
|
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoAgencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoReimpresion
|
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoCanalVendas</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingClasseTarifaria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoViaje</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingRuta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Nodo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoCancelacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProdClaseServicio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoConcedente</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProdFormaPago</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoTramo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProdMarca</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Pais</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProdPrecio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Parada</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProdMercado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParadaCodOrgaoConcedente</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProdPuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParadaEquivalencia
|
<value>com.rjconsultores.ventaboletos.entidad.ProdRuta</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProdTipoptovta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaMasivo
|
<value>com.rjconsultores.ventaboletos.entidad.ProdVigencia</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAgencia</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaCatInd</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCanjePunto
|
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaCheckin</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaSeguro</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCostoTarjeta
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAntecipacomissao</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.InstiFinanceira</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCompraPunto
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaComissao</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaDiversos</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParamRecoleccion
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEstoque</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaBloqueada</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParamConexion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaHorario</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Perfil</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaTitular</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PerfilFuncion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PeriodoVacacional
|
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaUsuarioBancario</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Plaza</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Redondeo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Pricing</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RedondeoCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingFormapago
|
<value>com.rjconsultores.ventaboletos.entidad.RedondeoMarca</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCategoria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingImporte</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ReservacionClase</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingVigencia
|
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCtrl</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMarca</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingClase</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMercado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingMarca</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ReservacionPuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingMercado</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RestriccionPago</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingDia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RolOperativo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCorrida</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Ruta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingOcupaAntecipa
|
<value>com.rjconsultores.ventaboletos.entidad.RutaCombinacion</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RutaEmpresa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingPuntoVenta
|
<value>com.rjconsultores.ventaboletos.entidad.RutaSecuencia</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RhPagoConductor</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCategoria
|
<value>com.rjconsultores.ventaboletos.entidad.Secretaria</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.SecretariaEmpresa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoPtoVta
|
<value>com.rjconsultores.ventaboletos.entidad.SeguradoraEmpresa</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.SeguroKm</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoServicio
|
<value>com.rjconsultores.ventaboletos.entidad.SegVKM</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.SeguroTarifa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingAsiento</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Sistema</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecifico</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueKm</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoOcupacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbLevante</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoAgencia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbLevanteCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoCanalVendas</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingClasseTarifaria</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarjetaFidelidad</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingRuta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarjetaRecaudacion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio
|
<value>com.rjconsultores.ventaboletos.entidad.Tarifa</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaOficial</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdClaseServicio
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaHist</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaMinima</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdFormaPago</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaCategoria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdMarca</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaTipoptovta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdPrecio</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoConvenio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdMercado</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdPuntoVenta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCiudad</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdRuta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoCorte</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdTipoptovta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesiaDescuento</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProdVigencia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio
|
<value>com.rjconsultores.ventaboletos.entidad.TipoDocAutobus</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoDomicilio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAgencia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoEmpleado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaCatInd</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtraEmpresa</value>
|
||||||
|
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtraPtoVta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaCheckin</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoMovimiento</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaSeguro</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoOcupacion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAntecipacomissao
|
<value>com.rjconsultores.ventaboletos.entidad.TipoParada</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoPuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.InstiFinanceira
|
<value>com.rjconsultores.ventaboletos.entidad.TipoServicio</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaComissao</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Tramo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaDiversos</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TramoServicio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEstoque</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TramoKmServicio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaBloqueada
|
<value>com.rjconsultores.ventaboletos.entidad.TramoTiempo</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TramoKm</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaHorario</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Turno</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaTitular</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Usuario</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.UsuarioBancario</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaUsuarioBancario
|
<value>com.rjconsultores.ventaboletos.entidad.UsuarioEmpresa</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.UsuarioPerfil</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PuntoVenta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.UsuarioSesion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Redondeo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.UsuarioUbicacion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoCtrl</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Via</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoMarca</value>
|
<value>com.rjconsultores.ventaboletos.entidad.VigenciaTarifa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCategoria
|
<value>com.rjconsultores.ventaboletos.entidad.Zona</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ParamArticulo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionClase
|
<value>com.rjconsultores.ventaboletos.entidad.EventoExtra</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtra</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCtrl
|
<value>com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarjetaViaje</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMarca
|
<value>com.rjconsultores.ventaboletos.entidad.Cliente</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ClienteDireccion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMercado
|
<value>com.rjconsultores.ventaboletos.entidad.TarjetaCredito</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Aidf</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionPuntoVenta
|
<value>com.rjconsultores.ventaboletos.entidad.AidfEspecie</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AidfTipo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RestriccionPago
|
<value>com.rjconsultores.ventaboletos.entidad.TipoMovimentacion</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaTipoEstoque</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RolOperativo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AbastoCentral</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Ruta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AbastoHisto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RutaCombinacion
|
<value>com.rjconsultores.ventaboletos.entidad.Clasificacion</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AbastoBoleto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RutaEmpresa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RutaSecuencia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FolioPreimpreso</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RhPagoConductor
|
<value>com.rjconsultores.ventaboletos.entidad.RequisicionBoleto</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.InscricaoEstadual</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Secretaria</value>
|
<value>com.rjconsultores.ventaboletos.entidad.OCD</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.SecretariaEmpresa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.OCDParam</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.SeguradoraEmpresa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.OCDPtoVtaParam</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.SeguroKm</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FiscalImpressora</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.SegVKM</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FiscalImpressoraEstado</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.SeguroTarifa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FechamentoParamgeral</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Sistema</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FechamentoParamptovta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueKm</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FechamentoBoleto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbLevante</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FechamentoCntcorrente</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbLevanteCtrl
|
<value>com.rjconsultores.ventaboletos.entidad.TipoIdentificacion</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Hotel</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada
|
<value>com.rjconsultores.ventaboletos.entidad.PrecoApanhe</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EnderecoApanhe</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaFidelidad
|
<value>com.rjconsultores.ventaboletos.entidad.VendaPacote</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ClientePacote</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaRecaudacion
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaVendaPacote</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PacoteFormapago</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Tarifa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PacoteDescontoBilhete</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaOficial</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PacoteConvenio</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaHist</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FiscalTotnaofiscalEmpresa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaMinima</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FiscalFormapagoEmpresa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaCategoria
|
<value>com.rjconsultores.ventaboletos.entidad.FiscalRelgerencialEmpresa</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaKm</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaTipoptovta
|
<value>com.rjconsultores.ventaboletos.entidad.PrecioVentaja</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ClienteDescuento</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoConvenio</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Peaje</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCtrl</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CasetaPeaje</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCiudad
|
<value>com.rjconsultores.ventaboletos.entidad.PrecioFixoPedagio</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RutaCaseta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCorte</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConvenioTramo</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesiaDescuento
|
<value>com.rjconsultores.ventaboletos.entidad.ConvenioUsuario</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConvenioPuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesia</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ItemDesconto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoDocAutobus</value>
|
<value>com.rjconsultores.ventaboletos.entidad.DescontoComissao</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoDomicilio</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Conferencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEmpleado</value>
|
<value>com.rjconsultores.ventaboletos.entidad.LogConferencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtraEmpresa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ContaCorrentePtoVta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtraPtoVta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoOperacionCC</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoMovimiento</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionPeaje</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoOcupacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionPeajeVigencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoParada</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaContaBancaria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoPuntoVenta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConvenioEmpresa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoServicio</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConvenioRuta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoVenta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ComEmpCategoria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Tramo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ComEmpFormapago</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TramoServicio</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ComEmpTipoEventoExtra</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKmServicio
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaMinimaCategoria</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.FiscalAliquotaEmpresa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TramoTiempo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ComEmpConferencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKm</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MensajePuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Turno</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MensajeEmpresa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Usuario</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MensajeUsuario</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioBancario
|
<value>com.rjconsultores.ventaboletos.entidad.Mensaje</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ClasseIndicePeaje</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioEmpresa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TipoInformativoComissao</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioPerfil</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EmbarqueCatracaRodoviaria</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioSesion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConferenciaPendencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioUbicacion
|
<value>com.rjconsultores.ventaboletos.entidad.AuditModule</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AuditService</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Via</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AuditLog</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.VigenciaTarifa</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Caja</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Zona</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CajaDetPago</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ParamArticulo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CajaDiversos</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EventoExtra</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CajaDiversosPago</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtra
|
<value>com.rjconsultores.ventaboletos.entidad.CajaFormaPago</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CajaTarjeta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra
|
<value>com.rjconsultores.ventaboletos.entidad.NotaCreditoVendaPacote</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.OCDDatosPagamento</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaViaje</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Boleto</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Cliente</value>
|
<value>com.rjconsultores.ventaboletos.entidad.HistoricoPuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ClienteDireccion
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaContaBancaria</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RutaEmbarqueDesembarque</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaCredito</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EsquemaCorridaEmbarqueDesembarque</value>
|
||||||
|
<value>com.rjconsultores.ventaboletos.entidad.ContaMD</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Aidf</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaContaMD</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AidfEspecie</value>
|
<value>com.rjconsultores.ventaboletos.entidad.MensagemRecusa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AidfTipo</value>
|
<value>com.rjconsultores.ventaboletos.entidad.OrgaoEmpParam</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoMovimentacion
|
<value>com.rjconsultores.ventaboletos.entidad.ComissaoReceita</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.IntegracaoTotvs</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaTipoEstoque
|
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoCategoria</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEmail</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AbastoCentral</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEmailEComerce</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AbastoHisto</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEmailConfig</value>
|
||||||
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaSaferConfig</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Clasificacion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CtrlFechamentoCaixa</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AbastoBoleto</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAntifraude</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto
|
<value>com.rjconsultores.ventaboletos.entidad.OperadorEmbarcada</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.OperadorEmbarcadaLinha</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FolioPreimpreso
|
<value>com.rjconsultores.ventaboletos.entidad.OperadorEmbarcadaServico</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.LogHistoricoContingencia</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RequisicionBoleto
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaTrocoSimples</value>
|
||||||
</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Imagem</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.InscricaoEstadual
|
|
||||||
</value>
|
|
||||||
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OCD
|
|
||||||
</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OCDParam
|
|
||||||
</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OCDPtoVtaParam
|
|
||||||
</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalImpressora</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalImpressoraEstado</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FechamentoParamgeral</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FechamentoParamptovta</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FechamentoBoleto</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FechamentoCntcorrente</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoIdentificacion</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Hotel</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PrecoApanhe</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EnderecoApanhe</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.VendaPacote</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ClientePacote</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaVendaPacote</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PacoteFormapago</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PacoteDescontoBilhete</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PacoteConvenio</value>
|
|
||||||
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalTotnaofiscalEmpresa</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalFormapagoEmpresa</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalRelgerencialEmpresa</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaKm</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PrecioVentaja</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ClienteDescuento</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Peaje</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CasetaPeaje</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PrecioFixoPedagio</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RutaCaseta</value>
|
|
||||||
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioTramo</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioUsuario</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioPuntoVenta</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ItemDesconto</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.DescontoComissao</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Conferencia</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.LogConferencia</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ContaCorrentePtoVta</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoOperacionCC</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionPeaje</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionPeajeVigencia</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaContaBancaria</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioEmpresa</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioRuta</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ComEmpCategoria</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ComEmpFormapago</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ComEmpTipoEventoExtra</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaMinimaCategoria</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalAliquotaEmpresa</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ComEmpConferencia</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MensajePuntoVenta</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MensajeEmpresa</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MensajeUsuario</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Mensaje</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ClasseIndicePeaje</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TipoInformativoComissao</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmbarqueCatracaRodoviaria</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConferenciaPendencia</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AuditModule</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AuditService</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AuditLog</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Caja</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CajaDetPago</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CajaDiversos</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CajaDiversosPago</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CajaFormaPago</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CajaTarjeta</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.NotaCreditoVendaPacote</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OCDDatosPagamento</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Boleto</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.HistoricoPuntoVenta</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaContaBancaria</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RutaEmbarqueDesembarque</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaCorridaEmbarqueDesembarque</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ContaMD</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaContaMD</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.MensagemRecusa</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoEmpParam</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ComissaoReceita</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.IntegracaoTotvs</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoCategoria</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEmail</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEmailEComerce</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEmailConfig</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaSaferConfig</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CtrlFechamentoCaixa</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAntifraude</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OperadorEmbarcada</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OperadorEmbarcadaLinha</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.OperadorEmbarcadaServico</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.LogHistoricoContingencia</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaTrocoSimples</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Imagem</value>
|
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RutaIcmsExcepcion</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RutaIcmsExcepcion</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CobrancaAdcPuntoVenta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CobrancaAdcPuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.CobrancaAdicionalHistorico</value>
|
<value>com.rjconsultores.ventaboletos.entidad.CobrancaAdicionalHistorico</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfTotem</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConfTotem</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaEmbarcada</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaEmbarcada</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaEmbarcadaHist</value>
|
<value>com.rjconsultores.ventaboletos.entidad.TarifaEmbarcadaHist</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.Cotacao</value>
|
<value>com.rjconsultores.ventaboletos.entidad.Cotacao</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.AliquotaEstadoDestino</value>
|
<value>com.rjconsultores.ventaboletos.entidad.AliquotaEstadoDestino</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCtrl</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PricingCtrl</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoOrgaoConcedente</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoOrgaoConcedente</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoRutas</value>
|
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoRutas</value>
|
||||||
|
@ -519,7 +419,8 @@
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaExcecaoMultaCanc</value>
|
<value>com.rjconsultores.ventaboletos.entidad.PtovtaExcecaoMultaCanc</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoOrgaoConcedente</value>
|
<value>com.rjconsultores.ventaboletos.entidad.RedondeoOrgaoConcedente</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.HistoricoFormaPagoPuntoVenta</value>
|
<value>com.rjconsultores.ventaboletos.entidad.HistoricoFormaPagoPuntoVenta</value>
|
||||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaAdyenConfig</value>
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaAdyenConfig</value>
|
||||||
|
<value>com.rjconsultores.ventaboletos.entidad.EmpresaCieloLinkConfig</value>
|
||||||
|
|
||||||
</list>
|
</list>
|
||||||
</property>
|
</property>
|
||||||
|
@ -592,5 +493,4 @@
|
||||||
<bean id="sqlBuilder"
|
<bean id="sqlBuilder"
|
||||||
class="com.rjconsultores.ventaboletos.dao.sqlbuilder.SQLBuilder"
|
class="com.rjconsultores.ventaboletos.dao.sqlbuilder.SQLBuilder"
|
||||||
factory-bean="sqlFactory" factory-method="getBuilder" />
|
factory-bean="sqlFactory" factory-method="getBuilder" />
|
||||||
|
|
||||||
</beans>
|
</beans>
|
|
@ -1396,6 +1396,7 @@ editarFormaPagoController.lblCateiraDigitalTrocoSimples.label = Troco Simples
|
||||||
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
|
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
|
||||||
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
|
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
|
||||||
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
|
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
|
||||||
|
editarFormaPagoController.lblETicket.label=E_Ticket
|
||||||
|
|
||||||
# Muestra o tipo de Pesquisa Ponto Venda
|
# Muestra o tipo de Pesquisa Ponto Venda
|
||||||
busquedaTipoPuntoVentaController.window.title = Canal de Venda
|
busquedaTipoPuntoVentaController.window.title = Canal de Venda
|
||||||
|
@ -9483,6 +9484,7 @@ editarEmpresaController.limitaCategoriaPorCorridaTooltip= Limita os tipos de pas
|
||||||
editarEmpresaController.configuracaoCieloLink.label= CieloLink
|
editarEmpresaController.configuracaoCieloLink.label= CieloLink
|
||||||
editarEmpresaController.lblCieloUrl.value=URL Cielo
|
editarEmpresaController.lblCieloUrl.value=URL Cielo
|
||||||
editarEmpresaController.lblSecret.value=Secret
|
editarEmpresaController.lblSecret.value=Secret
|
||||||
|
editarEmpresaController.lblMinutosCancela.value=Minutos Cancelamento
|
||||||
editarEmpresaController.lblMerchantId.value=Merchant ID
|
editarEmpresaController.lblMerchantId.value=Merchant ID
|
||||||
editarEmpresaController.lblClientId.value=Cliente ID
|
editarEmpresaController.lblClientId.value=Cliente ID
|
||||||
|
|
||||||
|
|
|
@ -1218,6 +1218,7 @@ editarFormaPagoController.lblCateiraDigitalTrocoSimples.label = Troco Simples
|
||||||
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
|
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
|
||||||
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
|
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
|
||||||
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
|
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
|
||||||
|
editarFormaPagoController.lblETicket.label=E_Ticket
|
||||||
|
|
||||||
# Muestra o tipo de Búsqueda Punto de venta
|
# Muestra o tipo de Búsqueda Punto de venta
|
||||||
busquedaTipoPuntoVentaController.window.title = Canal de venta
|
busquedaTipoPuntoVentaController.window.title = Canal de venta
|
||||||
|
@ -8692,6 +8693,7 @@ editarEmpresaController.realizaCalculoComissaoPeriodo.ajuda = Realiza o calculo
|
||||||
editarEmpresaController.configuracaoCieloLink.label= CieloLink
|
editarEmpresaController.configuracaoCieloLink.label= CieloLink
|
||||||
editarEmpresaController.lblCieloUrl.value=URL Cielo
|
editarEmpresaController.lblCieloUrl.value=URL Cielo
|
||||||
editarEmpresaController.lblSecret.value=Secret
|
editarEmpresaController.lblSecret.value=Secret
|
||||||
|
editarEmpresaController.lblMinutosCancela.value=Minutos Cancelamento
|
||||||
editarEmpresaController.lblMerchantId.value=Merchant ID
|
editarEmpresaController.lblMerchantId.value=Merchant ID
|
||||||
editarEmpresaController.lblClientId.value=Cliente ID
|
editarEmpresaController.lblClientId.value=Cliente ID
|
||||||
|
|
||||||
|
|
|
@ -1397,6 +1397,7 @@ editarFormaPagoController.lblCateiraDigitalTrocoSimples.label = Troco Simples
|
||||||
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
|
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
|
||||||
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
|
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
|
||||||
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
|
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
|
||||||
|
editarFormaPagoController.lblETicket.label=E_Ticket
|
||||||
|
|
||||||
# Muestra o tipo de Pesquisa Ponto Venda
|
# Muestra o tipo de Pesquisa Ponto Venda
|
||||||
busquedaTipoPuntoVentaController.window.title = Canal de Venda
|
busquedaTipoPuntoVentaController.window.title = Canal de Venda
|
||||||
|
@ -9484,6 +9485,7 @@ editarEmpresaController.limitaCategoriaPorCorridaTooltip= Limita os tipos de pas
|
||||||
editarEmpresaController.configuracaoCieloLink.label= CieloLink
|
editarEmpresaController.configuracaoCieloLink.label= CieloLink
|
||||||
editarEmpresaController.lblCieloUrl.value=URL Cielo
|
editarEmpresaController.lblCieloUrl.value=URL Cielo
|
||||||
editarEmpresaController.lblSecret.value=Secret
|
editarEmpresaController.lblSecret.value=Secret
|
||||||
|
editarEmpresaController.lblMinutosCancela.value=Minutos Cancelamento
|
||||||
editarEmpresaController.lblMerchantId.value=Merchant ID
|
editarEmpresaController.lblMerchantId.value=Merchant ID
|
||||||
editarEmpresaController.lblClientId.value=Cliente ID
|
editarEmpresaController.lblClientId.value=Cliente ID
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -33,7 +33,7 @@
|
||||||
</center>
|
</center>
|
||||||
<south>
|
<south>
|
||||||
<toolbar height="28px">
|
<toolbar height="28px">
|
||||||
<toolbarbutton id="toolBar" tooltiptext="${c:l('indexController.toolBar.tooltiptext')}"
|
<toolbarbutton id="toolBarLogout" tooltiptext="${c:l('indexController.toolBar.tooltiptext')}"
|
||||||
image="/gui/img/logout.png" href="/j_spring_security_logout"/>
|
image="/gui/img/logout.png" href="/j_spring_security_logout"/>
|
||||||
<toolbarbutton id="toolBarUser" image="/gui/img/user24.png"/>
|
<toolbarbutton id="toolBarUser" image="/gui/img/user24.png"/>
|
||||||
</toolbar>
|
</toolbar>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
</row>
|
</row>
|
||||||
<row spans="2" align="center">
|
<row spans="2" align="center">
|
||||||
<hbox align="center">
|
<hbox align="center">
|
||||||
<h:input type="button"
|
<h:input type="button" name="btnAcessar"
|
||||||
value="${c:l('winLogin.btnAcessar')}" w:onClick="validate()" />
|
value="${c:l('winLogin.btnAcessar')}" w:onClick="validate()" />
|
||||||
</hbox>
|
</hbox>
|
||||||
</row>
|
</row>
|
||||||
|
|
Loading…
Reference in New Issue