Commit a5a71c87 by Tu Nombre

retiro dinamico de suspension

1 parent 26172d35
...@@ -58,5 +58,5 @@ report = { ...@@ -58,5 +58,5 @@ report = {
'co': '?', 'co': '?',
'hc': '?'}, 'hc': '?'},
'ruido': { 'ruido': {
'nivelsonoro': '?'} 'nivelsonoro': '92'}
} }
\ No newline at end of file \ No newline at end of file
...@@ -122,18 +122,21 @@ class PDF2 { ...@@ -122,18 +122,21 @@ class PDF2 {
new Text(RD, new Vector(Pos.three_quarters + 5, Pos.end), this.font) new Text(RD, new Vector(Pos.three_quarters + 5, Pos.end), this.font)
]); ]);
}; };
let contador = 0
for (let i = 0; i < 2; i++) { for (let i = 0; i < 2; i++) {
table( if (data[`peso_estatico_${i + 1}`] != '---') {
ejes[i], contador = 15
i + 1, table(
data[`rendimiento_izquierdo_${i+1}`], ejes[i],
data[`peso_estatico_${i+1}`], i + 1,
data[`rendimiento_derecho_${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) { 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!