report.js
7.23 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
191
192
193
194
195
196
197
198
199
200
201
// script.js
function agregarCampoAObjeto(nombreCampo,reportCampo, objeto) {
var valor = document.getElementsByName(nombreCampo)[0].value;
if (valor !== '') {
objeto[reportCampo] = valor;
}
}
function agregarCampoAObjetoID(nombreCampo,reportCampo, objeto) {
var valor = document.getElementById(nombreCampo).value;
if (valor !== '') {
objeto[reportCampo] = valor;
}
}
function agregaNullAObjeto(reportCampo, objeto) {
objeto[reportCampo] = "---";
}
var solicitud = {
prueba:"prueba"
};
var ListenerEje1 = ["fuerza_izquierda_1","fuerza_derecha_1",
"resistencia_izquierda_1","resistencia_derecha_1",
"peso_freno_estatico_1"];
for (var i = 0; i < ListenerEje1.length; i++) {
agregaCampoAListenerEje1(ListenerEje1[i]);
}
var ListenerFrenoMano = ["fuerza_izquierda_freno_mano","fuerza_derecha_freno_mano","peso_estatico_freno_mano"];
for (var i = 0; i < ListenerFrenoMano.length; i++) {
agregaCampoAListenerFrenoMano(ListenerFrenoMano[i]);
}
function agregaCampoAListenerFrenoMano(reportCampo) {
try {
var numero1Input = document.getElementById(reportCampo);
numero1Input.addEventListener('input', calcularResultadoFrenoMamo);
} catch (error) {
console.log(error);
// Expected output: ReferenceError: nonExistentFunction is not defined
// (Note: the exact output may be browser-dependent)
}
}
function agregaCampoAListenerEje1(reportCampo) {
try {
var numero1Input = document.getElementById(reportCampo);
numero1Input.addEventListener('input', calcularResultado);
} catch (error) {
console.log(error);
// Expected output: ReferenceError: nonExistentFunction is not defined
// (Note: the exact output may be browser-dependent)
}
}
function calcularDiferenciaPorcentaje(numeroBase, numeroNuevo) {
// Calcular la diferencia absoluta
let diferenciaAbsoluta = Math.abs(numeroBase - numeroNuevo);
// Calcular el porcentaje de cambio
let porcentajeCambio = (diferenciaAbsoluta / Math.abs(numeroBase)) * 100;
return porcentajeCambio.toFixed(2);
}
function calcularResultadoFrenoMamo() {
var numero1Input = document.getElementById("fuerza_izquierda_freno_mano");
var numero2Input = document.getElementById("fuerza_derecha_freno_mano");
var diferencia_freno_1 = document.getElementById("diferencia_freno_mano");
var eficacia_freno_1 = document.getElementById("eficacia_freno_mano");
var peso = document.getElementById("peso_estatico_freno_mano");
// Obtener los valores de los campos de entrada
const numero1 = parseFloat(numero1Input.value);
const numero2 = parseFloat(numero2Input.value);
const pesoFloat = parseFloat(peso.value);
// Realizar el cálculo deseado (en este caso, suma)
//const resultado2 = numero1 - numero2;
var efc = (1000000 * (numero1 + numero2)) / (pesoFloat * 9.81);
// Actualizar el campo de salida con el resultado
diferencia_freno_1.value = calcularDiferenciaPorcentaje(numero1,numero2);
//eficacia_freno_1.value = resultado2.toFixed(2);
eficacia_freno_1.value = efc.toFixed(2);
}
// Función para calcular el resultado y actualizar el campo de salida
function calcularResultado() {
var numero1Input = document.getElementById("fuerza_izquierda_1");
var numero2Input = document.getElementById("fuerza_derecha_1");
var diferencia_freno_1 = document.getElementById("diferencia_freno_1");
var eficacia_freno_1 = document.getElementById("eficacia_freno_1");
var peso = document.getElementById("peso_freno_estatico_1");
// Obtener los valores de los campos de entrada
const numero1 = parseFloat(numero1Input.value);
const numero2 = parseFloat(numero2Input.value);
const pesoFloat = parseFloat(peso.value);
// Realizar el cálculo deseado (en este caso, suma)
//const resultado2 = numero1 - numero2;
var efc = (1000000 * (numero1 + numero2)) / (pesoFloat * 9.81);
// Actualizar el campo de salida con el resultado
diferencia_freno_1.value = calcularDiferenciaPorcentaje(numero1,numero2);
//eficacia_freno_1.value = resultado2.toFixed(2);
eficacia_freno_1.value = efc.toFixed(2);
}
document.getElementById('boton_pdf_maha_reporte2').addEventListener('click', function() {
//REPORTE VIA CARBONE
var solicitud = {
prueba:"prueba"
};
var strings = ["b","c","d","f","g","h","i",//Alineador al pasdo
"fs7","ff7","fe7","fs8","ff8","fe8",//Obalidad
"fsp1","fsp2","ffp1","ffp2","fep1","fep2",//P1 y P2
];
for (var i = 0; i < strings.length; i++) {
agregaNullAObjeto(strings[i],solicitud);
}
agregarCampoAObjeto('patente','dominio',solicitud);
agregarCampoAObjeto('fecha','fecha',solicitud);
agregarCampoAObjeto('hora','hora',solicitud);
agregarCampoAObjeto('cantidad_ejes','ejes',solicitud);
agregarCampoAObjeto('eje_delantero','ed',solicitud);
agregarCampoAObjeto('eje_trazero','et',solicitud);
//Suspencion
//eje Delantera
agregarCampoAObjeto('rendimiento_izquierdo_1','DiE',solicitud);
agregarCampoAObjeto('rendimiento_derecho_1','DdE',solicitud);
agregarCampoAObjeto('peso_estatico_1','DP',solicitud);
//Falta Valores absolutos
//eje Trazeros
agregarCampoAObjeto('rendimiento_izquierdo_2','TiD',solicitud);
agregarCampoAObjeto('rendimiento_derecho_2','TdE',solicitud);
agregarCampoAObjeto('peso_estatico_2','TP',solicitud);
//Falta Valores absolutos
//Frenometro
//Eje Delantero
agregarCampoAObjeto('fuerza_izquierda_1','fs3',solicitud);
agregarCampoAObjeto('fuerza_derecha_1','fs4',solicitud);
agregarCampoAObjeto('diferencia_freno_1','fs6',solicitud);
agregarCampoAObjeto('eficacia_freno_1','fs9',solicitud);
agregarCampoAObjetoID('peso_freno_estatico_1','fs0',solicitud);
agregarCampoAObjetoID('resistencia_derecha_1','fs2',solicitud);
agregarCampoAObjetoID('resistencia_izquierda_1','fs1',solicitud);
//Fr. Estacionam.
//Eje Trasero
agregarCampoAObjeto('fuerza_izquierda_2','g',solicitud);
agregarCampoAObjeto('fuerza_derecha_2','j',solicitud);
agregarCampoAObjeto('ovalidad_izquierda_2','n',solicitud);
agregarCampoAObjeto('ovalidad_derecha_2','s',solicitud);
agregarCampoAObjetoID('peso_freno_estatico_1','p_e',solicitud);
//Estacionamiento
//let listaNumeros = [10, 5, 20, 15, 30];
//let numeroMaximo = Math.max(...listaNumeros);
agregarCampoAObjetoID('eficacia_freno_mano','sf3',solicitud);
agregarCampoAObjetoID('diferencia_freno_mano','sf1',solicitud);
agregarCampoAObjetoID('diferencia_freno_mano','sf2',solicitud);
var datos = {
solicitud: solicitud,
template: '/home/administrador/repo_laika_hgt/uploads/Reporte MAHA Vertical105_V02.docx',
salida: 'test_maha_2.pdf',
'convert_pdf': true
};
//console.log(datos);
fetch('https://reporte.hgt.com.ar/consulta/carbone', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(datos)
})
.then(response => response.json())
.then(data => {
//console.log(data);
var pdfUrl = data.full_url;
window.open(pdfUrl);
})
.catch(error => {
console.error('Error:', error);
});
});