Commit 26172d35 by Tu Nombre

Achico segun necesidad

1 parent a6e38495
...@@ -138,7 +138,7 @@ class PDF2 { ...@@ -138,7 +138,7 @@ class PDF2 {
frenosToPDF(pointer, data) { frenosToPDF(pointer, data) {
const frenos = this.A4.addRelativeChild(new Div(pointer, new Vector(Pos.end, 60))); const frenos = this.A4.addRelativeChild(new Div(pointer, new Vector(Pos.end, 60))); //Esto hay q achicar
const divsize = new Vector(this.containerSize, Pos.quarter); const divsize = new Vector(this.containerSize, Pos.quarter);
...@@ -184,26 +184,29 @@ class PDF2 { ...@@ -184,26 +184,29 @@ class PDF2 {
]); ]);
} }
}; };
let contador = 0
for (let i = 0; i < ejes.length; i++) { for (let i = 0; i < ejes.length; i++) {
table( if (data[`peso_estatico_${i + 1}`] != '---') {
ejes[i], contador = contador + 15
i + 1, table(
data[`fuerza_izquierda_${i + 1}`], ejes[i],
data[`resistencia_izquierda_${i + 1}`], i + 1,
data[`ovalidad_izquierda_${i + 1}`], data[`fuerza_izquierda_${i + 1}`],
data[`peso_estatico_${i + 1}`], data[`resistencia_izquierda_${i + 1}`],
data[`fuerza_derecha_${i + 1}`], data[`ovalidad_izquierda_${i + 1}`],
data[`resistencia_derecha_${i + 1}`], data[`peso_estatico_${i + 1}`],
data[`ovalidad_derecha_${i + 1}`], data[`fuerza_derecha_${i + 1}`],
data[`diferencia_freno_${i + 1}`], data[`resistencia_derecha_${i + 1}`],
data[`peso_izquierdo_${i + 1}`], data[`ovalidad_derecha_${i + 1}`],
data[`peso_derecho_${i + 1}`], data[`diferencia_freno_${i + 1}`],
); data[`peso_izquierdo_${i + 1}`],
data[`peso_derecho_${i + 1}`],
);
//console.log(data); //console.log(data);
}
} }
return pointer.addxy(0, 60); return pointer.addxy(0, contador);
} }
traseroToPDF(pointer, data) { traseroToPDF(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!