fixes bug#AL-1786
parent
e8a74f7b33
commit
fa713ecb7c
16
pom.xml
16
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.0.17</version>
|
||||
<version>1.0.21</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<distributionManagement>
|
||||
|
@ -55,13 +55,13 @@
|
|||
<dependency>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.0.13</version>
|
||||
<version>1.0.16</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>Flyway</artifactId>
|
||||
<version>1.0.5</version>
|
||||
<version>1.0.7</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
@ -120,22 +120,24 @@
|
|||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.jboss.spec</groupId>
|
||||
<artifactId>jboss-javaee-all-6.0</artifactId>
|
||||
<version>3.0.3.Final</version>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>javax.servlet-api</artifactId>
|
||||
<version>4.0.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>commons-beanutils</groupId>
|
||||
<artifactId>commons-beanutils</artifactId>
|
||||
<version>1.8.2</version>
|
||||
<version>1.9.4</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
<version>1.10</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.zkoss.common</groupId>
|
||||
<artifactId>zcommon</artifactId>
|
||||
|
|
|
@ -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;
|
||||
|
||||
/**
|
||||
|
@ -174,6 +175,38 @@ public class RenderRelatorioJasper {
|
|||
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);
|
||||
}
|
||||
|
|
|
@ -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<Ciudad>();
|
||||
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());
|
||||
|
@ -1013,6 +1040,16 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
|||
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();
|
||||
empresaEmail.setEmpresa(empresa);
|
||||
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -248,8 +248,6 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
|||
|
||||
private Integer numAssentoIntReservaEspecial;
|
||||
|
||||
private List<TipoOcupacion> tipoOcupacoesSemValidacaoList;
|
||||
|
||||
public void aplicarMascara() {
|
||||
Clients.evalJavaScript(
|
||||
"jQuery('#" + txtNumFax.getUuid() + "').mask('(99)9999-9999');jQuery('#"
|
||||
|
@ -299,7 +297,6 @@ 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);
|
||||
|
@ -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"));
|
||||
}
|
||||
|
@ -658,21 +645,6 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
|||
}
|
||||
}
|
||||
|
||||
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("");
|
||||
txtNumRfc2.setValue("");
|
||||
|
@ -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<Cliente> lsCliente = new ArrayList<Cliente>();
|
||||
if (!isNaoValidarCampoOcupacao && (txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) && cmbTipoIdentificacion != null
|
||||
if ((txtNumRfc.getText() != null && !txtNumRfc.getText().isEmpty()) && cmbTipoIdentificacion != null
|
||||
&& cmbTipoIdentificacion.getSelectedItem() != null
|
||||
&& cmbTipoIdentificacion.getSelectedItem().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() {
|
||||
|
@ -1954,6 +1899,9 @@ public class EditarClienteController extends MyGenericForwardComposer {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
private void limparInput() {
|
||||
cmbLinha.setSelectedItem(null);
|
||||
cmbParadaOrigem.setSelectedItem(null);
|
||||
|
|
|
@ -33,72 +33,48 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.AbastoBoleto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AutobusDoc</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Clasificacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FolioPreimpreso
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RequisicionBoleto
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClienteFidelidad
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EstacionImpresora
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FolioPreimpreso</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RequisicionBoleto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClienteFidelidad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EstacionImpresora</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AlertaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoExcecao
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoTramo
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoExcecao</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AliasServico</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Autobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Autorizacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AutorizacionPerfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Articulo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AsientoExclusivo
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AsientoExclusivo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Banco</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCtrl
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCargo
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CancelacionCargo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CasetaPeajeExcepcion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Categoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaBloqueioImpPosterior</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCorrida
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaDescuento
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaDescuento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMercado
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaOrgao</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaRuta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaPeriodo
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaTipoPtoVta
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaPeriodo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CategoriaTipoPtoVta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Ciudad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CoeficienteTarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Colonia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseservicioEquivalencia
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ComisionistaExterno
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CompaniaBancaria
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClaseservicioEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ComisionistaExterno</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CompaniaBancaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Conductor</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfigRestriccionPago
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoCanalVenta
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoPtovta
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoVendaWeb
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfigRestriccionPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoCanalVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoPtovta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConfRestricaoVendaWeb</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Convenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioDet</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Constante</value>
|
||||
|
@ -106,10 +82,8 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.CorridaCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CorridaTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Cortesia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaBeneficiario
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaDireccion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaBeneficiario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CortesiaDireccion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Conexion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionConf</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConexionTemp</value>
|
||||
|
@ -121,14 +95,11 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.CtrlSerieEmbarcada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CtrlSerieBPe</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CuponConvenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CuponSecretaria
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.CuponSecretaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Curso</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Custom</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DetDiagramaAutobus
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DepositoBancario
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DetDiagramaAutobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DepositoBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DiagramaAutobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DispositivoEmbarcada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Division</value>
|
||||
|
@ -137,23 +108,19 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.Empleado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Empresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaImposto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEquivalencia
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EstacionSitef</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EstacionRioCard</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Escola</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAsiento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAgrupacion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaAgrupacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaOperacional
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaOperacional</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EsquemaTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Estado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionRedondo
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ExcepcionRedondo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Feriado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FormaPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FormaPagoDet</value>
|
||||
|
@ -164,24 +131,17 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.LogDespesaReceitaDiversa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Marca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MarcaAutobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MercadoCompetido
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MerchantBancario
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MercadoCompetido</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MerchantBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Moneda</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MonitoramentoCRZ</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MonitoramentoCCF</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MarcaClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoDevolucaoBilhete</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelVendaPacote
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivocancelacionEquivalencia
|
||||
</value>
|
||||
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoReimpresion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoCancelVendaPacote</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivocancelacionEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoReimpresion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.MotivoViaje</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Nodo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OrgaoCancelacion</value>
|
||||
|
@ -190,47 +150,32 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.Pais</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Parada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParadaCodOrgaoConcedente</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParadaEquivalencia
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaMasivo
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCanjePunto
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCostoTarjeta
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCompraPunto
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamRecoleccion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParadaEquivalencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaMasivo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamAcumulaPunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCanjePunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCostoTarjeta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamCompraPunto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamRecoleccion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamConexion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Perfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PerfilFuncion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PeriodoVacacional
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PeriodoVacacional</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Plaza</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Pricing</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingFormapago
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingFormapago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingImporte</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingVigencia
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingVigencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingDia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCorrida</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingOcupaAntecipa
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingPuntoVenta
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCategoria
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoPtoVta
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoServicio
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingOcupaAntecipa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoPtoVta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingTipoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingAsiento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecifico</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoOcupacion</value>
|
||||
|
@ -238,10 +183,8 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.PricingEspecificoCanalVendas</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingClasseTarifaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PricingRuta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdClaseServicio
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdClaseServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdFormaPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdPrecio</value>
|
||||
|
@ -250,53 +193,38 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.ProdRuta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdTipoptovta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProdVigencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ProductoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAgencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaCatInd</value>
|
||||
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaCheckin</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaSeguro</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAntecipacomissao
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.InstiFinanceira
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaAntecipacomissao</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.InstiFinanceira</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaComissao</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaDiversos</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEstoque</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaBloqueada
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresaBloqueada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaHorario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaTitular</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaUsuarioBancario
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtoVtaUsuarioBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Redondeo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCategoria
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionClase
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCtrl
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMarca
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMercado
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionPuntoVenta
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RestriccionPago
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionClase</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMarca</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionMercado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ReservacionPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RestriccionPago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RolOperativo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Ruta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaCombinacion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaCombinacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaSecuencia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RhPagoConductor
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RhPagoConductor</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Secretaria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.SecretariaEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.SeguradoraEmpresa</value>
|
||||
|
@ -306,29 +234,21 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.Sistema</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueKm</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbLevante</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbLevanteCtrl
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaFidelidad
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaRecaudacion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbLevanteCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TaxaEmbarqueParada</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaFidelidad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaRecaudacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Tarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaOficial</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaHist</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaMinima</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaCategoria
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaTipoptovta
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaCategoria</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarifaTipoptovta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoConvenio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCtrl</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCiudad
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCambioCiudad</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCorte</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesiaDescuento
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesiaDescuento</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoCortesia</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoDocAutobus</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoDomicilio</value>
|
||||
|
@ -343,61 +263,43 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.TipoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Tramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKmServicio
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKmServicio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoTiempo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TramoKm</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Turno</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Usuario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioBancario
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioBancario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioPerfil</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioSesion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioUbicacion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.UsuarioUbicacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Via</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.VigenciaTarifa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Zona</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ParamArticulo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtra
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoEventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AjusteEventoExtra</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaViaje</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Cliente</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClienteDireccion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ClienteDireccion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TarjetaCredito</value>
|
||||
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Aidf</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AidfEspecie</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AidfTipo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoMovimentacion
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaTipoEstoque
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.TipoMovimentacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PtovtaTipoEstoque</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AbastoCentral</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AbastoHisto</value>
|
||||
|
||||
<value>com.rjconsultores.ventaboletos.entidad.Clasificacion</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.AbastoBoleto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FolioPreimpreso
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RequisicionBoleto
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.InscricaoEstadual
|
||||
</value>
|
||||
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OCD
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OCDParam
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OCDPtoVtaParam
|
||||
</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.DetAbastoBoleto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FolioPreimpreso</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RequisicionBoleto</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.InscricaoEstadual</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OCD</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OCDParam</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.OCDPtoVtaParam</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalImpressora</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalImpressoraEstado</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FechamentoParamgeral</value>
|
||||
|
@ -414,7 +316,6 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.PacoteFormapago</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PacoteDescontoBilhete</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PacoteConvenio</value>
|
||||
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalTotnaofiscalEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalFormapagoEmpresa</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.FiscalRelgerencialEmpresa</value>
|
||||
|
@ -425,7 +326,6 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.CasetaPeaje</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.PrecioFixoPedagio</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.RutaCaseta</value>
|
||||
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioTramo</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioUsuario</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.ConvenioPuntoVenta</value>
|
||||
|
@ -520,6 +420,7 @@
|
|||
<value>com.rjconsultores.ventaboletos.entidad.RedondeoOrgaoConcedente</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.HistoricoFormaPagoPuntoVenta</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaAdyenConfig</value>
|
||||
<value>com.rjconsultores.ventaboletos.entidad.EmpresaCieloLinkConfig</value>
|
||||
|
||||
</list>
|
||||
</property>
|
||||
|
@ -592,5 +493,4 @@
|
|||
<bean id="sqlBuilder"
|
||||
class="com.rjconsultores.ventaboletos.dao.sqlbuilder.SQLBuilder"
|
||||
factory-bean="sqlFactory" factory-method="getBuilder" />
|
||||
|
||||
</beans>
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -56,6 +56,8 @@
|
|||
label="${c:l('editarEmpresaController.voucherPersonalizado.label')}" />
|
||||
<tab
|
||||
label="${c:l('editarEmpresaController.configuracaoFlexbus.label')}" />
|
||||
<tab
|
||||
label="${c:l('editarEmpresaController.configuracaoCieloLink.label')}" />
|
||||
<tab id="tabSafer" visible="false"
|
||||
label="${c:l('editarEmpresaController.lblSafer.value')}" />
|
||||
<tab id="tabAdyen"
|
||||
|
@ -64,7 +66,6 @@
|
|||
</tabs>
|
||||
|
||||
<tabpanels style="overflow: auto">
|
||||
|
||||
<tabpanel>
|
||||
<grid fixedLayout="true">
|
||||
<columns>
|
||||
|
@ -1923,8 +1924,8 @@
|
|||
|
||||
</tabpanels>
|
||||
</tabbox>
|
||||
<label
|
||||
value="Tipo Operação" />
|
||||
|
||||
<label value="Tipo Operação" />
|
||||
<combobox id="cmbTipoOperacao" width="30%"
|
||||
mold="rounded" buttonVisible="true"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyComboboxEstandar"
|
||||
|
@ -1937,7 +1938,6 @@
|
|||
<tab label="Anexo" />
|
||||
</tabs>
|
||||
<tabpanels>
|
||||
|
||||
<tabpanel>
|
||||
<grid>
|
||||
<columns>
|
||||
|
@ -1964,22 +1964,15 @@
|
|||
|
||||
</tabpanel>
|
||||
|
||||
|
||||
<tabpanel>
|
||||
|
||||
<ckeditor id="messageAnexo1Ecommerce"
|
||||
value="@{winEditarEmpresa$composer.empresaEmailEComerce.anexo1}"
|
||||
width="100%">
|
||||
</ckeditor>
|
||||
|
||||
</tabpanel>
|
||||
|
||||
</tabpanels>
|
||||
|
||||
</tabbox>
|
||||
|
||||
|
||||
|
||||
</tabpanel>
|
||||
|
||||
<tabpanel>
|
||||
|
@ -2083,15 +2076,66 @@
|
|||
width="100%">
|
||||
</ckeditor>
|
||||
</tabpanel>
|
||||
|
||||
|
||||
|
||||
</tabpanels>
|
||||
</tabbox>
|
||||
|
||||
</tabpanel>
|
||||
|
||||
<tabpanel>
|
||||
<grid fixedLayout="true">
|
||||
<columns>
|
||||
<column width="25%" />
|
||||
<column width="75%" />
|
||||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarEmpresaController.lblClientId.value')}" />
|
||||
<textbox id="txtClientId"
|
||||
isUpperCase="false"
|
||||
width="70%"
|
||||
maxlength="50"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxCustom" />
|
||||
</row>
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarEmpresaController.lblMerchantId.value')}" />
|
||||
<textbox id="txtMerchantId"
|
||||
isUpperCase="false"
|
||||
width="70%"
|
||||
maxlength="50"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxCustom" />
|
||||
</row>
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarEmpresaController.lblSecret.value')}" />
|
||||
<textbox id="txtSecret"
|
||||
isUpperCase="false"
|
||||
width="70%"
|
||||
maxlength="50"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxCustom" />
|
||||
</row>
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarEmpresaController.lblMinutosCancela.value')}" />
|
||||
<textbox id="txtMinutosCancela"
|
||||
width="50%"
|
||||
maxlength="20"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxCustom" />
|
||||
</row>
|
||||
<row>
|
||||
<label
|
||||
value="${c:l('editarEmpresaController.lblCieloUrl.value')}" />
|
||||
<textbox id="txtCieloUrl"
|
||||
isUpperCase="false"
|
||||
width="70%"
|
||||
maxlength="50"
|
||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxCustom" />
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
</tabpanel>
|
||||
|
||||
<tabpanel >
|
||||
<grid fixedLayout="true">
|
||||
<columns>
|
||||
<column width="25%" />
|
||||
|
@ -2114,7 +2158,6 @@
|
|||
</row>
|
||||
|
||||
<row spans="2">
|
||||
|
||||
<groupbox>
|
||||
<caption
|
||||
label="${c:l('editarEmpresaController.lblInfoSafer.value')}" />
|
||||
|
@ -2131,8 +2174,6 @@
|
|||
|
||||
</hlayout>
|
||||
</groupbox>
|
||||
|
||||
|
||||
</row>
|
||||
|
||||
<row spans="2">
|
||||
|
@ -2170,12 +2211,11 @@
|
|||
value="${c:l('editarEmpresaController.apiKey.label')}" />
|
||||
<textbox id="txtApiKeyAdyen" width="80%" maxlength="255"
|
||||
value="@{winEditarEmpresa$composer.empresaAdyenConfig.apiKey}" />
|
||||
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
</tabpanel>
|
||||
|
||||
|
||||
</tabpanels>
|
||||
</tabbox>
|
||||
</window>
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
</center>
|
||||
<south>
|
||||
<toolbar height="28px">
|
||||
<toolbarbutton id="toolBar" tooltiptext="${c:l('indexController.toolBar.tooltiptext')}"
|
||||
<toolbarbutton id="toolBarLogout" tooltiptext="${c:l('indexController.toolBar.tooltiptext')}"
|
||||
image="/gui/img/logout.png" href="/j_spring_security_logout"/>
|
||||
<toolbarbutton id="toolBarUser" image="/gui/img/user24.png"/>
|
||||
</toolbar>
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
</row>
|
||||
<row spans="2" align="center">
|
||||
<hbox align="center">
|
||||
<h:input type="button"
|
||||
<h:input type="button" name="btnAcessar"
|
||||
value="${c:l('winLogin.btnAcessar')}" w:onClick="validate()" />
|
||||
</hbox>
|
||||
</row>
|
||||
|
|
Loading…
Reference in New Issue