-
Notifications
You must be signed in to change notification settings - Fork 1
/
ibercaja.js
114 lines (97 loc) · 3.11 KB
/
ibercaja.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
IrA('../ModuloDirector.asp','53_0','li2');
function IrA(pstrDireccion,pstrOperacion,opcionseleccionada)
{
var longitudopcionseleccionada = opcionanterior.length;
if(opcionseleccionada.substr(2,longitudopcionseleccionada)!= opcionanterior && opcionanterior!= ""){
document.getElementById(opcionanterior).className = 'bolitafijasinseleccionar';
abrircerrar = "abrir"
}
//Si la opcion que nos llega empieza por 'A', entonces es una subopción, por lo tanto hay que tratarlo de otra forma.
if (opcionseleccionada.charAt(0)!="A"){
Cambiar_estilo(opcionseleccionada)
}else{
Cambiar_estilo_acordeon(opcionseleccionada,opcionseleccionada.charAt(1))
}
document.Formulario.IdOperacion.value = pstrOperacion;
if (pstrOperacion == "0002_1")
{
window.document.Formulario.tipotransferencia.value = "traspaso"
}
else if (pstrOperacion == "0003_1")
{
window.document.Formulario.tipotransferencia.value = "transferenciaibe"
}
else
{
window.document.Formulario.tipotransferencia.value = "transferenciaext"
}
document.Formulario.action = "../asp/" + pstrDireccion + "?MSCSAuth=7A6B0289E13645C49E1FDC58E8F82D2DOONWN20210108184520COGUIM13645C49E1HRXNFDC58E8F82QIPJLEE85CDF1E94C5463ELJPIQ28F8E85CDFNXRHF1E94C54631E9820B6A7ELJPIQ28"
document.Formulario.target = "operativas";
document.Formulario.submit();
}
function ValidarDatos3(mensaje1, mensaje2 , mensaje3,mensaje4,ticket,mensaje5)
{
var diaInicio;
var mesInicio;
var anoInicio;
var diaFin;
var mesFin;
var anoFin;
var importeMin;
var importeMax;
diaInicio = document.Formulario.FechaInicioDia.value;
mesInicio= document.Formulario.FechaInicioMes.value;
anoInicio= document.Formulario.FechaInicioAno.value;
diaFin= document.Formulario.FechaFinDia.value;
mesFin= document.Formulario.FechaFinMes.value;
anoFin= document.Formulario.FechaFinAno.value;
importeMin = document.Formulario.ImporteMinimo.value.replace(",",".");
importeMax = document.Formulario.ImporteMaximo.value.replace(",",".");
importeMin = parseFloat(importeMin ) * 100;
importeMax = parseFloat(importeMax) * 100;
if(importeMin > 0 && importeMax > 0)
{
if(importeMin > importeMax)
{
document.Formulario.ImporteMinimo.focus();
document.Formulario.ImporteMinimo.select();
alert(mensaje5);
return false;
}
}
if ( (diaInicio + mesInicio + anoInicio).length < 8 )
{
alert(mensaje4);
return false;
}
if ( (diaInicio + mesInicio + anoInicio).length > 2)
if (!validar_fecha(diaInicio , mesInicio , anoInicio ))
{
alert(mensaje1);
return false;
}
if ((diaFin + mesFin + anoFin).length != 0){
if ((diaFin + mesFin + anoFin).length < 8){
alert("El campo Fecha Hasta está incompleto");
return false;
}else{
if (!validar_fecha(diaFin , mesFin , anoFin ))
{
alert("Fecha Hasta incorrecta");
return false;
}
}
}
if ( (diaInicio + mesInicio + anoInicio).length > 2 && (diaFin + mesFin + anoFin).length > 2)
if (CompararFechas(diaInicio + mesInicio + anoInicio, diaFin + mesFin + anoFin) == 1)
{
alert(mensaje3);
return false;
}
cont = cont + 1;
if (cont > 1) {
return false;
}else{
lanzapagina(ticket);
}
}