Ajustes envio email Izypay fixes bug#AL-4812
parent
de18d70261
commit
18c535186f
|
@ -1,7 +1,3 @@
|
||||||
/*
|
|
||||||
* To change this template, choose Tools | Templates
|
|
||||||
* and open the template in the editor.
|
|
||||||
*/
|
|
||||||
package com.rjconsultores.ventaboletos.web.gui.controladores.catalogos;
|
package com.rjconsultores.ventaboletos.web.gui.controladores.catalogos;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
|
@ -303,7 +299,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
//IziPay
|
//IziPay
|
||||||
private Textbox txtIziPayClientId;
|
private Textbox txtIziPayClientId;
|
||||||
private Textbox txtIziPaySecret;
|
private Textbox txtIziPaySecret;
|
||||||
private Textbox txtIziPayDiasCancela;
|
private Textbox txtIziPayMinutosCancela;
|
||||||
private Textbox txtIziPayUrl;
|
private Textbox txtIziPayUrl;
|
||||||
|
|
||||||
//Recarga Celular
|
//Recarga Celular
|
||||||
|
@ -762,7 +758,7 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
txtIziPayClientId.setText(empresaIziPayConfig.getClientId());
|
txtIziPayClientId.setText(empresaIziPayConfig.getClientId());
|
||||||
txtIziPaySecret.setText(empresaIziPayConfig.getSecret());
|
txtIziPaySecret.setText(empresaIziPayConfig.getSecret());
|
||||||
txtIziPayUrl.setText(empresaIziPayConfig.getUrl());
|
txtIziPayUrl.setText(empresaIziPayConfig.getUrl());
|
||||||
txtIziPayDiasCancela.setText(empresaIziPayConfig.getDiasCancela().toString());
|
txtIziPayMinutosCancela.setText(empresaIziPayConfig.getMinutosCancela().toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empresaRecargaConfig != null) {
|
if (empresaRecargaConfig != null) {
|
||||||
|
@ -1763,10 +1759,10 @@ public class EditarEmpresaController extends MyGenericForwardComposer {
|
||||||
empresaIziPayConfig.setSecret(txtIziPaySecret.getValue());
|
empresaIziPayConfig.setSecret(txtIziPaySecret.getValue());
|
||||||
empresaIziPayConfig.setUrl(txtIziPayUrl.getValue());
|
empresaIziPayConfig.setUrl(txtIziPayUrl.getValue());
|
||||||
|
|
||||||
empresaIziPayConfig.setDiasCancela(
|
empresaIziPayConfig.setMinutosCancela(
|
||||||
StringUtils.isEmpty(txtIziPayDiasCancela.getValue())?
|
StringUtils.isEmpty(txtIziPayMinutosCancela.getValue())?
|
||||||
30:
|
30:
|
||||||
Integer.parseInt(txtIziPayDiasCancela.getValue())
|
Integer.parseInt(txtIziPayMinutosCancela.getValue())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2348,8 +2348,8 @@
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<label
|
<label
|
||||||
value="${c:l('editarEmpresaController.lblDiasCancela.value')}" />
|
value="${c:l('editarEmpresaController.lblMinutosCancela.value')}" />
|
||||||
<textbox id="txtIziPayDiasCancela"
|
<textbox id="txtIziPayMinutosCancela"
|
||||||
width="50%"
|
width="50%"
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxCustom" />
|
use="com.rjconsultores.ventaboletos.web.utilerias.MyTextboxCustom" />
|
||||||
|
@ -3142,7 +3142,7 @@
|
||||||
<listheader image="/gui/img/create_doc.gif"
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
label="${c:l('editarEmpresaController.cmbConfigLayoutTiposVenda')}" sort="auto(tipoVenta.desctipoventa)" />
|
label="${c:l('editarEmpresaController.cmbConfigLayoutTiposVenda')}" sort="auto(tipoVenta.desctipoventa)" />
|
||||||
<listheader image="/gui/img/create_doc.gif"
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
label="${c:l('editarEmpresaController.cmbImpresionLayoutConfig')} sort="auto(impresionlayoutconfigId.descricao)" />
|
label="${c:l('editarEmpresaController.cmbImpresionLayoutConfig')}" sort="auto(impresionlayoutconfigId.descricao)" />
|
||||||
<listheader image="/gui/img/create_doc.gif"
|
<listheader image="/gui/img/create_doc.gif"
|
||||||
label="${c:l('editarEmpresaController.lblLayoutEmail')}" sort="auto(indEmail)" />
|
label="${c:l('editarEmpresaController.lblLayoutEmail')}" sort="auto(indEmail)" />
|
||||||
</listhead>
|
</listhead>
|
||||||
|
|
Loading…
Reference in New Issue