cargarapida.js
6.09 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// Función para obtener el valor de un parámetro de URL por nombre
function getParameterByName(name, url = window.location.href) {
name = name.replace(/[\[\]]/g, '\\$&');
const regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)');
const results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, ' '));
}
// Función que se ejecuta cuando la página se carga
window.onload = function() {
// Extrae el valor de planilla_cent de la URL
const planillaCentValue = getParameterByName('planilla_cent');
// Si el parámetro existe, se puede usar en otra función
if (planillaCentValue) {
console.log('Valor de planilla_cent:', planillaCentValue);
// Llama a otra función con el valor del parámetro
usePlanillaCentValue(planillaCentValue);
}
};
function isStatusActive(status) {
return status === 'Anulado' || status === 'No Inspeccionado';
}
// Ejemplo de una función que utiliza el valor del parámetro
function usePlanillaCentValue(planillaCentValue) {
// Aquí puedes implementar la lógica que desees con el valor
console.log('Usando el valor de planilla_cent:', planillaCentValue);
// Por ejemplo, podrías hacer una solicitud a un servidor, mostrar un mensaje, etc.
fetch('/planilla', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({planilla:planillaCentValue})
})
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
// Asume que el servidor devuelve una URL para la página generada
//window.location.href = data.url;
llendoTentativo(data)
})
.catch(error => {
console.log('There has been a problem with your fetch operation:', error);
});
}
function llendoTentativo(data) {
//console.log(data)
//const patenteField = document.querySelector('input[name="patente"]');
// Establece el valor del campo de entrada con data.name
//console.log(data)
const patenteFields = document.querySelectorAll('input[name="patente"]');
patenteFields.forEach(field => {
field.value = data.name;
});
if (isStatusActive(name.resultado)) {
return None
} else {
document.getElementById("report").style.display = "block";
document.getElementById("form").style.display = "none";
let linea = JSON.parse(data.json_cent);
let inspaccion = linea.rta
//console.log(inspaccion)
fillResults(inspaccion);
LLenarDatosAuxiliareas(data,inspaccion)
};
}
function LLenarDatosAuxiliareas(data,inspeccion) {
//console.log(data)
let linea = JSON.parse(data.linea_excel);
let conbustible = "Gas Oil";
console.log(inspeccion)
EscribirValores('input[name="fecha"]',formatDateToHuman(data.fecha));
EscribirValores('input[name="hora"]',linea.fin);
EscribirValores('input[name="ingeniero"]',inspeccion.header.ingeniero);
EscribirValores('input[name="linea_numero"]',data.linea);
EscribirValores('input[name="vehiculo_tipo"]',data.categoria);
EscribirValores('input[name="CodigoTaller"]',linea.codigoTaller);
EscribirValores('input[name="peso_estatico"]',inspeccion.frenos.pesoTotalFreno);
ControlEjesCantidad();
//const ejes = document.querySelectorAll('input[name="cantidad_ejes"]');
if (inspeccion.gaseshumos.opacidad_logaritmica === "?"){
if (inspeccion.gaseshumos.co === "?" && inspeccion.gaseshumos.hc === "?"){
conbustible = "";
}else{
conbustible = "Nafta";
};
};
EscribirValores('input[name="conbustible"]', conbustible);
ReporteTipo(conbustible,data.linea,data.categoria)
//const reporte = document.querySelectorAll('input[name="ReporteInspeccion"]');
}
function ControlEjesCantidad() {
const ect_3= document.getElementById('eficacia_freno_3');
const ect_4= document.getElementById('eficacia_freno_4');
const selectElement = document.getElementById('cantidad_ejes');
if (ect_3.value !== "?") {
selectElement.value = "3";
};
if (ect_4.value !== "?") {
selectElement.value = "4";
};
}
function ReporteTipo(conbustible,linea,categoria) {
let ejes = getSelectedEjes();
const consulta = {
linea:linea,
tipo:categoria,
cantidadEjes:ejes,
conbustible:conbustible
};
fetch('/reporte_doc', {
method: 'POST',
headers: {
'Accept': 'application/json',
"Content-Type": "application/json"
},
body: JSON.stringify(consulta)
})
.then(response => response.json())
.then(data => {
EscribirValores('input[name="ReporteInspeccion"]',data.reporte)
})
.catch(error => {
console.error('Error:', error);
})
}
function EscribirValores(query,valor) {
console.log(query + " " + valor)
const campo= document.querySelectorAll(query);
campo.forEach(field => {
field.value = valor;
});
}
// Función para obtener el valor seleccionado del select
function getSelectedEjes() {
// Selecciona el elemento select por su id
const selectElement = document.getElementById('cantidad_ejes');
// Obtiene el valor seleccionado
const selectedValue = selectElement.value;
// Retorna o utiliza el valor seleccionado
return selectedValue;
}
function fillResults(results) {
const r = document.getElementById("report")
const inputs = r.getElementsByTagName("input");
Array.from(inputs).forEach(input => {
if (input.name == "defecto") return;
const sub = input.getAttribute("sub");
const value = results[sub] && results[sub][input.name] !== undefined ? results[sub][input.name] : "?";
input.value = value;
});
}
function formatDateToHuman(dateString) {
// Dividir la fecha en año, mes y día
const [year, month, day] = dateString.split('-');
// Devolver la fecha en formato DD/MM/YYYY
return `${day}/${month}/${year}`;
}