Commit a5a71c87 by Tu Nombre

retiro dinamico de suspension

1 parent 26172d35
......@@ -58,5 +58,5 @@ report = {
'co': '?',
'hc': '?'},
'ruido': {
'nivelsonoro': '?'}
'nivelsonoro': '92'}
}
\ No newline at end of file
......@@ -122,18 +122,21 @@ class PDF2 {
new Text(RD, new Vector(Pos.three_quarters + 5, Pos.end), this.font)
]);
};
let contador = 0
for (let i = 0; i < 2; i++) {
table(
ejes[i],
i + 1,
data[`rendimiento_izquierdo_${i+1}`],
data[`peso_estatico_${i+1}`],
data[`rendimiento_derecho_${i+1}`]
);
if (data[`peso_estatico_${i + 1}`] != '---') {
contador = 15
table(
ejes[i],
i + 1,
data[`rendimiento_izquierdo_${i+1}`],
data[`peso_estatico_${i+1}`],
data[`rendimiento_derecho_${i+1}`]
);
}
}
return pointer.addxy(0, 15);
return pointer.addxy(0, contador);
}
frenosToPDF(pointer, data) {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!