Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Luciano Barletta
/
Pruebas-RTO
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 8d09f4fd
authored
2024-07-15 15:54:05 -0300
by
Juan
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
df
1 parent
4f516e9a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
23 deletions
static/src/report.js
static/src/report.js
View file @
8d09f4f
...
@@ -10,10 +10,10 @@ function agregarCampoAObjeto(nombreCampo,reportCampo, objeto) {
...
@@ -10,10 +10,10 @@ function agregarCampoAObjeto(nombreCampo,reportCampo, objeto) {
}
}
function
agregarCampoAObjetoID
(
nombreCampo
,
reportCampo
,
objeto
)
{
function
agregarCampoAObjetoID
(
nombreCampo
,
reportCampo
,
objeto
)
{
var
valor
=
document
.
getElementById
(
nombreCampo
).
value
;
//
var valor = document.getElementById(nombreCampo).value;
if
(
valor
!==
''
)
{
//
if (valor !== '') {
objeto
[
reportCampo
]
=
String
(
valor
).
replace
(
"."
,
","
);;
//
objeto[reportCampo] = String(valor).replace(".",",");;
}
//
}
}
}
function
agregaNullAObjeto
(
reportCampo
,
objeto
)
{
function
agregaNullAObjeto
(
reportCampo
,
objeto
)
{
...
@@ -34,19 +34,19 @@ var ListenerEje1 = ["fuerza_izquierda_1","fuerza_derecha_1",
...
@@ -34,19 +34,19 @@ var ListenerEje1 = ["fuerza_izquierda_1","fuerza_derecha_1",
"resistencia_izquierda_4"
,
"resistencia_derecha_4"
,
"resistencia_izquierda_4"
,
"resistencia_derecha_4"
,
"peso_freno_estatico_4"
,
"peso_estatico_general"
];
"peso_freno_estatico_4"
,
"peso_estatico_general"
];
for
(
var
i
=
0
;
i
<
ListenerEje1
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
ListenerEje1
.
length
;
i
++
)
{
agregaCampoAListenerEje1
(
ListenerEje1
[
i
]);
//
agregaCampoAListenerEje1(ListenerEje1[i]);
}
}
var
ListenerFrenoMano
=
[
"fuerza_izquierda_freno_mano"
,
"fuerza_derecha_freno_mano"
,
"peso_estatico_freno_mano"
];
//
var ListenerFrenoMano = ["fuerza_izquierda_freno_mano","fuerza_derecha_freno_mano","peso_estatico_freno_mano"];
for
(
var
i
=
0
;
i
<
ListenerFrenoMano
.
length
;
i
++
)
{
//
for (var i = 0; i < ListenerFrenoMano.length; i++) {
agregaCampoAListenerFrenoMano
(
ListenerFrenoMano
[
i
]);
//
agregaCampoAListenerFrenoMano(ListenerFrenoMano[i]);
}
//
}
var
peso_genral_campo
=
document
.
getElementById
(
"peso_estatico_general"
);
//
var peso_genral_campo = document.getElementById("peso_estatico_general");
peso_genral_campo
.
addEventListener
(
'input'
,
propagarCampoPeso
);
//
peso_genral_campo.addEventListener('input', propagarCampoPeso);
var
cantidad_ejes
=
document
.
getElementById
(
"cantidad_ejes"
);
//
var cantidad_ejes = document.getElementById("cantidad_ejes");
cantidad_ejes
.
addEventListener
(
'input'
,
propagarCantidadEjes
);
//
cantidad_ejes.addEventListener('input', propagarCantidadEjes);
function
propagarCantidadEjes
()
{
function
propagarCantidadEjes
()
{
let
ejes
=
cantidad_ejes
.
value
;
let
ejes
=
cantidad_ejes
.
value
;
...
@@ -101,16 +101,16 @@ function calcularDiferenciaPorcentaje(numeroBase, numeroNuevo) {
...
@@ -101,16 +101,16 @@ function calcularDiferenciaPorcentaje(numeroBase, numeroNuevo) {
}
}
//Calculos campos Generales
//Calculos campos Generales
var
CamposLanzanCalculoGeneral
=
[
ListenerFrenoMano
,
ListenerEje1
];
//
var CamposLanzanCalculoGeneral = [ListenerFrenoMano,ListenerEje1];
for
(
var
i
=
0
;
i
<
CamposLanzanCalculoGeneral
.
length
;
i
++
)
{
//
for (var i = 0; i < CamposLanzanCalculoGeneral.length; i++) {
let
agr
=
CamposLanzanCalculoGeneral
[
i
];
//
let agr = CamposLanzanCalculoGeneral[i];
for
(
var
j
=
0
;
j
<
agr
.
length
;
j
++
)
{
//
for (var j = 0; j < agr.length; j++) {
let
bgr
=
agr
[
j
];
//
let bgr = agr[j];
//console.log(bgr);
//console.log(bgr);
}
//
}
}
//
}
function
calcularResultadoFrenoMamo
()
{
function
calcularResultadoFrenoMamo
()
{
var
numero1Input
=
document
.
getElementById
(
"fuerza_izquierda_freno_mano"
);
var
numero1Input
=
document
.
getElementById
(
"fuerza_izquierda_freno_mano"
);
...
@@ -177,9 +177,11 @@ function calcularResultadoSub(num) {
...
@@ -177,9 +177,11 @@ function calcularResultadoSub(num) {
//EL PESO TOTAL ES LA SUMA DE LOS EJES
//EL PESO TOTAL ES LA SUMA DE LOS EJES
document
.
getElementById
(
'boton_pdf_maha_reporte2'
).
addEventListener
(
'click'
,
reporteLinea1
);
//document.getElementById('boton_pdf_maha_reporte').addEventListener('click',reporteLinea2);
document
.
getElementById
(
'boton_pdf_maha_reporte'
).
addEventListener
(
'click'
,
reporteLinea2
);
document
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
document
.
getElementById
(
'boton_pdf_maha_reporte2'
).
addEventListener
(
'click'
,
reporteLinea1
);
console
.
log
(
'Pagina cargada'
);
});
function
reporteLinea1
()
{
function
reporteLinea1
()
{
generarReporteTemplate
(
'/home/administrador/repo_laika_hgt/uploads/Reporte MAHA Vertical105_V02.docx'
)
generarReporteTemplate
(
'/home/administrador/repo_laika_hgt/uploads/Reporte MAHA Vertical105_V02.docx'
)
}
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment