diff --git a/pom.xml b/pom.xml
index 8129678c3..844ee13f9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
br.com.rjconsultores
ventaboletosadm
- 1.0.17
+ 1.0.21
war
@@ -55,13 +55,13 @@
br.com.rjconsultores
ModelWeb
- 1.0.13
+ 1.0.16
br.com.rjconsultores
Flyway
- 1.0.5
+ 1.0.7
@@ -118,24 +118,26 @@
3.14.0.Final
provided
-
+
- org.jboss.spec
- jboss-javaee-all-6.0
- 3.0.3.Final
- provided
+ javax.servlet
+ javax.servlet-api
+ 4.0.0
+ provided
commons-beanutils
commons-beanutils
- 1.8.2
+ 1.9.4
+
commons-codec
commons-codec
1.10
+
org.zkoss.common
zcommon
diff --git a/src/java/com/rjconsultores/ventaboletos/relatorios/render/RenderRelatorioJasper.java b/src/java/com/rjconsultores/ventaboletos/relatorios/render/RenderRelatorioJasper.java
index 78c5a940c..b492d4cef 100644
--- a/src/java/com/rjconsultores/ventaboletos/relatorios/render/RenderRelatorioJasper.java
+++ b/src/java/com/rjconsultores/ventaboletos/relatorios/render/RenderRelatorioJasper.java
@@ -20,6 +20,7 @@ import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.export.JExcelApiExporter;
import net.sf.jasperreports.engine.export.JExcelApiExporterParameter;
+import net.sf.jasperreports.engine.export.JRXlsExporter;
import net.sf.jasperreports.engine.util.JRProperties;
/**
@@ -173,6 +174,38 @@ public class RenderRelatorioJasper {
exporterXLS.exportReport();
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 {
return JasperExportManager.exportReportToPdf(this.jasperPrint);
diff --git a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarEmpresaController.java b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarEmpresaController.java
index 5b8d77796..982b56234 100644
--- a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarEmpresaController.java
+++ b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarEmpresaController.java
@@ -73,6 +73,7 @@ import com.rjconsultores.ventaboletos.entidad.ComEmpFormapago;
import com.rjconsultores.ventaboletos.entidad.ComEmpTipoEventoExtra;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.EmpresaAdyenConfig;
+import com.rjconsultores.ventaboletos.entidad.EmpresaCieloLinkConfig;
import com.rjconsultores.ventaboletos.entidad.EmpresaContaBancaria;
import com.rjconsultores.ventaboletos.entidad.EmpresaEmail;
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.CiudadService;
import com.rjconsultores.ventaboletos.service.EmpresaAdyenConfigService;
+import com.rjconsultores.ventaboletos.service.EmpresaCieloLinkService;
import com.rjconsultores.ventaboletos.service.EmpresaEmailConfigService;
import com.rjconsultores.ventaboletos.service.EmpresaEmailEComerceService;
import com.rjconsultores.ventaboletos.service.EmpresaEmailFlexBusService;
@@ -157,6 +159,8 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
@Autowired
private EmpresaEmailFlexBusService empresaEmailFlexBusService;
@Autowired
+ private EmpresaCieloLinkService empresaCieloLinkService;
+ @Autowired
private EmpresaSaferConfigService empresaSaferConfigService;
@Autowired
private EmpresaAdyenConfigService empresaAdyenConfigService;
@@ -166,6 +170,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
private EmpresaEmailEComerce empresaEmailEComerce;
private EmpresaEmailConfig empresaEmailConfig;
private EmpresaEmailFlexBus empresaEmailFlexBus;
+ private EmpresaCieloLinkConfig empresaCieloLinkConfig;
private EmpresaSaferConfig empresaSaferConfig;
private EmpresaAdyenConfig empresaAdyenConfig;
private MyListbox empresaList;
@@ -206,8 +211,19 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
private CKeditor messageCupomEmbarqueFlexBus;
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 rdgFechaSalida;
private Radio rdgRestringeZSim;
@@ -417,6 +433,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
lsEstados = estadoService.buscarNotInEmpresaImposto(empresa);
lsTodosEstados = estadoService.obtenerTodos();
+
lsCidades = new ArrayList();
lsBanco = instFinanceiraService.obtenerTodos();
@@ -429,6 +446,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
if (empresa != null && empresa.getEmpresaId() != null) {
empresaEmailFlexBus = empresaEmailFlexBusService.buscarPorEmpresa(empresa);
+ empresaCieloLinkConfig = empresaCieloLinkService.buscarPorEmpresa(empresa).orElse(null);
}
super.doAfterCompose(comp);
@@ -454,6 +472,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
btnAdicionarEstadoImposto.setVisible(true);
btnAdicionarInscEstadual.setVisible(true);
}
+
if (empresaEmailConfig != null) {
if(empresaEmailConfig.getIndAutenticacao()){
chkAutenticacao.setChecked(true);
@@ -486,6 +505,14 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
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) {
txtPartnerId.setText(empresaSaferConfig.getPartnerId());
txtContractId.setText(empresaSaferConfig.getContractId());
@@ -1012,6 +1039,16 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
preencheInformacoesEmpresaEmailFlexBus();
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) {
empresaEmail = new EmpresaEmail();
@@ -1131,6 +1168,19 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
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() {
if (txtEmail.getText() == null || txtEmail.getText().isEmpty()) {
return true;
diff --git a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarPuntoVentaController.java b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarPuntoVentaController.java
index 367135ca3..8110c7ae8 100644
--- a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarPuntoVentaController.java
+++ b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarPuntoVentaController.java
@@ -58,6 +58,7 @@ import org.zkoss.zk.ui.event.UploadEvent;
import org.zkoss.zk.ui.util.Clients;
import org.zkoss.zkplus.databind.BindingListModel;
import org.zkoss.zkplus.databind.BindingListModelList;
+import org.zkoss.zul.Bandbox;
import org.zkoss.zul.Button;
import org.zkoss.zul.Checkbox;
import org.zkoss.zul.Combobox;
@@ -74,10 +75,9 @@ import org.zkoss.zul.Messagebox;
import org.zkoss.zul.Paging;
import org.zkoss.zul.Radio;
import org.zkoss.zul.Row;
+import org.zkoss.zul.Tab;
import org.zkoss.zul.Textbox;
-import org.zkoss.zul.api.Bandbox;
-import org.zkoss.zul.api.Tab;
-import org.zkoss.zul.api.Timebox;
+import org.zkoss.zul.Timebox;
import com.rjconsultores.ventaboletos.constantes.Constantes;
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.RenderCobrancaAdcicionalHistorico;
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.RenderHistoricoFormaPagoSelecao;
import com.rjconsultores.ventaboletos.web.utilerias.render.RenderParadaPtoVtaCheckin;
diff --git a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/sendaAmigo/EditarClienteController.java b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/sendaAmigo/EditarClienteController.java
index db2686f03..e8642261f 100644
--- a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/sendaAmigo/EditarClienteController.java
+++ b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/sendaAmigo/EditarClienteController.java
@@ -247,8 +247,6 @@ public class EditarClienteController extends MyGenericForwardComposer {
private DiagramaAutobusService diagramaAutoBusService;
private Integer numAssentoIntReservaEspecial;
-
- private List tipoOcupacoesSemValidacaoList;
public void aplicarMascara() {
Clients.evalJavaScript(
@@ -299,8 +297,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
lsLinhas = rutaService.obtenerTodos();
lsEmpresas = empresaService.obtenerTodos();
usaCPFComoFidelidade = ApplicationProperties.getInstance().isCustomHabilitado(CustomEnum.USA_CPF_COMO_FIDELIDADE.getDescricao());
- tipoOcupacoesSemValidacaoList = constanteService.BuscarTipoOcupacaoSemValidacao();
-
+
if (usaCPFComoFidelidade) {
txtNumFidelidade.setDisabled(true);
btnAdicionarFidelidade.setDisabled(true);
@@ -602,21 +599,11 @@ public class EditarClienteController extends MyGenericForwardComposer {
}
private void setValidadoresCPF() {
-
- if(isNaoValidarCamposOcupacao()) {
- return;
- }
-
txtNumRfc.setMaxlength(11);
txtNumRfc.setConstraint("/[0-9]{11}/ : " + Labels.getLabel("editarClienteController.MSG.validacaoCPF"));
}
private void setValidadoresCPF2() {
-
- if(isNaoValidarCamposOcupacao()) {
- return;
- }
-
txtNumRfc2.setMaxlength(11);
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 {
novoClienteCurso();
}
-
+
public void onSelect$cmbTipoIdentificacion(Event ev) throws InterruptedException {
txtNumRfc.setConstraint("");
txtNumRfc.setValue("");
@@ -657,21 +644,6 @@ public class EditarClienteController extends MyGenericForwardComposer {
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 {
txtNumRfc2.setConstraint("");
@@ -972,6 +944,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
cmbMotivacionViaje.getValue();
cmbOcupacion.getValue();
+
if(!validarCampos()) {
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 {
-
- Boolean isNaoValidarCampoOcupacao = isNaoValidarCamposOcupacao();
-
- if (!isNaoValidarCampoOcupacao && txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) {
+ if (txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) {
if ( cmbTipoIdentificacion != null
&& cmbTipoIdentificacion.getSelectedItem() != 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
&& cmbTipoIdentificacion2.getSelectedItem() != null
&& cmbTipoIdentificacion2.getSelectedItem().getValue() != null
@@ -1114,7 +1056,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
}
}
List lsCliente = new ArrayList();
- if (!isNaoValidarCampoOcupacao && (txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) && cmbTipoIdentificacion != null
+ if ((txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) && cmbTipoIdentificacion != null
&& cmbTipoIdentificacion.getSelectedItem() != null
&& cmbTipoIdentificacion.getSelectedItem().getValue() != null
&& 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().getValue() != null
&& CPF.equals(cmbTipoIdentificacion2.getSelectedItem().getValue().toString())) {
@@ -1154,7 +1096,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
boolean isEmailNaoInformado = StringUtils.isBlank(txtDescorreo.getValue());
- if(!isNaoValidarCampoOcupacao && isTelefoneNaoInformado && isEmailNaoInformado) {
+ if(isTelefoneNaoInformado && isEmailNaoInformado) {
Messagebox.show(Labels.getLabel("editarClienteController.MSG.exigeEmailOuTelefone"),
Labels.getLabel("editarClienteController.window.title"), Messagebox.OK,
Messagebox.EXCLAMATION);
@@ -1163,6 +1105,8 @@ public class EditarClienteController extends MyGenericForwardComposer {
}
+
+
return true;
}
@@ -1409,6 +1353,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
Messagebox.ERROR);
}
}
+
}
public Boolean getBoolVender1porCorrida() {
@@ -1817,7 +1762,7 @@ public class EditarClienteController extends MyGenericForwardComposer {
reservaEspecialCliente.setIndQuarta(indQuartaChk.isChecked());
reservaEspecialCliente.setIndQuinta(indQuintaChk.isChecked());
reservaEspecialCliente.setIndSexta(indSextaChk.isChecked());
- reservaEspecialCliente.setIndSabado(indSabadoChk.isChecked());
+ reservaEspecialCliente.setIndSabado(indSabadoChk.isChecked());
reservaEspecialClienteList.add(reservaEspecialCliente);
cliente.setListReservaEspecialCliente(reservaEspecialClienteList);
reservaEspecialMyListBox.setData(new ArrayList(reservaEspecialClienteList));
@@ -1953,6 +1898,9 @@ public class EditarClienteController extends MyGenericForwardComposer {
txtNumFidelidade.setValue(null);
}
}
+
+
+
private void limparInput() {
cmbLinha.setSelectedItem(null);
diff --git a/src/java/spring-config.xml b/src/java/spring-config.xml
index ea51b3516..cd6160616 100644
--- a/src/java/spring-config.xml
+++ b/src/java/spring-config.xml
@@ -1,502 +1,402 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- com.rjconsultores.ventaboletos.entidad.RegionMetropolitana
- com.rjconsultores.ventaboletos.entidad.Comissao
- com.rjconsultores.ventaboletos.entidad.ClienteCurso
- com.rjconsultores.ventaboletos.entidad.PacoteTarifa
- com.rjconsultores.ventaboletos.entidad.TipoTarifaPacote
- com.rjconsultores.ventaboletos.entidad.ItemAdicional
- com.rjconsultores.ventaboletos.entidad.PacoteItem
- com.rjconsultores.ventaboletos.entidad.Pacote
- com.rjconsultores.ventaboletos.entidad.AbastoBoleto
- com.rjconsultores.ventaboletos.entidad.AutobusDoc
- com.rjconsultores.ventaboletos.entidad.Clasificacion
- com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto
-
- com.rjconsultores.ventaboletos.entidad.FolioPreimpreso
-
- com.rjconsultores.ventaboletos.entidad.RequisicionBoleto
-
- com.rjconsultores.ventaboletos.entidad.ClienteFidelidad
-
- com.rjconsultores.ventaboletos.entidad.EstacionImpresora
-
- com.rjconsultores.ventaboletos.entidad.AlertaCtrl
- com.rjconsultores.ventaboletos.entidad.ConfRestricaoExcecao
-
- com.rjconsultores.ventaboletos.entidad.ConfRestricaoTramo
-
- com.rjconsultores.ventaboletos.entidad.AliasServico
- com.rjconsultores.ventaboletos.entidad.Autobus
- com.rjconsultores.ventaboletos.entidad.Autorizacion
- com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil
-
- com.rjconsultores.ventaboletos.entidad.Articulo
- com.rjconsultores.ventaboletos.entidad.AsientoExclusivo
-
- com.rjconsultores.ventaboletos.entidad.Banco
- com.rjconsultores.ventaboletos.entidad.CancelacionCtrl
-
- com.rjconsultores.ventaboletos.entidad.CancelacionCargo
-
- com.rjconsultores.ventaboletos.entidad.CasetaPeajeExcepcion
- com.rjconsultores.ventaboletos.entidad.Categoria
- com.rjconsultores.ventaboletos.entidad.CategoriaBloqueioImpPosterior
- com.rjconsultores.ventaboletos.entidad.CategoriaClase
- com.rjconsultores.ventaboletos.entidad.CategoriaCorrida
-
- com.rjconsultores.ventaboletos.entidad.CategoriaCtrl
- com.rjconsultores.ventaboletos.entidad.CategoriaDescuento
-
- com.rjconsultores.ventaboletos.entidad.CategoriaMarca
- com.rjconsultores.ventaboletos.entidad.CategoriaMercado
-
- com.rjconsultores.ventaboletos.entidad.CategoriaOrgao
- com.rjconsultores.ventaboletos.entidad.CategoriaRuta
- com.rjconsultores.ventaboletos.entidad.CategoriaPeriodo
-
- com.rjconsultores.ventaboletos.entidad.CategoriaTipoPtoVta
-
- com.rjconsultores.ventaboletos.entidad.Ciudad
- com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa
-
- com.rjconsultores.ventaboletos.entidad.Colonia
- com.rjconsultores.ventaboletos.entidad.ClaseServicio
- com.rjconsultores.ventaboletos.entidad.ClaseservicioEquivalencia
-
- com.rjconsultores.ventaboletos.entidad.ComisionistaExterno
-
- com.rjconsultores.ventaboletos.entidad.CompaniaBancaria
-
- com.rjconsultores.ventaboletos.entidad.Conductor
- com.rjconsultores.ventaboletos.entidad.ConfigRestriccionPago
-
- com.rjconsultores.ventaboletos.entidad.ConfRestricaoCanalVenta
-
- com.rjconsultores.ventaboletos.entidad.ConfRestricaoPtovta
-
- com.rjconsultores.ventaboletos.entidad.ConfRestricaoVendaWeb
-
- com.rjconsultores.ventaboletos.entidad.Convenio
- com.rjconsultores.ventaboletos.entidad.ConvenioDet
- com.rjconsultores.ventaboletos.entidad.Constante
- com.rjconsultores.ventaboletos.entidad.Corrida
- com.rjconsultores.ventaboletos.entidad.CorridaCtrl
- com.rjconsultores.ventaboletos.entidad.CorridaTramo
- com.rjconsultores.ventaboletos.entidad.Cortesia
- com.rjconsultores.ventaboletos.entidad.CortesiaBeneficiario
-
- com.rjconsultores.ventaboletos.entidad.CortesiaDireccion
-
- com.rjconsultores.ventaboletos.entidad.Conexion
- com.rjconsultores.ventaboletos.entidad.ConexionConf
- com.rjconsultores.ventaboletos.entidad.ConexionTemp
- com.rjconsultores.ventaboletos.entidad.ConexionCtrl
- com.rjconsultores.ventaboletos.entidad.ConexionCtrlTemp
- com.rjconsultores.ventaboletos.entidad.ConexionDescuento
- com.rjconsultores.ventaboletos.entidad.ConexionExcepcion
- com.rjconsultores.ventaboletos.entidad.ConexionExcepcionRuta
- com.rjconsultores.ventaboletos.entidad.CtrlSerieEmbarcada
- com.rjconsultores.ventaboletos.entidad.CtrlSerieBPe
- com.rjconsultores.ventaboletos.entidad.CuponConvenio
- com.rjconsultores.ventaboletos.entidad.CuponSecretaria
-
- com.rjconsultores.ventaboletos.entidad.Curso
- com.rjconsultores.ventaboletos.entidad.Custom
- com.rjconsultores.ventaboletos.entidad.DetDiagramaAutobus
-
- com.rjconsultores.ventaboletos.entidad.DepositoBancario
-
- com.rjconsultores.ventaboletos.entidad.DiagramaAutobus
- com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada
- com.rjconsultores.ventaboletos.entidad.Division
- com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada
- com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcadaHistorico
- com.rjconsultores.ventaboletos.entidad.Empleado
- com.rjconsultores.ventaboletos.entidad.Empresa
- com.rjconsultores.ventaboletos.entidad.EmpresaImposto
- com.rjconsultores.ventaboletos.entidad.EmpresaEquivalencia
-
- com.rjconsultores.ventaboletos.entidad.Estacion
- com.rjconsultores.ventaboletos.entidad.EstacionSitef
- com.rjconsultores.ventaboletos.entidad.EstacionRioCard
- com.rjconsultores.ventaboletos.entidad.Escola
- com.rjconsultores.ventaboletos.entidad.Estado
- com.rjconsultores.ventaboletos.entidad.EsquemaAsiento
- com.rjconsultores.ventaboletos.entidad.EsquemaAgrupacion
-
- com.rjconsultores.ventaboletos.entidad.EsquemaCorrida
- com.rjconsultores.ventaboletos.entidad.EsquemaOperacional
-
- com.rjconsultores.ventaboletos.entidad.EsquemaTramo
- com.rjconsultores.ventaboletos.entidad.Estado
- com.rjconsultores.ventaboletos.entidad.ExcepcionRedondo
-
- com.rjconsultores.ventaboletos.entidad.Feriado
- com.rjconsultores.ventaboletos.entidad.FormaPago
- com.rjconsultores.ventaboletos.entidad.FormaPagoDet
- com.rjconsultores.ventaboletos.entidad.GrupoCategoria
- com.rjconsultores.ventaboletos.entidad.GrupoCortesia
- com.rjconsultores.ventaboletos.entidad.GrupoRuta
- com.rjconsultores.ventaboletos.entidad.FuncionSistema
- com.rjconsultores.ventaboletos.entidad.LogDespesaReceitaDiversa
- com.rjconsultores.ventaboletos.entidad.Marca
- com.rjconsultores.ventaboletos.entidad.MarcaAutobus
- com.rjconsultores.ventaboletos.entidad.MercadoCompetido
-
- com.rjconsultores.ventaboletos.entidad.MerchantBancario
-
- com.rjconsultores.ventaboletos.entidad.Moneda
- com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ
- com.rjconsultores.ventaboletos.entidad.MonitoramentoCCF
- com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio
-
- com.rjconsultores.ventaboletos.entidad.MotivoCancelacion
- com.rjconsultores.ventaboletos.entidad.MotivoDevolucaoBilhete
- com.rjconsultores.ventaboletos.entidad.MotivoCancelVendaPacote
-
- com.rjconsultores.ventaboletos.entidad.MotivocancelacionEquivalencia
-
-
- com.rjconsultores.ventaboletos.entidad.MotivoReimpresion
-
- com.rjconsultores.ventaboletos.entidad.MotivoViaje
- com.rjconsultores.ventaboletos.entidad.Nodo
- com.rjconsultores.ventaboletos.entidad.OrgaoCancelacion
- com.rjconsultores.ventaboletos.entidad.OrgaoConcedente
- com.rjconsultores.ventaboletos.entidad.OrgaoTramo
- com.rjconsultores.ventaboletos.entidad.Pais
- com.rjconsultores.ventaboletos.entidad.Parada
- com.rjconsultores.ventaboletos.entidad.ParadaCodOrgaoConcedente
- com.rjconsultores.ventaboletos.entidad.ParadaEquivalencia
-
- com.rjconsultores.ventaboletos.entidad.ParamAcumulaMasivo
-
- com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto
-
- com.rjconsultores.ventaboletos.entidad.ParamCanjePunto
-
- com.rjconsultores.ventaboletos.entidad.ParamCostoTarjeta
-
- com.rjconsultores.ventaboletos.entidad.ParamCompraPunto
-
- com.rjconsultores.ventaboletos.entidad.ParamRecoleccion
-
- com.rjconsultores.ventaboletos.entidad.ParamConexion
- com.rjconsultores.ventaboletos.entidad.Perfil
- com.rjconsultores.ventaboletos.entidad.PerfilFuncion
- com.rjconsultores.ventaboletos.entidad.PeriodoVacacional
-
- com.rjconsultores.ventaboletos.entidad.Plaza
- com.rjconsultores.ventaboletos.entidad.Pricing
- com.rjconsultores.ventaboletos.entidad.PricingFormapago
-
- com.rjconsultores.ventaboletos.entidad.PricingImporte
- com.rjconsultores.ventaboletos.entidad.PricingVigencia
-
- com.rjconsultores.ventaboletos.entidad.PricingClase
- com.rjconsultores.ventaboletos.entidad.PricingMarca
- com.rjconsultores.ventaboletos.entidad.PricingMercado
- com.rjconsultores.ventaboletos.entidad.PricingDia
- com.rjconsultores.ventaboletos.entidad.PricingCorrida
- com.rjconsultores.ventaboletos.entidad.PricingOcupaAntecipa
-
- com.rjconsultores.ventaboletos.entidad.PricingPuntoVenta
-
- com.rjconsultores.ventaboletos.entidad.PricingCategoria
-
- com.rjconsultores.ventaboletos.entidad.PricingTipoPtoVta
-
- com.rjconsultores.ventaboletos.entidad.PricingTipoServicio
-
- com.rjconsultores.ventaboletos.entidad.PricingAsiento
- com.rjconsultores.ventaboletos.entidad.PricingEspecifico
- com.rjconsultores.ventaboletos.entidad.PricingEspecificoOcupacion
- com.rjconsultores.ventaboletos.entidad.PricingEspecificoAgencia
- com.rjconsultores.ventaboletos.entidad.PricingEspecificoCanalVendas
- com.rjconsultores.ventaboletos.entidad.PricingClasseTarifaria
- com.rjconsultores.ventaboletos.entidad.PricingRuta
- com.rjconsultores.ventaboletos.entidad.ProductoServicio
-
- com.rjconsultores.ventaboletos.entidad.ProdClaseServicio
-
- com.rjconsultores.ventaboletos.entidad.ProdFormaPago
- com.rjconsultores.ventaboletos.entidad.ProdMarca
- com.rjconsultores.ventaboletos.entidad.ProdPrecio
- com.rjconsultores.ventaboletos.entidad.ProdMercado
- com.rjconsultores.ventaboletos.entidad.ProdPuntoVenta
- com.rjconsultores.ventaboletos.entidad.ProdRuta
- com.rjconsultores.ventaboletos.entidad.ProdTipoptovta
- com.rjconsultores.ventaboletos.entidad.ProdVigencia
- com.rjconsultores.ventaboletos.entidad.ProductoServicio
-
- com.rjconsultores.ventaboletos.entidad.PtovtaAgencia
- com.rjconsultores.ventaboletos.entidad.PtovtaCatInd
-
- com.rjconsultores.ventaboletos.entidad.PtoVtaCheckin
- com.rjconsultores.ventaboletos.entidad.PtoVtaSeguro
- com.rjconsultores.ventaboletos.entidad.PtovtaAntecipacomissao
-
- com.rjconsultores.ventaboletos.entidad.InstiFinanceira
-
- com.rjconsultores.ventaboletos.entidad.PtovtaComissao
- com.rjconsultores.ventaboletos.entidad.PtovtaDiversos
- com.rjconsultores.ventaboletos.entidad.PtovtaEstoque
- com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaBloqueada
-
- com.rjconsultores.ventaboletos.entidad.PtovtaHorario
- com.rjconsultores.ventaboletos.entidad.PtovtaTitular
- com.rjconsultores.ventaboletos.entidad.PtovtaEmpresa
- com.rjconsultores.ventaboletos.entidad.PtoVtaUsuarioBancario
-
- com.rjconsultores.ventaboletos.entidad.PuntoVenta
- com.rjconsultores.ventaboletos.entidad.Redondeo
- com.rjconsultores.ventaboletos.entidad.RedondeoCtrl
- com.rjconsultores.ventaboletos.entidad.RedondeoMarca
- com.rjconsultores.ventaboletos.entidad.ReservacionCategoria
-
- com.rjconsultores.ventaboletos.entidad.ReservacionClase
-
- com.rjconsultores.ventaboletos.entidad.ReservacionCtrl
-
- com.rjconsultores.ventaboletos.entidad.ReservacionMarca
-
- com.rjconsultores.ventaboletos.entidad.ReservacionMercado
-
- com.rjconsultores.ventaboletos.entidad.ReservacionPuntoVenta
-
- com.rjconsultores.ventaboletos.entidad.RestriccionPago
-
- com.rjconsultores.ventaboletos.entidad.RolOperativo
- com.rjconsultores.ventaboletos.entidad.Ruta
- com.rjconsultores.ventaboletos.entidad.RutaCombinacion
-
- com.rjconsultores.ventaboletos.entidad.RutaEmpresa
- com.rjconsultores.ventaboletos.entidad.RutaSecuencia
- com.rjconsultores.ventaboletos.entidad.RhPagoConductor
-
- com.rjconsultores.ventaboletos.entidad.Secretaria
- com.rjconsultores.ventaboletos.entidad.SecretariaEmpresa
- com.rjconsultores.ventaboletos.entidad.SeguradoraEmpresa
- com.rjconsultores.ventaboletos.entidad.SeguroKm
- com.rjconsultores.ventaboletos.entidad.SegVKM
- com.rjconsultores.ventaboletos.entidad.SeguroTarifa
- com.rjconsultores.ventaboletos.entidad.Sistema
- com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueKm
- com.rjconsultores.ventaboletos.entidad.TaxaEmbLevante
- com.rjconsultores.ventaboletos.entidad.TaxaEmbLevanteCtrl
-
- com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada
-
- com.rjconsultores.ventaboletos.entidad.TarjetaFidelidad
-
- com.rjconsultores.ventaboletos.entidad.TarjetaRecaudacion
-
- com.rjconsultores.ventaboletos.entidad.Tarifa
- com.rjconsultores.ventaboletos.entidad.TarifaOficial
- com.rjconsultores.ventaboletos.entidad.TarifaHist
- com.rjconsultores.ventaboletos.entidad.TarifaMinima
- com.rjconsultores.ventaboletos.entidad.TarifaCategoria
-
- com.rjconsultores.ventaboletos.entidad.TarifaTipoptovta
-
- com.rjconsultores.ventaboletos.entidad.TipoConvenio
- com.rjconsultores.ventaboletos.entidad.TipoCambioCtrl
- com.rjconsultores.ventaboletos.entidad.TipoCambioCiudad
-
- com.rjconsultores.ventaboletos.entidad.TipoCorte
- com.rjconsultores.ventaboletos.entidad.TipoCortesiaDescuento
-
- com.rjconsultores.ventaboletos.entidad.TipoCortesia
- com.rjconsultores.ventaboletos.entidad.TipoDocAutobus
- com.rjconsultores.ventaboletos.entidad.TipoDomicilio
- com.rjconsultores.ventaboletos.entidad.TipoEmpleado
- com.rjconsultores.ventaboletos.entidad.TipoEventoExtraEmpresa
- com.rjconsultores.ventaboletos.entidad.TipoEventoExtraPtoVta
- com.rjconsultores.ventaboletos.entidad.TipoMovimiento
- com.rjconsultores.ventaboletos.entidad.TipoOcupacion
- com.rjconsultores.ventaboletos.entidad.TipoParada
- com.rjconsultores.ventaboletos.entidad.TipoPuntoVenta
- com.rjconsultores.ventaboletos.entidad.TipoServicio
- com.rjconsultores.ventaboletos.entidad.TipoVenta
- com.rjconsultores.ventaboletos.entidad.Tramo
- com.rjconsultores.ventaboletos.entidad.TramoServicio
- com.rjconsultores.ventaboletos.entidad.TramoKmServicio
-
- com.rjconsultores.ventaboletos.entidad.TramoTiempo
- com.rjconsultores.ventaboletos.entidad.TramoKm
- com.rjconsultores.ventaboletos.entidad.Turno
- com.rjconsultores.ventaboletos.entidad.Usuario
- com.rjconsultores.ventaboletos.entidad.UsuarioBancario
-
- com.rjconsultores.ventaboletos.entidad.UsuarioEmpresa
- com.rjconsultores.ventaboletos.entidad.UsuarioPerfil
- com.rjconsultores.ventaboletos.entidad.UsuarioSesion
- com.rjconsultores.ventaboletos.entidad.UsuarioUbicacion
-
- com.rjconsultores.ventaboletos.entidad.Via
- com.rjconsultores.ventaboletos.entidad.VigenciaTarifa
- com.rjconsultores.ventaboletos.entidad.Zona
- com.rjconsultores.ventaboletos.entidad.ParamArticulo
- com.rjconsultores.ventaboletos.entidad.EventoExtra
- com.rjconsultores.ventaboletos.entidad.TipoEventoExtra
-
- com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra
-
- com.rjconsultores.ventaboletos.entidad.TarjetaViaje
- com.rjconsultores.ventaboletos.entidad.Cliente
- com.rjconsultores.ventaboletos.entidad.ClienteDireccion
-
- com.rjconsultores.ventaboletos.entidad.TarjetaCredito
-
- com.rjconsultores.ventaboletos.entidad.Aidf
- com.rjconsultores.ventaboletos.entidad.AidfEspecie
- com.rjconsultores.ventaboletos.entidad.AidfTipo
- com.rjconsultores.ventaboletos.entidad.TipoMovimentacion
-
- com.rjconsultores.ventaboletos.entidad.PtovtaTipoEstoque
-
- com.rjconsultores.ventaboletos.entidad.AbastoCentral
- com.rjconsultores.ventaboletos.entidad.AbastoHisto
-
- com.rjconsultores.ventaboletos.entidad.Clasificacion
- com.rjconsultores.ventaboletos.entidad.AbastoBoleto
- com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto
-
- com.rjconsultores.ventaboletos.entidad.FolioPreimpreso
-
- com.rjconsultores.ventaboletos.entidad.RequisicionBoleto
-
- com.rjconsultores.ventaboletos.entidad.InscricaoEstadual
-
-
- com.rjconsultores.ventaboletos.entidad.OCD
-
- com.rjconsultores.ventaboletos.entidad.OCDParam
-
- com.rjconsultores.ventaboletos.entidad.OCDPtoVtaParam
-
- com.rjconsultores.ventaboletos.entidad.FiscalImpressora
- com.rjconsultores.ventaboletos.entidad.FiscalImpressoraEstado
- com.rjconsultores.ventaboletos.entidad.FechamentoParamgeral
- com.rjconsultores.ventaboletos.entidad.FechamentoParamptovta
- com.rjconsultores.ventaboletos.entidad.FechamentoBoleto
- com.rjconsultores.ventaboletos.entidad.FechamentoCntcorrente
- com.rjconsultores.ventaboletos.entidad.TipoIdentificacion
- com.rjconsultores.ventaboletos.entidad.Hotel
- com.rjconsultores.ventaboletos.entidad.PrecoApanhe
- com.rjconsultores.ventaboletos.entidad.EnderecoApanhe
- com.rjconsultores.ventaboletos.entidad.VendaPacote
- com.rjconsultores.ventaboletos.entidad.ClientePacote
- com.rjconsultores.ventaboletos.entidad.TarifaVendaPacote
- com.rjconsultores.ventaboletos.entidad.PacoteFormapago
- com.rjconsultores.ventaboletos.entidad.PacoteDescontoBilhete
- com.rjconsultores.ventaboletos.entidad.PacoteConvenio
-
- com.rjconsultores.ventaboletos.entidad.FiscalTotnaofiscalEmpresa
- com.rjconsultores.ventaboletos.entidad.FiscalFormapagoEmpresa
- com.rjconsultores.ventaboletos.entidad.FiscalRelgerencialEmpresa
- com.rjconsultores.ventaboletos.entidad.TarifaKm
- com.rjconsultores.ventaboletos.entidad.PrecioVentaja
- com.rjconsultores.ventaboletos.entidad.ClienteDescuento
- com.rjconsultores.ventaboletos.entidad.Peaje
- com.rjconsultores.ventaboletos.entidad.CasetaPeaje
- com.rjconsultores.ventaboletos.entidad.PrecioFixoPedagio
- com.rjconsultores.ventaboletos.entidad.RutaCaseta
-
- com.rjconsultores.ventaboletos.entidad.ConvenioTramo
- com.rjconsultores.ventaboletos.entidad.ConvenioUsuario
- com.rjconsultores.ventaboletos.entidad.ConvenioPuntoVenta
- com.rjconsultores.ventaboletos.entidad.ItemDesconto
- com.rjconsultores.ventaboletos.entidad.DescontoComissao
- com.rjconsultores.ventaboletos.entidad.Conferencia
- com.rjconsultores.ventaboletos.entidad.LogConferencia
- com.rjconsultores.ventaboletos.entidad.ContaCorrentePtoVta
- com.rjconsultores.ventaboletos.entidad.TipoOperacionCC
- com.rjconsultores.ventaboletos.entidad.ExcepcionPeaje
- com.rjconsultores.ventaboletos.entidad.ExcepcionPeajeVigencia
- com.rjconsultores.ventaboletos.entidad.EmpresaContaBancaria
- com.rjconsultores.ventaboletos.entidad.ConvenioEmpresa
- com.rjconsultores.ventaboletos.entidad.ConvenioRuta
- com.rjconsultores.ventaboletos.entidad.ComEmpCategoria
- com.rjconsultores.ventaboletos.entidad.ComEmpFormapago
- com.rjconsultores.ventaboletos.entidad.ComEmpTipoEventoExtra
- com.rjconsultores.ventaboletos.entidad.TarifaMinimaCategoria
- com.rjconsultores.ventaboletos.entidad.FiscalAliquotaEmpresa
- com.rjconsultores.ventaboletos.entidad.ComEmpConferencia
- com.rjconsultores.ventaboletos.entidad.MensajePuntoVenta
- com.rjconsultores.ventaboletos.entidad.MensajeEmpresa
- com.rjconsultores.ventaboletos.entidad.MensajeUsuario
- com.rjconsultores.ventaboletos.entidad.Mensaje
- com.rjconsultores.ventaboletos.entidad.ClasseIndicePeaje
- com.rjconsultores.ventaboletos.entidad.TipoInformativoComissao
- com.rjconsultores.ventaboletos.entidad.EmbarqueCatracaRodoviaria
- com.rjconsultores.ventaboletos.entidad.ConferenciaPendencia
- com.rjconsultores.ventaboletos.entidad.AuditModule
- com.rjconsultores.ventaboletos.entidad.AuditService
- com.rjconsultores.ventaboletos.entidad.AuditLog
- com.rjconsultores.ventaboletos.entidad.Caja
- com.rjconsultores.ventaboletos.entidad.CajaDetPago
- com.rjconsultores.ventaboletos.entidad.CajaDiversos
- com.rjconsultores.ventaboletos.entidad.CajaDiversosPago
- com.rjconsultores.ventaboletos.entidad.CajaFormaPago
- com.rjconsultores.ventaboletos.entidad.CajaTarjeta
- com.rjconsultores.ventaboletos.entidad.NotaCreditoVendaPacote
- com.rjconsultores.ventaboletos.entidad.OCDDatosPagamento
- com.rjconsultores.ventaboletos.entidad.Boleto
- com.rjconsultores.ventaboletos.entidad.HistoricoPuntoVenta
- com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaContaBancaria
- com.rjconsultores.ventaboletos.entidad.RutaEmbarqueDesembarque
- com.rjconsultores.ventaboletos.entidad.EsquemaCorridaEmbarqueDesembarque
- com.rjconsultores.ventaboletos.entidad.ContaMD
- com.rjconsultores.ventaboletos.entidad.PtovtaContaMD
- com.rjconsultores.ventaboletos.entidad.MensagemRecusa
- com.rjconsultores.ventaboletos.entidad.OrgaoEmpParam
- com.rjconsultores.ventaboletos.entidad.ComissaoReceita
- com.rjconsultores.ventaboletos.entidad.IntegracaoTotvs
- com.rjconsultores.ventaboletos.entidad.PricingEspecificoCategoria
- com.rjconsultores.ventaboletos.entidad.EmpresaEmail
- com.rjconsultores.ventaboletos.entidad.EmpresaEmailEComerce
- com.rjconsultores.ventaboletos.entidad.EmpresaEmailConfig
- com.rjconsultores.ventaboletos.entidad.EmpresaSaferConfig
- com.rjconsultores.ventaboletos.entidad.CtrlFechamentoCaixa
- com.rjconsultores.ventaboletos.entidad.PtovtaAntifraude
- com.rjconsultores.ventaboletos.entidad.OperadorEmbarcada
- com.rjconsultores.ventaboletos.entidad.OperadorEmbarcadaLinha
- com.rjconsultores.ventaboletos.entidad.OperadorEmbarcadaServico
- com.rjconsultores.ventaboletos.entidad.LogHistoricoContingencia
- com.rjconsultores.ventaboletos.entidad.EmpresaTrocoSimples
- com.rjconsultores.ventaboletos.entidad.Imagem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ com.rjconsultores.ventaboletos.entidad.RegionMetropolitana
+ com.rjconsultores.ventaboletos.entidad.Comissao
+ com.rjconsultores.ventaboletos.entidad.ClienteCurso
+ com.rjconsultores.ventaboletos.entidad.PacoteTarifa
+ com.rjconsultores.ventaboletos.entidad.TipoTarifaPacote
+ com.rjconsultores.ventaboletos.entidad.ItemAdicional
+ com.rjconsultores.ventaboletos.entidad.PacoteItem
+ com.rjconsultores.ventaboletos.entidad.Pacote
+ com.rjconsultores.ventaboletos.entidad.AbastoBoleto
+ com.rjconsultores.ventaboletos.entidad.AutobusDoc
+ com.rjconsultores.ventaboletos.entidad.Clasificacion
+ com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto
+ com.rjconsultores.ventaboletos.entidad.FolioPreimpreso
+ com.rjconsultores.ventaboletos.entidad.RequisicionBoleto
+ com.rjconsultores.ventaboletos.entidad.ClienteFidelidad
+ com.rjconsultores.ventaboletos.entidad.EstacionImpresora
+ com.rjconsultores.ventaboletos.entidad.AlertaCtrl
+ com.rjconsultores.ventaboletos.entidad.ConfRestricaoExcecao
+ com.rjconsultores.ventaboletos.entidad.ConfRestricaoTramo
+ com.rjconsultores.ventaboletos.entidad.AliasServico
+ com.rjconsultores.ventaboletos.entidad.Autobus
+ com.rjconsultores.ventaboletos.entidad.Autorizacion
+ com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil
+ com.rjconsultores.ventaboletos.entidad.Articulo
+ com.rjconsultores.ventaboletos.entidad.AsientoExclusivo
+ com.rjconsultores.ventaboletos.entidad.Banco
+ com.rjconsultores.ventaboletos.entidad.CancelacionCtrl
+ com.rjconsultores.ventaboletos.entidad.CancelacionCargo
+ com.rjconsultores.ventaboletos.entidad.CasetaPeajeExcepcion
+ com.rjconsultores.ventaboletos.entidad.Categoria
+ com.rjconsultores.ventaboletos.entidad.CategoriaBloqueioImpPosterior
+ com.rjconsultores.ventaboletos.entidad.CategoriaClase
+ com.rjconsultores.ventaboletos.entidad.CategoriaCorrida
+ com.rjconsultores.ventaboletos.entidad.CategoriaCtrl
+ com.rjconsultores.ventaboletos.entidad.CategoriaDescuento
+ com.rjconsultores.ventaboletos.entidad.CategoriaMarca
+ com.rjconsultores.ventaboletos.entidad.CategoriaMercado
+ com.rjconsultores.ventaboletos.entidad.CategoriaOrgao
+ com.rjconsultores.ventaboletos.entidad.CategoriaRuta
+ com.rjconsultores.ventaboletos.entidad.CategoriaPeriodo
+ com.rjconsultores.ventaboletos.entidad.CategoriaTipoPtoVta
+ com.rjconsultores.ventaboletos.entidad.Ciudad
+ com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa
+ com.rjconsultores.ventaboletos.entidad.Colonia
+ com.rjconsultores.ventaboletos.entidad.ClaseServicio
+ com.rjconsultores.ventaboletos.entidad.ClaseservicioEquivalencia
+ com.rjconsultores.ventaboletos.entidad.ComisionistaExterno
+ com.rjconsultores.ventaboletos.entidad.CompaniaBancaria
+ com.rjconsultores.ventaboletos.entidad.Conductor
+ com.rjconsultores.ventaboletos.entidad.ConfigRestriccionPago
+ com.rjconsultores.ventaboletos.entidad.ConfRestricaoCanalVenta
+ com.rjconsultores.ventaboletos.entidad.ConfRestricaoPtovta
+ com.rjconsultores.ventaboletos.entidad.ConfRestricaoVendaWeb
+ com.rjconsultores.ventaboletos.entidad.Convenio
+ com.rjconsultores.ventaboletos.entidad.ConvenioDet
+ com.rjconsultores.ventaboletos.entidad.Constante
+ com.rjconsultores.ventaboletos.entidad.Corrida
+ com.rjconsultores.ventaboletos.entidad.CorridaCtrl
+ com.rjconsultores.ventaboletos.entidad.CorridaTramo
+ com.rjconsultores.ventaboletos.entidad.Cortesia
+ com.rjconsultores.ventaboletos.entidad.CortesiaBeneficiario
+ com.rjconsultores.ventaboletos.entidad.CortesiaDireccion
+ com.rjconsultores.ventaboletos.entidad.Conexion
+ com.rjconsultores.ventaboletos.entidad.ConexionConf
+ com.rjconsultores.ventaboletos.entidad.ConexionTemp
+ com.rjconsultores.ventaboletos.entidad.ConexionCtrl
+ com.rjconsultores.ventaboletos.entidad.ConexionCtrlTemp
+ com.rjconsultores.ventaboletos.entidad.ConexionDescuento
+ com.rjconsultores.ventaboletos.entidad.ConexionExcepcion
+ com.rjconsultores.ventaboletos.entidad.ConexionExcepcionRuta
+ com.rjconsultores.ventaboletos.entidad.CtrlSerieEmbarcada
+ com.rjconsultores.ventaboletos.entidad.CtrlSerieBPe
+ com.rjconsultores.ventaboletos.entidad.CuponConvenio
+ com.rjconsultores.ventaboletos.entidad.CuponSecretaria
+ com.rjconsultores.ventaboletos.entidad.Curso
+ com.rjconsultores.ventaboletos.entidad.Custom
+ com.rjconsultores.ventaboletos.entidad.DetDiagramaAutobus
+ com.rjconsultores.ventaboletos.entidad.DepositoBancario
+ com.rjconsultores.ventaboletos.entidad.DiagramaAutobus
+ com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada
+ com.rjconsultores.ventaboletos.entidad.Division
+ com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada
+ com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcadaHistorico
+ com.rjconsultores.ventaboletos.entidad.Empleado
+ com.rjconsultores.ventaboletos.entidad.Empresa
+ com.rjconsultores.ventaboletos.entidad.EmpresaImposto
+ com.rjconsultores.ventaboletos.entidad.EmpresaEquivalencia
+ com.rjconsultores.ventaboletos.entidad.Estacion
+ com.rjconsultores.ventaboletos.entidad.EstacionSitef
+ com.rjconsultores.ventaboletos.entidad.EstacionRioCard
+ com.rjconsultores.ventaboletos.entidad.Escola
+ com.rjconsultores.ventaboletos.entidad.Estado
+ com.rjconsultores.ventaboletos.entidad.EsquemaAsiento
+ com.rjconsultores.ventaboletos.entidad.EsquemaAgrupacion
+ com.rjconsultores.ventaboletos.entidad.EsquemaCorrida
+ com.rjconsultores.ventaboletos.entidad.EsquemaOperacional
+ com.rjconsultores.ventaboletos.entidad.EsquemaTramo
+ com.rjconsultores.ventaboletos.entidad.Estado
+ com.rjconsultores.ventaboletos.entidad.ExcepcionRedondo
+ com.rjconsultores.ventaboletos.entidad.Feriado
+ com.rjconsultores.ventaboletos.entidad.FormaPago
+ com.rjconsultores.ventaboletos.entidad.FormaPagoDet
+ com.rjconsultores.ventaboletos.entidad.GrupoCategoria
+ com.rjconsultores.ventaboletos.entidad.GrupoCortesia
+ com.rjconsultores.ventaboletos.entidad.GrupoRuta
+ com.rjconsultores.ventaboletos.entidad.FuncionSistema
+ com.rjconsultores.ventaboletos.entidad.LogDespesaReceitaDiversa
+ com.rjconsultores.ventaboletos.entidad.Marca
+ com.rjconsultores.ventaboletos.entidad.MarcaAutobus
+ com.rjconsultores.ventaboletos.entidad.MercadoCompetido
+ com.rjconsultores.ventaboletos.entidad.MerchantBancario
+ com.rjconsultores.ventaboletos.entidad.Moneda
+ com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ
+ com.rjconsultores.ventaboletos.entidad.MonitoramentoCCF
+ com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio
+ com.rjconsultores.ventaboletos.entidad.MotivoCancelacion
+ com.rjconsultores.ventaboletos.entidad.MotivoDevolucaoBilhete
+ com.rjconsultores.ventaboletos.entidad.MotivoCancelVendaPacote
+ com.rjconsultores.ventaboletos.entidad.MotivocancelacionEquivalencia
+ com.rjconsultores.ventaboletos.entidad.MotivoReimpresion
+ com.rjconsultores.ventaboletos.entidad.MotivoViaje
+ com.rjconsultores.ventaboletos.entidad.Nodo
+ com.rjconsultores.ventaboletos.entidad.OrgaoCancelacion
+ com.rjconsultores.ventaboletos.entidad.OrgaoConcedente
+ com.rjconsultores.ventaboletos.entidad.OrgaoTramo
+ com.rjconsultores.ventaboletos.entidad.Pais
+ com.rjconsultores.ventaboletos.entidad.Parada
+ com.rjconsultores.ventaboletos.entidad.ParadaCodOrgaoConcedente
+ com.rjconsultores.ventaboletos.entidad.ParadaEquivalencia
+ com.rjconsultores.ventaboletos.entidad.ParamAcumulaMasivo
+ com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto
+ com.rjconsultores.ventaboletos.entidad.ParamCanjePunto
+ com.rjconsultores.ventaboletos.entidad.ParamCostoTarjeta
+ com.rjconsultores.ventaboletos.entidad.ParamCompraPunto
+ com.rjconsultores.ventaboletos.entidad.ParamRecoleccion
+ com.rjconsultores.ventaboletos.entidad.ParamConexion
+ com.rjconsultores.ventaboletos.entidad.Perfil
+ com.rjconsultores.ventaboletos.entidad.PerfilFuncion
+ com.rjconsultores.ventaboletos.entidad.PeriodoVacacional
+ com.rjconsultores.ventaboletos.entidad.Plaza
+ com.rjconsultores.ventaboletos.entidad.Pricing
+ com.rjconsultores.ventaboletos.entidad.PricingFormapago
+ com.rjconsultores.ventaboletos.entidad.PricingImporte
+ com.rjconsultores.ventaboletos.entidad.PricingVigencia
+ com.rjconsultores.ventaboletos.entidad.PricingClase
+ com.rjconsultores.ventaboletos.entidad.PricingMarca
+ com.rjconsultores.ventaboletos.entidad.PricingMercado
+ com.rjconsultores.ventaboletos.entidad.PricingDia
+ com.rjconsultores.ventaboletos.entidad.PricingCorrida
+ com.rjconsultores.ventaboletos.entidad.PricingOcupaAntecipa
+ com.rjconsultores.ventaboletos.entidad.PricingPuntoVenta
+ com.rjconsultores.ventaboletos.entidad.PricingCategoria
+ com.rjconsultores.ventaboletos.entidad.PricingTipoPtoVta
+ com.rjconsultores.ventaboletos.entidad.PricingTipoServicio
+ com.rjconsultores.ventaboletos.entidad.PricingAsiento
+ com.rjconsultores.ventaboletos.entidad.PricingEspecifico
+ com.rjconsultores.ventaboletos.entidad.PricingEspecificoOcupacion
+ com.rjconsultores.ventaboletos.entidad.PricingEspecificoAgencia
+ com.rjconsultores.ventaboletos.entidad.PricingEspecificoCanalVendas
+ com.rjconsultores.ventaboletos.entidad.PricingClasseTarifaria
+ com.rjconsultores.ventaboletos.entidad.PricingRuta
+ com.rjconsultores.ventaboletos.entidad.ProductoServicio
+ com.rjconsultores.ventaboletos.entidad.ProdClaseServicio
+ com.rjconsultores.ventaboletos.entidad.ProdFormaPago
+ com.rjconsultores.ventaboletos.entidad.ProdMarca
+ com.rjconsultores.ventaboletos.entidad.ProdPrecio
+ com.rjconsultores.ventaboletos.entidad.ProdMercado
+ com.rjconsultores.ventaboletos.entidad.ProdPuntoVenta
+ com.rjconsultores.ventaboletos.entidad.ProdRuta
+ com.rjconsultores.ventaboletos.entidad.ProdTipoptovta
+ com.rjconsultores.ventaboletos.entidad.ProdVigencia
+ com.rjconsultores.ventaboletos.entidad.ProductoServicio
+ com.rjconsultores.ventaboletos.entidad.PtovtaAgencia
+ com.rjconsultores.ventaboletos.entidad.PtovtaCatInd
+ com.rjconsultores.ventaboletos.entidad.PtoVtaCheckin
+ com.rjconsultores.ventaboletos.entidad.PtoVtaSeguro
+ com.rjconsultores.ventaboletos.entidad.PtovtaAntecipacomissao
+ com.rjconsultores.ventaboletos.entidad.InstiFinanceira
+ com.rjconsultores.ventaboletos.entidad.PtovtaComissao
+ com.rjconsultores.ventaboletos.entidad.PtovtaDiversos
+ com.rjconsultores.ventaboletos.entidad.PtovtaEstoque
+ com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaBloqueada
+ com.rjconsultores.ventaboletos.entidad.PtovtaHorario
+ com.rjconsultores.ventaboletos.entidad.PtovtaTitular
+ com.rjconsultores.ventaboletos.entidad.PtovtaEmpresa
+ com.rjconsultores.ventaboletos.entidad.PtoVtaUsuarioBancario
+ com.rjconsultores.ventaboletos.entidad.PuntoVenta
+ com.rjconsultores.ventaboletos.entidad.Redondeo
+ com.rjconsultores.ventaboletos.entidad.RedondeoCtrl
+ com.rjconsultores.ventaboletos.entidad.RedondeoMarca
+ com.rjconsultores.ventaboletos.entidad.ReservacionCategoria
+ com.rjconsultores.ventaboletos.entidad.ReservacionClase
+ com.rjconsultores.ventaboletos.entidad.ReservacionCtrl
+ com.rjconsultores.ventaboletos.entidad.ReservacionMarca
+ com.rjconsultores.ventaboletos.entidad.ReservacionMercado
+ com.rjconsultores.ventaboletos.entidad.ReservacionPuntoVenta
+ com.rjconsultores.ventaboletos.entidad.RestriccionPago
+ com.rjconsultores.ventaboletos.entidad.RolOperativo
+ com.rjconsultores.ventaboletos.entidad.Ruta
+ com.rjconsultores.ventaboletos.entidad.RutaCombinacion
+ com.rjconsultores.ventaboletos.entidad.RutaEmpresa
+ com.rjconsultores.ventaboletos.entidad.RutaSecuencia
+ com.rjconsultores.ventaboletos.entidad.RhPagoConductor
+ com.rjconsultores.ventaboletos.entidad.Secretaria
+ com.rjconsultores.ventaboletos.entidad.SecretariaEmpresa
+ com.rjconsultores.ventaboletos.entidad.SeguradoraEmpresa
+ com.rjconsultores.ventaboletos.entidad.SeguroKm
+ com.rjconsultores.ventaboletos.entidad.SegVKM
+ com.rjconsultores.ventaboletos.entidad.SeguroTarifa
+ com.rjconsultores.ventaboletos.entidad.Sistema
+ com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueKm
+ com.rjconsultores.ventaboletos.entidad.TaxaEmbLevante
+ com.rjconsultores.ventaboletos.entidad.TaxaEmbLevanteCtrl
+ com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada
+ com.rjconsultores.ventaboletos.entidad.TarjetaFidelidad
+ com.rjconsultores.ventaboletos.entidad.TarjetaRecaudacion
+ com.rjconsultores.ventaboletos.entidad.Tarifa
+ com.rjconsultores.ventaboletos.entidad.TarifaOficial
+ com.rjconsultores.ventaboletos.entidad.TarifaHist
+ com.rjconsultores.ventaboletos.entidad.TarifaMinima
+ com.rjconsultores.ventaboletos.entidad.TarifaCategoria
+ com.rjconsultores.ventaboletos.entidad.TarifaTipoptovta
+ com.rjconsultores.ventaboletos.entidad.TipoConvenio
+ com.rjconsultores.ventaboletos.entidad.TipoCambioCtrl
+ com.rjconsultores.ventaboletos.entidad.TipoCambioCiudad
+ com.rjconsultores.ventaboletos.entidad.TipoCorte
+ com.rjconsultores.ventaboletos.entidad.TipoCortesiaDescuento
+ com.rjconsultores.ventaboletos.entidad.TipoCortesia
+ com.rjconsultores.ventaboletos.entidad.TipoDocAutobus
+ com.rjconsultores.ventaboletos.entidad.TipoDomicilio
+ com.rjconsultores.ventaboletos.entidad.TipoEmpleado
+ com.rjconsultores.ventaboletos.entidad.TipoEventoExtraEmpresa
+ com.rjconsultores.ventaboletos.entidad.TipoEventoExtraPtoVta
+ com.rjconsultores.ventaboletos.entidad.TipoMovimiento
+ com.rjconsultores.ventaboletos.entidad.TipoOcupacion
+ com.rjconsultores.ventaboletos.entidad.TipoParada
+ com.rjconsultores.ventaboletos.entidad.TipoPuntoVenta
+ com.rjconsultores.ventaboletos.entidad.TipoServicio
+ com.rjconsultores.ventaboletos.entidad.TipoVenta
+ com.rjconsultores.ventaboletos.entidad.Tramo
+ com.rjconsultores.ventaboletos.entidad.TramoServicio
+ com.rjconsultores.ventaboletos.entidad.TramoKmServicio
+ com.rjconsultores.ventaboletos.entidad.TramoTiempo
+ com.rjconsultores.ventaboletos.entidad.TramoKm
+ com.rjconsultores.ventaboletos.entidad.Turno
+ com.rjconsultores.ventaboletos.entidad.Usuario
+ com.rjconsultores.ventaboletos.entidad.UsuarioBancario
+ com.rjconsultores.ventaboletos.entidad.UsuarioEmpresa
+ com.rjconsultores.ventaboletos.entidad.UsuarioPerfil
+ com.rjconsultores.ventaboletos.entidad.UsuarioSesion
+ com.rjconsultores.ventaboletos.entidad.UsuarioUbicacion
+ com.rjconsultores.ventaboletos.entidad.Via
+ com.rjconsultores.ventaboletos.entidad.VigenciaTarifa
+ com.rjconsultores.ventaboletos.entidad.Zona
+ com.rjconsultores.ventaboletos.entidad.ParamArticulo
+ com.rjconsultores.ventaboletos.entidad.EventoExtra
+ com.rjconsultores.ventaboletos.entidad.TipoEventoExtra
+ com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra
+ com.rjconsultores.ventaboletos.entidad.TarjetaViaje
+ com.rjconsultores.ventaboletos.entidad.Cliente
+ com.rjconsultores.ventaboletos.entidad.ClienteDireccion
+ com.rjconsultores.ventaboletos.entidad.TarjetaCredito
+ com.rjconsultores.ventaboletos.entidad.Aidf
+ com.rjconsultores.ventaboletos.entidad.AidfEspecie
+ com.rjconsultores.ventaboletos.entidad.AidfTipo
+ com.rjconsultores.ventaboletos.entidad.TipoMovimentacion
+ com.rjconsultores.ventaboletos.entidad.PtovtaTipoEstoque
+ com.rjconsultores.ventaboletos.entidad.AbastoCentral
+ com.rjconsultores.ventaboletos.entidad.AbastoHisto
+ com.rjconsultores.ventaboletos.entidad.Clasificacion
+ com.rjconsultores.ventaboletos.entidad.AbastoBoleto
+ com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto
+ com.rjconsultores.ventaboletos.entidad.FolioPreimpreso
+ com.rjconsultores.ventaboletos.entidad.RequisicionBoleto
+ com.rjconsultores.ventaboletos.entidad.InscricaoEstadual
+ com.rjconsultores.ventaboletos.entidad.OCD
+ com.rjconsultores.ventaboletos.entidad.OCDParam
+ com.rjconsultores.ventaboletos.entidad.OCDPtoVtaParam
+ com.rjconsultores.ventaboletos.entidad.FiscalImpressora
+ com.rjconsultores.ventaboletos.entidad.FiscalImpressoraEstado
+ com.rjconsultores.ventaboletos.entidad.FechamentoParamgeral
+ com.rjconsultores.ventaboletos.entidad.FechamentoParamptovta
+ com.rjconsultores.ventaboletos.entidad.FechamentoBoleto
+ com.rjconsultores.ventaboletos.entidad.FechamentoCntcorrente
+ com.rjconsultores.ventaboletos.entidad.TipoIdentificacion
+ com.rjconsultores.ventaboletos.entidad.Hotel
+ com.rjconsultores.ventaboletos.entidad.PrecoApanhe
+ com.rjconsultores.ventaboletos.entidad.EnderecoApanhe
+ com.rjconsultores.ventaboletos.entidad.VendaPacote
+ com.rjconsultores.ventaboletos.entidad.ClientePacote
+ com.rjconsultores.ventaboletos.entidad.TarifaVendaPacote
+ com.rjconsultores.ventaboletos.entidad.PacoteFormapago
+ com.rjconsultores.ventaboletos.entidad.PacoteDescontoBilhete
+ com.rjconsultores.ventaboletos.entidad.PacoteConvenio
+ com.rjconsultores.ventaboletos.entidad.FiscalTotnaofiscalEmpresa
+ com.rjconsultores.ventaboletos.entidad.FiscalFormapagoEmpresa
+ com.rjconsultores.ventaboletos.entidad.FiscalRelgerencialEmpresa
+ com.rjconsultores.ventaboletos.entidad.TarifaKm
+ com.rjconsultores.ventaboletos.entidad.PrecioVentaja
+ com.rjconsultores.ventaboletos.entidad.ClienteDescuento
+ com.rjconsultores.ventaboletos.entidad.Peaje
+ com.rjconsultores.ventaboletos.entidad.CasetaPeaje
+ com.rjconsultores.ventaboletos.entidad.PrecioFixoPedagio
+ com.rjconsultores.ventaboletos.entidad.RutaCaseta
+ com.rjconsultores.ventaboletos.entidad.ConvenioTramo
+ com.rjconsultores.ventaboletos.entidad.ConvenioUsuario
+ com.rjconsultores.ventaboletos.entidad.ConvenioPuntoVenta
+ com.rjconsultores.ventaboletos.entidad.ItemDesconto
+ com.rjconsultores.ventaboletos.entidad.DescontoComissao
+ com.rjconsultores.ventaboletos.entidad.Conferencia
+ com.rjconsultores.ventaboletos.entidad.LogConferencia
+ com.rjconsultores.ventaboletos.entidad.ContaCorrentePtoVta
+ com.rjconsultores.ventaboletos.entidad.TipoOperacionCC
+ com.rjconsultores.ventaboletos.entidad.ExcepcionPeaje
+ com.rjconsultores.ventaboletos.entidad.ExcepcionPeajeVigencia
+ com.rjconsultores.ventaboletos.entidad.EmpresaContaBancaria
+ com.rjconsultores.ventaboletos.entidad.ConvenioEmpresa
+ com.rjconsultores.ventaboletos.entidad.ConvenioRuta
+ com.rjconsultores.ventaboletos.entidad.ComEmpCategoria
+ com.rjconsultores.ventaboletos.entidad.ComEmpFormapago
+ com.rjconsultores.ventaboletos.entidad.ComEmpTipoEventoExtra
+ com.rjconsultores.ventaboletos.entidad.TarifaMinimaCategoria
+ com.rjconsultores.ventaboletos.entidad.FiscalAliquotaEmpresa
+ com.rjconsultores.ventaboletos.entidad.ComEmpConferencia
+ com.rjconsultores.ventaboletos.entidad.MensajePuntoVenta
+ com.rjconsultores.ventaboletos.entidad.MensajeEmpresa
+ com.rjconsultores.ventaboletos.entidad.MensajeUsuario
+ com.rjconsultores.ventaboletos.entidad.Mensaje
+ com.rjconsultores.ventaboletos.entidad.ClasseIndicePeaje
+ com.rjconsultores.ventaboletos.entidad.TipoInformativoComissao
+ com.rjconsultores.ventaboletos.entidad.EmbarqueCatracaRodoviaria
+ com.rjconsultores.ventaboletos.entidad.ConferenciaPendencia
+ com.rjconsultores.ventaboletos.entidad.AuditModule
+ com.rjconsultores.ventaboletos.entidad.AuditService
+ com.rjconsultores.ventaboletos.entidad.AuditLog
+ com.rjconsultores.ventaboletos.entidad.Caja
+ com.rjconsultores.ventaboletos.entidad.CajaDetPago
+ com.rjconsultores.ventaboletos.entidad.CajaDiversos
+ com.rjconsultores.ventaboletos.entidad.CajaDiversosPago
+ com.rjconsultores.ventaboletos.entidad.CajaFormaPago
+ com.rjconsultores.ventaboletos.entidad.CajaTarjeta
+ com.rjconsultores.ventaboletos.entidad.NotaCreditoVendaPacote
+ com.rjconsultores.ventaboletos.entidad.OCDDatosPagamento
+ com.rjconsultores.ventaboletos.entidad.Boleto
+ com.rjconsultores.ventaboletos.entidad.HistoricoPuntoVenta
+ com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaContaBancaria
+ com.rjconsultores.ventaboletos.entidad.RutaEmbarqueDesembarque
+ com.rjconsultores.ventaboletos.entidad.EsquemaCorridaEmbarqueDesembarque
+ com.rjconsultores.ventaboletos.entidad.ContaMD
+ com.rjconsultores.ventaboletos.entidad.PtovtaContaMD
+ com.rjconsultores.ventaboletos.entidad.MensagemRecusa
+ com.rjconsultores.ventaboletos.entidad.OrgaoEmpParam
+ com.rjconsultores.ventaboletos.entidad.ComissaoReceita
+ com.rjconsultores.ventaboletos.entidad.IntegracaoTotvs
+ com.rjconsultores.ventaboletos.entidad.PricingEspecificoCategoria
+ com.rjconsultores.ventaboletos.entidad.EmpresaEmail
+ com.rjconsultores.ventaboletos.entidad.EmpresaEmailEComerce
+ com.rjconsultores.ventaboletos.entidad.EmpresaEmailConfig
+ com.rjconsultores.ventaboletos.entidad.EmpresaSaferConfig
+ com.rjconsultores.ventaboletos.entidad.CtrlFechamentoCaixa
+ com.rjconsultores.ventaboletos.entidad.PtovtaAntifraude
+ com.rjconsultores.ventaboletos.entidad.OperadorEmbarcada
+ com.rjconsultores.ventaboletos.entidad.OperadorEmbarcadaLinha
+ com.rjconsultores.ventaboletos.entidad.OperadorEmbarcadaServico
+ com.rjconsultores.ventaboletos.entidad.LogHistoricoContingencia
+ com.rjconsultores.ventaboletos.entidad.EmpresaTrocoSimples
+ com.rjconsultores.ventaboletos.entidad.Imagem
com.rjconsultores.ventaboletos.entidad.RutaIcmsExcepcion
- com.rjconsultores.ventaboletos.entidad.CobrancaAdcPuntoVenta
+ com.rjconsultores.ventaboletos.entidad.CobrancaAdcPuntoVenta
com.rjconsultores.ventaboletos.entidad.CobrancaAdicionalHistorico
com.rjconsultores.ventaboletos.entidad.ConfTotem
com.rjconsultores.ventaboletos.entidad.TarifaEmbarcada
- com.rjconsultores.ventaboletos.entidad.TarifaEmbarcadaHist
- com.rjconsultores.ventaboletos.entidad.Cotacao
- com.rjconsultores.ventaboletos.entidad.AliquotaEstadoDestino
+ com.rjconsultores.ventaboletos.entidad.TarifaEmbarcadaHist
+ com.rjconsultores.ventaboletos.entidad.Cotacao
+ com.rjconsultores.ventaboletos.entidad.AliquotaEstadoDestino
com.rjconsultores.ventaboletos.entidad.PricingCtrl
com.rjconsultores.ventaboletos.entidad.ConfRestricaoOrgaoConcedente
com.rjconsultores.ventaboletos.entidad.ConfRestricaoRutas
@@ -519,7 +419,8 @@
com.rjconsultores.ventaboletos.entidad.PtovtaExcecaoMultaCanc
com.rjconsultores.ventaboletos.entidad.RedondeoOrgaoConcedente
com.rjconsultores.ventaboletos.entidad.HistoricoFormaPagoPuntoVenta
- com.rjconsultores.ventaboletos.entidad.EmpresaAdyenConfig
+ com.rjconsultores.ventaboletos.entidad.EmpresaAdyenConfig
+ com.rjconsultores.ventaboletos.entidad.EmpresaCieloLinkConfig
@@ -592,5 +493,4 @@
-
\ No newline at end of file
diff --git a/web/WEB-INF/i3-label_en.label b/web/WEB-INF/i3-label_en.label
index 78704aa92..be804abc9 100644
--- a/web/WEB-INF/i3-label_en.label
+++ b/web/WEB-INF/i3-label_en.label
@@ -1396,6 +1396,7 @@ editarFormaPagoController.lblCateiraDigitalTrocoSimples.label = Troco Simples
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
+editarFormaPagoController.lblETicket.label=E_Ticket
# Muestra o tipo de Pesquisa Ponto Venda
busquedaTipoPuntoVentaController.window.title = Canal de Venda
@@ -9483,6 +9484,7 @@ editarEmpresaController.limitaCategoriaPorCorridaTooltip= Limita os tipos de pas
editarEmpresaController.configuracaoCieloLink.label= CieloLink
editarEmpresaController.lblCieloUrl.value=URL Cielo
editarEmpresaController.lblSecret.value=Secret
+editarEmpresaController.lblMinutosCancela.value=Minutos Cancelamento
editarEmpresaController.lblMerchantId.value=Merchant ID
editarEmpresaController.lblClientId.value=Cliente ID
diff --git a/web/WEB-INF/i3-label_es_MX.label b/web/WEB-INF/i3-label_es_MX.label
index 241551c82..a46502ec7 100644
--- a/web/WEB-INF/i3-label_es_MX.label
+++ b/web/WEB-INF/i3-label_es_MX.label
@@ -1218,6 +1218,7 @@ editarFormaPagoController.lblCateiraDigitalTrocoSimples.label = Troco Simples
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
+editarFormaPagoController.lblETicket.label=E_Ticket
# Muestra o tipo de Búsqueda Punto de venta
busquedaTipoPuntoVentaController.window.title = Canal de venta
@@ -8692,6 +8693,7 @@ editarEmpresaController.realizaCalculoComissaoPeriodo.ajuda = Realiza o calculo
editarEmpresaController.configuracaoCieloLink.label= CieloLink
editarEmpresaController.lblCieloUrl.value=URL Cielo
editarEmpresaController.lblSecret.value=Secret
+editarEmpresaController.lblMinutosCancela.value=Minutos Cancelamento
editarEmpresaController.lblMerchantId.value=Merchant ID
editarEmpresaController.lblClientId.value=Cliente ID
diff --git a/web/WEB-INF/i3-label_pt_BR.label b/web/WEB-INF/i3-label_pt_BR.label
index ee6a7a9aa..cd2a394b8 100644
--- a/web/WEB-INF/i3-label_pt_BR.label
+++ b/web/WEB-INF/i3-label_pt_BR.label
@@ -1397,6 +1397,7 @@ editarFormaPagoController.lblCateiraDigitalTrocoSimples.label = Troco Simples
editarFormaPagoController.lblCateiraDigitalTef.label = TEF
editarFormaPagoController.lblCateiraDigitalTpi.label = TPI
editarFormaPagoController.lblCateiraDigitalCielo.label = Cielo Link
+editarFormaPagoController.lblETicket.label=E_Ticket
# Muestra o tipo de Pesquisa Ponto Venda
busquedaTipoPuntoVentaController.window.title = Canal de Venda
@@ -9484,6 +9485,7 @@ editarEmpresaController.limitaCategoriaPorCorridaTooltip= Limita os tipos de pas
editarEmpresaController.configuracaoCieloLink.label= CieloLink
editarEmpresaController.lblCieloUrl.value=URL Cielo
editarEmpresaController.lblSecret.value=Secret
+editarEmpresaController.lblMinutosCancela.value=Minutos Cancelamento
editarEmpresaController.lblMerchantId.value=Merchant ID
editarEmpresaController.lblClientId.value=Cliente ID
diff --git a/web/gui/catalogos/editarEmpresa.zul b/web/gui/catalogos/editarEmpresa.zul
index 3c17d4f99..bcea1f043 100644
--- a/web/gui/catalogos/editarEmpresa.zul
+++ b/web/gui/catalogos/editarEmpresa.zul
@@ -1,2183 +1,2223 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
-
- Â Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
- Â Â Â Â Â Â Â Â Â Â Â Â
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+ Â Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+ Â Â Â Â Â Â Â Â Â Â Â Â
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/web/index.zul b/web/index.zul
index acef84b87..04590ad5c 100644
--- a/web/index.zul
+++ b/web/index.zul
@@ -33,7 +33,7 @@
-
diff --git a/web/login.zul b/web/login.zul
index 197685d26..de53aaac5 100644
--- a/web/login.zul
+++ b/web/login.zul
@@ -37,7 +37,7 @@
-