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 4d80da31
authored
2025-01-09 10:44:59 -0300
by
Tu Nombre
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
cambios reportes
1 parent
223b8fab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
7 deletions
data/cva
data/reportesGAS_OIL.json
static/src/carbone.js
data/cva
View file @
4d80da3
...
...
@@ -36,4 +36,12 @@ LOS O NO LLEVAN ALINIADOR AL PASO
Muestra peso de segundo eje en ves de peso total
{Fmayor -Fmenor} / Fmayor
AWE879
\ 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
data/reportesGAS_OIL.json
View file @
4d80da3
{
"1"
:{
"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"
:
""
},
"M1"
:{
...
...
@@ -9,19 +9,19 @@
"3"
:
""
},
"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"
},
"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"
},
"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"
},
"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"
},
"O1"
:{
...
...
@@ -45,7 +45,7 @@
"4"
:
""
},
"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"
:
""
,
"4"
:
""
}
...
...
static/src/carbone.js
View file @
4d80da3
...
...
@@ -35,6 +35,37 @@ function Reportar (){
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
)
{
...
...
@@ -128,6 +159,8 @@ function generarReporteTemplate (template) {
agregarCampoAObjetoID
(
'resistencia_izquierda_1'
,
'fs1'
,
solicitud
);
agregarCampoAObjetoID
(
'peso_freno_der_1'
,
'f10'
,
solicitud
);
//Fr. Estacionam.
solicitud
[
"titulo_eje_est"
]
=
buscarEje
();
//Eje 2 eje
agregarCampoAObjeto
(
'fuerza_izquierda_2'
,
'g'
,
solicitud
);
...
...
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