Commit 4d80da31 by Tu Nombre

cambios reportes

1 parent 223b8fab
...@@ -36,4 +36,12 @@ LOS O NO LLEVAN ALINIADOR AL PASO ...@@ -36,4 +36,12 @@ LOS O NO LLEVAN ALINIADOR AL PASO
Muestra peso de segundo eje en ves de peso total Muestra peso de segundo eje en ves de peso total
{Fmayor -Fmenor} / Fmayor {Fmayor -Fmenor} / Fmayor
AWE879
\ No newline at end of file \ No newline at end of file
AWE879
TTB504 NAFTA fLTAN GACES
No identifica EJE EStacionamiento
El eje se identifica desde EJE
\ No newline at end of file \ No newline at end of file
{ {
"1":{ "1":{
"N1":{ "N1":{
"2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL_v.02.docx", "2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL.docx",
"3":"" "3":""
}, },
"M1":{ "M1":{
...@@ -9,19 +9,19 @@ ...@@ -9,19 +9,19 @@
"3":"" "3":""
}, },
"N2":{ "N2":{
"2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL_v.02.docx", "2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL.docx",
"3":"/home/administrador/complatsa/(T)_REPORTE_4.docx" "3":"/home/administrador/complatsa/(T)_REPORTE_4.docx"
}, },
"M2":{ "M2":{
"2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL_v.02.docx", "2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL.docx",
"3":"/home/administrador/complatsa/(T)_REPORTE_4.docx" "3":"/home/administrador/complatsa/(T)_REPORTE_4.docx"
}, },
"N3":{ "N3":{
"2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL_v.02.docx", "2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL.docx",
"3":"/home/administrador/complatsa/(T)_CONPLAT_pesado_3_ejes_CVA_linea_1.docx" "3":"/home/administrador/complatsa/(T)_CONPLAT_pesado_3_ejes_CVA_linea_1.docx"
}, },
"M3":{ "M3":{
"2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL_v.02.docx", "2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL.docx",
"3":"/home/administrador/complatsa/(T)_CONPLAT_pesado_3_ejes_CVA_linea_1.docx" "3":"/home/administrador/complatsa/(T)_CONPLAT_pesado_3_ejes_CVA_linea_1.docx"
}, },
"O1":{ "O1":{
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
"4":"" "4":""
}, },
"UP":{ "UP":{
"2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL_v.02.docx", "2":"/home/administrador/complatsa/(T)_CONPLAT_liviano_2_ejes_CVA_linea_1_v1_GASOIL.docx",
"3":"", "3":"",
"4":"" "4":""
} }
......
...@@ -35,6 +35,37 @@ function Reportar (){ ...@@ -35,6 +35,37 @@ function Reportar (){
generarReporteTemplate(template.value) generarReporteTemplate(template.value)
} }
function buscarEje() {
let nombreCampo = "eje_freno_est";
try {
var valor = document.getElementsByName(nombreCampo)[0].value;
if (valor !== '') {
}else {
var valor = "2"
}
} catch {
console.log("Campo nombre " + nombreCampo + " No Encontrado");
}
// Objeto definido dentro de la función
const objeto = {
"1": "Valor asociado a clave1",
"2": "Segundo eje",
"3": "Tercer eje"
};
// String por defecto si no se encuentra la clave
const stringPorDefecto = "No se encontró el valor";
// Verificar si el string existe como clave en el objeto
if (objeto.hasOwnProperty(valor)) {
return objeto[cadena]; // Devolver el contenido si existe
} else {
return stringPorDefecto; // Devolver el string por defecto si no existe
}
}
function generarReporteTemplate (template) { function generarReporteTemplate (template) {
...@@ -128,6 +159,8 @@ function generarReporteTemplate (template) { ...@@ -128,6 +159,8 @@ function generarReporteTemplate (template) {
agregarCampoAObjetoID('resistencia_izquierda_1', 'fs1',solicitud); agregarCampoAObjetoID('resistencia_izquierda_1', 'fs1',solicitud);
agregarCampoAObjetoID('peso_freno_der_1', 'f10',solicitud); agregarCampoAObjetoID('peso_freno_der_1', 'f10',solicitud);
//Fr. Estacionam. //Fr. Estacionam.
solicitud["titulo_eje_est"] = buscarEje();
//Eje 2 eje //Eje 2 eje
agregarCampoAObjeto('fuerza_izquierda_2', 'g',solicitud); agregarCampoAObjeto('fuerza_izquierda_2', 'g',solicitud);
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!