Merge pull request 'Espec Bolivariano - Integração Infobit. fixes bug#AL-4273' (!611) from AL-4273-2 into master
Reviewed-on: adm/VentaBoletosAdm#611 Reviewed-by: pinheiro <valdevir@rjconsultores.com.br>master 1.115.1
commit
9c38786221
6
pom.xml
6
pom.xml
|
@ -4,12 +4,12 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.115.0</version>
|
||||
<version>1.115.1</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
<modelWeb.version>1.87.0</modelWeb.version>
|
||||
<flyway.version>1.75.0</flyway.version>
|
||||
<modelWeb.version>1.87.1</modelWeb.version>
|
||||
<flyway.version>1.75.2</flyway.version>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
</properties>
|
||||
|
||||
|
|
|
@ -49,6 +49,7 @@ public class EditarIntegracaoCompPassagemController extends MyGenericForwardComp
|
|||
private Textbox txtApiKey;
|
||||
private Textbox txtRemetente;
|
||||
private Textbox txtNomeTemplate;
|
||||
private Textbox txtIdiomaTemplate;
|
||||
|
||||
private ConfComprovantePassagem confCompPass;
|
||||
private BusquedaIntegracaoCompPassagemController busquedaIntegracaoCompPassagem;
|
||||
|
@ -73,6 +74,7 @@ public class EditarIntegracaoCompPassagemController extends MyGenericForwardComp
|
|||
txtApiKey.setText(confCompPass.getApiKey());
|
||||
txtRemetente.setText(confCompPass.getRemetente());
|
||||
txtNomeTemplate.setText(confCompPass.getNomeTemplate());
|
||||
txtIdiomaTemplate.setText(confCompPass.getIdiomaTemplate());
|
||||
cmbTipoIntegracao.setText(confCompPass.getTipoIntegracao());
|
||||
cmbViaComprovante.setText(confCompPass.getViaComprovante());
|
||||
}
|
||||
|
@ -98,6 +100,7 @@ public class EditarIntegracaoCompPassagemController extends MyGenericForwardComp
|
|||
confCompPass.setApiKey(txtApiKey.getText().trim());
|
||||
confCompPass.setRemetente(txtRemetente.getText().trim());
|
||||
confCompPass.setNomeTemplate(txtNomeTemplate.getText().trim());
|
||||
confCompPass.setIdiomaTemplate(txtIdiomaTemplate.getText().trim());
|
||||
|
||||
confCompPass.setActivo(true);
|
||||
|
||||
|
@ -218,6 +221,14 @@ public class EditarIntegracaoCompPassagemController extends MyGenericForwardComp
|
|||
this.txtNomeTemplate = txtNomeTemplate;
|
||||
}
|
||||
|
||||
public Textbox getTxtIdiomaTemplate() {
|
||||
return txtIdiomaTemplate;
|
||||
}
|
||||
|
||||
public void setTxtIdiomaTemplate(Textbox txtIdiomaTemplate) {
|
||||
this.txtIdiomaTemplate = txtIdiomaTemplate;
|
||||
}
|
||||
|
||||
public List<EnumTipoIntegracao> getLsTipoIntegracao() {
|
||||
return lsTipoIntegracao;
|
||||
}
|
||||
|
|
|
@ -10187,3 +10187,5 @@ winMovimentacionBilhetesPuntoVenta.numSerie.label = Series
|
|||
winMovimentacionBilhetesPuntoVenta.origem.label = Origin
|
||||
winMovimentacionBilhetesPuntoVenta.puntoventa.label = Ag.
|
||||
winMovimentacionBilhetesPuntoVenta.tipoMovimentacion.label = Nature
|
||||
|
||||
editarIntComprovantePassagem.idiomaTemplate= Language Template
|
||||
|
|
|
@ -10209,3 +10209,5 @@ winMovimentacionBilhetesPuntoVenta.numSerie.label = Série
|
|||
winMovimentacionBilhetesPuntoVenta.origem.label = Origen
|
||||
winMovimentacionBilhetesPuntoVenta.puntoventa.label = Ag.
|
||||
winMovimentacionBilhetesPuntoVenta.tipoMovimentacion.label = Naturaleza
|
||||
|
||||
editarIntComprovantePassagem.idiomaTemplate= Plantilla de idioma
|
||||
|
|
|
@ -10190,3 +10190,5 @@ winMovimentacionBilhetesPuntoVenta.numSerie.label = Série
|
|||
winMovimentacionBilhetesPuntoVenta.origem.label = Origine
|
||||
winMovimentacionBilhetesPuntoVenta.puntoventa.label = Ag.
|
||||
winMovimentacionBilhetesPuntoVenta.tipoMovimentacion.label = Nature
|
||||
|
||||
editarIntComprovantePassagem.idiomaTemplate= Modèle de langue
|
||||
|
|
|
@ -10193,3 +10193,6 @@ winMovimentacionBilhetesPuntoVenta.numSerie.label = Série
|
|||
winMovimentacionBilhetesPuntoVenta.origem.label = Origem
|
||||
winMovimentacionBilhetesPuntoVenta.puntoventa.label = Ag.
|
||||
winMovimentacionBilhetesPuntoVenta.tipoMovimentacion.label = Natureza
|
||||
|
||||
|
||||
editarIntComprovantePassagem.idiomaTemplate= Idioma Template
|
||||
|
|
|
@ -58,22 +58,27 @@
|
|||
|
||||
<row>
|
||||
<label value="${c:l('editarIntComprovantePassagem.URL')}" />
|
||||
<textbox id="txtURL" width="99%" constraint="no empty"/>
|
||||
<textbox id="txtURL" width="98%" constraint="no empty"/>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<label value="${c:l('editarIntComprovantePassagem.apiKey')}" />
|
||||
<textbox id="txtApiKey" width="99%" constraint="no empty"/>
|
||||
<textbox id="txtApiKey" width="98%" constraint="no empty"/>
|
||||
</row>
|
||||
|
||||
<row>
|
||||
<label value="${c:l('editarIntComprovantePassagem.remetente')}" />
|
||||
<textbox id="txtRemetente" width="99%" constraint="no empty" />
|
||||
<textbox id="txtRemetente" width="98%" constraint="no empty" />
|
||||
</row>
|
||||
|
||||
<row id="rowTemplate">
|
||||
<label value="${c:l('editarIntComprovantePassagem.nomeTemplate')}" />
|
||||
<textbox id="txtNomeTemplate" width="99%" />
|
||||
<textbox id="txtNomeTemplate" width="98%" />
|
||||
</row>
|
||||
|
||||
<row >
|
||||
<label value="${c:l('editarIntComprovantePassagem.idiomaTemplate')}" />
|
||||
<textbox id="txtIdiomaTemplate" width="98%" />
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
|
|
Loading…
Reference in New Issue