diff --git a/pom.xml b/pom.xml
index 51e45b884..844ee13f9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
br.com.rjconsultores
ventaboletosadm
- 1.0.20
+ 1.0.21
war
@@ -55,13 +55,13 @@
br.com.rjconsultores
ModelWeb
- 1.0.15
+ 1.0.16
br.com.rjconsultores
Flyway
- 1.0.6
+ 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/EditarFormaPagoController.java b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarFormaPagoController.java
index 0bb8f2b46..12db2d2ec 100644
--- a/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarFormaPagoController.java
+++ b/src/java/com/rjconsultores/ventaboletos/web/gui/controladores/catalogos/EditarFormaPagoController.java
@@ -74,8 +74,6 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
private Checkbox chkIndVoucherRodoviaria;
- private Checkbox chkIndETicket;
-
private Row rowIdEventoExtra;
private MyComboboxEstandar cmbTipoFormapago;
@@ -146,7 +144,6 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
chkIndEstorno.setChecked(formaPago.getIndProcessoEstorno());
chkIndVoucherRodoviaria.setChecked(formaPago.getIndVoucherRodoviaria());
chkIndTransferenciaReativacao.setChecked(formaPago.getIndTransferenciaReativacao());
- chkIndETicket.setChecked(formaPago.getIndETicket());
if (formaPago.getFormapagoId() == 1) {
cmbTipoFormapago.setDisabled(Boolean.TRUE);
@@ -284,7 +281,6 @@ public class EditarFormaPagoController extends MyGenericForwardComposer {
formaPago.setIndProcessoEstorno(chkIndEstorno.isChecked());
formaPago.setIndVoucherRodoviaria(chkIndVoucherRodoviaria.isChecked());
formaPago.setIndTransferenciaReativacao(chkIndTransferenciaReativacao.isChecked());
- formaPago.setIndETicket(chkIndETicket.isChecked());
if (formaPago.getFormapagoId() == null) {
List lsFP =
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 263a35270..be804abc9 100644
--- a/web/WEB-INF/i3-label_en.label
+++ b/web/WEB-INF/i3-label_en.label
@@ -9484,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 9109976e9..a46502ec7 100644
--- a/web/WEB-INF/i3-label_es_MX.label
+++ b/web/WEB-INF/i3-label_es_MX.label
@@ -8693,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 1162d63a4..cd2a394b8 100644
--- a/web/WEB-INF/i3-label_pt_BR.label
+++ b/web/WEB-INF/i3-label_pt_BR.label
@@ -9485,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/gui/catalogos/editarFormaPago.zul b/web/gui/catalogos/editarFormaPago.zul
index cac56cc52..e2528cd76 100644
--- a/web/gui/catalogos/editarFormaPago.zul
+++ b/web/gui/catalogos/editarFormaPago.zul
@@ -126,11 +126,6 @@
value="${c:l('editarFormaPagoController.lblSomenteTarifa.label')}" />
-
-
-
-
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 @@
-