Merge pull request 'fixes bug#AL-2525' (!149) from Al-2525-2 into master
Reviewed-on: http://18.235.188.113:3000/adm/VentaBoletosAdm/pulls/149 Reviewed-by: fabio <fabio.faria@rjconsultores.com.br>master 1.4.8
commit
612c226d68
6
pom.xml
6
pom.xml
|
@ -4,12 +4,12 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>ventaboletosadm</artifactId>
|
<artifactId>ventaboletosadm</artifactId>
|
||||||
<version>1.4.7</version>
|
<version>1.4.8</version>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<modelWeb.version>1.3.3</modelWeb.version>
|
<modelWeb.version>1.3.4</modelWeb.version>
|
||||||
<flyway.version>1.3.1</flyway.version>
|
<flyway.version>1.3.2</flyway.version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
|
@ -205,6 +205,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
private Checkbox chkAutenticacao;
|
private Checkbox chkAutenticacao;
|
||||||
private MyTextbox txtCodContPrevidencia;
|
private MyTextbox txtCodContPrevidencia;
|
||||||
private Textbox txtApiKeyAdyen;
|
private Textbox txtApiKeyAdyen;
|
||||||
|
private Textbox txtMerchantAccountAdyen;
|
||||||
private Radio indProducaoAdyenSim;
|
private Radio indProducaoAdyenSim;
|
||||||
private MyComboboxEstandar cmbTipoAutorizacao;
|
private MyComboboxEstandar cmbTipoAutorizacao;
|
||||||
|
|
||||||
|
@ -570,6 +571,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
|
|
||||||
if (empresaAdyenConfig != null) {
|
if (empresaAdyenConfig != null) {
|
||||||
txtApiKeyAdyen.setText(empresaAdyenConfig.getApiKey());
|
txtApiKeyAdyen.setText(empresaAdyenConfig.getApiKey());
|
||||||
|
txtMerchantAccountAdyen.setText(empresaAdyenConfig.getMerchantAccountAdyen());
|
||||||
if (empresaAdyenConfig.getIndProducao() == null) {
|
if (empresaAdyenConfig.getIndProducao() == null) {
|
||||||
indProducaoAdyenSim.setChecked(Boolean.FALSE);
|
indProducaoAdyenSim.setChecked(Boolean.FALSE);
|
||||||
} else if (empresaAdyenConfig.getIndProducao()) {
|
} else if (empresaAdyenConfig.getIndProducao()) {
|
||||||
|
@ -1172,11 +1174,13 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
empresaAdyenConfig = new EmpresaAdyenConfig();
|
empresaAdyenConfig = new EmpresaAdyenConfig();
|
||||||
empresaAdyenConfig.setEmpresa(empresa);
|
empresaAdyenConfig.setEmpresa(empresa);
|
||||||
empresaAdyenConfig.setApiKey(txtApiKeyAdyen.getValue());
|
empresaAdyenConfig.setApiKey(txtApiKeyAdyen.getValue());
|
||||||
|
empresaAdyenConfig.setMerchantAccountAdyen(txtMerchantAccountAdyen.getValue());
|
||||||
empresaAdyenConfig.setIndProducao(indProducaoAdyenSim.isChecked());
|
empresaAdyenConfig.setIndProducao(indProducaoAdyenSim.isChecked());
|
||||||
empresaAdyenConfig = empresaAdyenConfigService.suscribir(empresaAdyenConfig);
|
empresaAdyenConfig = empresaAdyenConfigService.suscribir(empresaAdyenConfig);
|
||||||
} else {
|
} else {
|
||||||
empresaAdyenConfig.setEmpresa(empresa);
|
empresaAdyenConfig.setEmpresa(empresa);
|
||||||
empresaAdyenConfig.setApiKey(txtApiKeyAdyen.getValue());
|
empresaAdyenConfig.setApiKey(txtApiKeyAdyen.getValue());
|
||||||
|
empresaAdyenConfig.setMerchantAccountAdyen(txtMerchantAccountAdyen.getValue());
|
||||||
empresaAdyenConfig.setIndProducao(indProducaoAdyenSim.isChecked());
|
empresaAdyenConfig.setIndProducao(indProducaoAdyenSim.isChecked());
|
||||||
empresaAdyenConfigService.actualizacion(empresaAdyenConfig);
|
empresaAdyenConfigService.actualizacion(empresaAdyenConfig);
|
||||||
}
|
}
|
||||||
|
@ -2759,5 +2763,21 @@ public void onClick$btnTestEmailFlexBus(Event ev) throws InterruptedException {
|
||||||
public void setStoreVO(StoreVO storeVO) {
|
public void setStoreVO(StoreVO storeVO) {
|
||||||
this.storeVO = storeVO;
|
this.storeVO = storeVO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public EmpresaAdyenConfigService getEmpresaAdyenConfigService() {
|
||||||
|
return empresaAdyenConfigService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEmpresaAdyenConfigService(EmpresaAdyenConfigService empresaAdyenConfigService) {
|
||||||
|
this.empresaAdyenConfigService = empresaAdyenConfigService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public EmpresaAdyenConfig getEmpresaAdyenConfig() {
|
||||||
|
return empresaAdyenConfig;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEmpresaAdyenConfig(EmpresaAdyenConfig empresaAdyenConfig) {
|
||||||
|
this.empresaAdyenConfig = empresaAdyenConfig;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1739,6 +1739,7 @@ editarEmpresaController.restricaoZ.label= Restringe Venda se Red. Z não emitida
|
||||||
editarEmpresaController.utilizaFidelidade.label= Utiliza projeto fidelidade
|
editarEmpresaController.utilizaFidelidade.label= Utiliza projeto fidelidade
|
||||||
editarEmpresaController.indProducao.label= Venda em Produção
|
editarEmpresaController.indProducao.label= Venda em Produção
|
||||||
editarEmpresaController.apiKey.label= API Key
|
editarEmpresaController.apiKey.label= API Key
|
||||||
|
editarEmpresaController.merchantAccountAdyen.label= Merchant Account Adyen
|
||||||
editarEmpresaController.antiFraude.label = Antifraude
|
editarEmpresaController.antiFraude.label = Antifraude
|
||||||
editarEmpresaController.antiFraude.chave.label = Chave Antifraude
|
editarEmpresaController.antiFraude.chave.label = Chave Antifraude
|
||||||
editarEmpresaController.restricaoZ.sim=Sim
|
editarEmpresaController.restricaoZ.sim=Sim
|
||||||
|
@ -2234,6 +2235,8 @@ editarPuntoVentaController.qrcodeCatracaRodEAN13.label = Imprimir na venda o QR
|
||||||
editarPuntoVentaController.checkBloqDevolveReativaOutroPto.label = Bloqueia Devolver e Reativar em outro Ponto de Venda
|
editarPuntoVentaController.checkBloqDevolveReativaOutroPto.label = Bloqueia Devolver e Reativar em outro Ponto de Venda
|
||||||
editarPuntoVentaController.lbQrcodeTaxaEmbarqueRodTTL.label= Imprimir na venda o QR Code Taxa Embarque Rodoviára TTL
|
editarPuntoVentaController.lbQrcodeTaxaEmbarqueRodTTL.label= Imprimir na venda o QR Code Taxa Embarque Rodoviára TTL
|
||||||
|
|
||||||
|
editarPuntoVentaController.merchantStoreAdyen.label= Merchant Store Adyen
|
||||||
|
|
||||||
# Editar comissão ponto de venda
|
# Editar comissão ponto de venda
|
||||||
editarPuntoVentaComissaoController.window.title = Comissão Empresa/Ponto de Venda - {0}
|
editarPuntoVentaComissaoController.window.title = Comissão Empresa/Ponto de Venda - {0}
|
||||||
editarPuntoVentaComissaoController.MSG.suscribirOK = Comissão da Empresa/Ponto de Venda registrada com sucesso.
|
editarPuntoVentaComissaoController.MSG.suscribirOK = Comissão da Empresa/Ponto de Venda registrada com sucesso.
|
||||||
|
|
|
@ -1537,6 +1537,7 @@ editarEmpresaController.restricaoZ.label= Restringe Venta se Red. Z no emitida
|
||||||
editarEmpresaController.utilizaFidelidade.label= Utiliza projeto fidelidade
|
editarEmpresaController.utilizaFidelidade.label= Utiliza projeto fidelidade
|
||||||
editarEmpresaController.indProducao.label= Venda em Produção
|
editarEmpresaController.indProducao.label= Venda em Produção
|
||||||
editarEmpresaController.apiKey.label= API Key
|
editarEmpresaController.apiKey.label= API Key
|
||||||
|
editarEmpresaController.merchantAccountAdyen.label= Merchant Account Adyen
|
||||||
editarEmpresaController.restricaoZ.sim=Si
|
editarEmpresaController.restricaoZ.sim=Si
|
||||||
editarEmpresaController.restricaoZ.nao=No
|
editarEmpresaController.restricaoZ.nao=No
|
||||||
editarEmpresaController.generaNumfoliosistemaVtaInternetImp=Genera Folio Sistema Venta Internet e Impresión Posterior
|
editarEmpresaController.generaNumfoliosistemaVtaInternetImp=Genera Folio Sistema Venta Internet e Impresión Posterior
|
||||||
|
@ -1949,6 +1950,7 @@ editarPuntoVentaController.lbQrcodeTaxaEmbarqueRodTTL.label= Imprimir na venda o
|
||||||
|
|
||||||
editarPuntoVentaController.checkIndBloqueioDescontoAPI.label = Bloquear descuento a través de api
|
editarPuntoVentaController.checkIndBloqueioDescontoAPI.label = Bloquear descuento a través de api
|
||||||
editarPuntoVentaController.checkIndBloqueioDescontoWEB.label = Bloquear descuento en internet
|
editarPuntoVentaController.checkIndBloqueioDescontoWEB.label = Bloquear descuento en internet
|
||||||
|
editarPuntoVentaController.merchantStoreAdyen.label= Merchant Store Adyen
|
||||||
|
|
||||||
# Fechamento Conta Contábil Agencia
|
# Fechamento Conta Contábil Agencia
|
||||||
editarPuntoVentaController.puntoventa.label = Agencia
|
editarPuntoVentaController.puntoventa.label = Agencia
|
||||||
|
|
|
@ -1748,6 +1748,7 @@ editarEmpresaController.restricaoZ.label= Restringe Venda se Red. Z não emitida
|
||||||
editarEmpresaController.utilizaFidelidade.label= Utiliza projeto fidelidade
|
editarEmpresaController.utilizaFidelidade.label= Utiliza projeto fidelidade
|
||||||
editarEmpresaController.indProducao.label= Venda em Produção
|
editarEmpresaController.indProducao.label= Venda em Produção
|
||||||
editarEmpresaController.apiKey.label= API Key
|
editarEmpresaController.apiKey.label= API Key
|
||||||
|
editarEmpresaController.merchantAccountAdyen.label= Merchant Account Adyen
|
||||||
editarEmpresaController.antiFraude.label = Antifraude
|
editarEmpresaController.antiFraude.label = Antifraude
|
||||||
editarEmpresaController.antiFraude.chave.label = Chave Antifraude
|
editarEmpresaController.antiFraude.chave.label = Chave Antifraude
|
||||||
editarEmpresaController.restricaoZ.sim=Sim
|
editarEmpresaController.restricaoZ.sim=Sim
|
||||||
|
@ -2242,6 +2243,7 @@ editarPuntoVentaController.lbQrcodeTaxaEmbarqueRodTTL.label= Imprimir na venda o
|
||||||
|
|
||||||
editarPuntoVentaController.checkIndBloqueioDescontoAPI.label = Bloquear desconto via API
|
editarPuntoVentaController.checkIndBloqueioDescontoAPI.label = Bloquear desconto via API
|
||||||
editarPuntoVentaController.checkIndBloqueioDescontoWEB.label = Bloquear desconto via Internet
|
editarPuntoVentaController.checkIndBloqueioDescontoWEB.label = Bloquear desconto via Internet
|
||||||
|
editarPuntoVentaController.merchantStoreAdyen.label= Merchant Store Adyen
|
||||||
|
|
||||||
# Editar comissão ponto de venda
|
# Editar comissão ponto de venda
|
||||||
editarPuntoVentaComissaoController.window.title = Comissão Empresa/Ponto de Venda - {0}
|
editarPuntoVentaComissaoController.window.title = Comissão Empresa/Ponto de Venda - {0}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -499,7 +499,16 @@
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarPuntoVentaController.checkIndBloqueioDescontoWEB.label')}" />
|
value="${c:l('editarPuntoVentaController.checkIndBloqueioDescontoWEB.label')}" />
|
||||||
<checkbox id="checkIndBloqueioDescontoWEB" checked="@{winEditarPuntoVenta$composer.puntoVenta.indBloquearDescontoWEB}" />
|
<checkbox id="checkIndBloqueioDescontoWEB" checked="@{winEditarPuntoVenta$composer.puntoVenta.indBloquearDescontoWEB}" />
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
|
<row>
|
||||||
|
<label
|
||||||
|
value="${c:l('editarPuntoVentaController.merchantStoreAdyen.label')}" />
|
||||||
|
<textbox id="txtMerchantStoreAdyen"
|
||||||
|
width="70%" maxlength="200"
|
||||||
|
value="@{winEditarPuntoVenta$composer.puntoVenta.merchantStoreAdyen}"
|
||||||
|
/>
|
||||||
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
</tabpanel>
|
</tabpanel>
|
||||||
|
|
Loading…
Reference in New Issue