Commit cd8de7e5 by Tu Nombre

Modificado reporte de Frenos

1 parent 25d320be
...@@ -312,12 +312,12 @@ def readdata(s, r): ...@@ -312,12 +312,12 @@ def readdata(s, r):
##################################CALCULADOS############################################## ##################################CALCULADOS##############################################
fre[f'peso_derecho_{i + 1}'] = DividirPeso(pSo) fre[f'peso_derecho_{i + 1}'] = DividirPeso(pSo)
fre[f'peso_izquierdo_{i + 1}'] = DividirPeso(pSo) fre[f'peso_izquierdo_{i + 1}'] = DividirPeso(pSo)
r['frenos'].update(fre) r['frenos'].update(fre)
r['frenos']["pesoTotalFreno"] = PuntoComa(s.traerTextDiv(f"divTotalPesoBascula")) r['frenos']["pesoTotalFreno"] = PuntoComa(s.traerTextDiv(f"divTotalPesoBascula"))
r['frenos']["totalFzaIzq"] = PuntoComa(s.traerTextDiv(f"divTotalFuerzaIzq")) r['frenos']["totalFzaIzq"] = PuntoComa(s.traerTextDiv(f"divTotalFuerzaIzq"))
r['frenos']["totalFzaDer"] = PuntoComa(s.traerTextDiv(f"divTotalFuerzaDer")) r['frenos']["totalFzaDer"] = PuntoComa(s.traerTextDiv(f"divTotalFuerzaDer"))
r['frenos']["totalEficacia"] = PuntoComa(s.traerTextDiv(f"divTotalEficiencia")) r['frenos']["totalEficacia"] = PuntoComa(s.traerTextDiv(f"divTotalEficiencia")).replace("%","")
# freno trasero # freno trasero
......
...@@ -149,7 +149,7 @@ class PDF2 { ...@@ -149,7 +149,7 @@ class PDF2 {
new Div(new Vector(Pos.beg_margin + 2, Pos.three_quarters), divsize) new Div(new Vector(Pos.beg_margin + 2, Pos.three_quarters), divsize)
]); ]);
const table = (container, eje, FI, RI, OI, peso, FD, RD, OD, DFT) => { const table = (container, eje, FI, RI, OI, peso, FD, RD, OD, DFT,Pi,Pd) => {
if (FI === RI === OI === peso === FD === RD === OD) { if (FI === RI === OI === peso === FD === RD === OD) {
console.log(eje) console.log(eje)
...@@ -157,22 +157,30 @@ class PDF2 { ...@@ -157,22 +157,30 @@ class PDF2 {
container.addRelativeChildren([ container.addRelativeChildren([
new Text(`${this.Dominio} - Diagnóstico de Frenos - Eje ${eje}`, new Vector(Pos.beg, Pos.beg_margin + 10), this.font), new Text(`${this.Dominio} - Diagnóstico de Frenos - Eje ${eje}`, new Vector(Pos.beg, Pos.beg_margin + 10), this.font),
new Text("Fuerza IZ", new Vector(Pos.beg_margin, Pos.quarter), this.font), //new Text("Fuerza IZ", new Vector(Pos.beg_margin, Pos.quarter), this.font),
new Text(`${FI} KN`, new Vector(Pos.beg_margin + 3, Pos.quarter + 10), this.font), //new Text(`${FI} KN`, new Vector(Pos.beg_margin + 3, Pos.quarter + 10), this.font),
new Text("Res.Rodadura IZ", new Vector(Pos.beg_margin, Pos.middle), this.font), new Text("Peso Lado Izquierdo", new Vector(Pos.beg_margin, Pos.quarter), this.font),
new Text(`${RI} Kg`, new Vector(Pos.beg_margin + 3, Pos.middle + 10), this.font), new Text(`${Pi} Kg`, new Vector(Pos.beg_margin + 3, Pos.quarter + 10), this.font),
new Text("Ovalidad IZ", new Vector(Pos.beg_margin, Pos.three_quarters), this.font), new Text("Fuerza IZ", new Vector(Pos.beg_margin, Pos.middle), this.font),
new Text(`${OI}`, new Vector(Pos.beg_margin + 3, Pos.three_quarters + 10), this.font), new Text(`${FI} KN`, new Vector(Pos.beg_margin + 3, Pos.middle + 10), this.font),
new Text("Peso del Eje", new Vector(Pos.middle - 10, Pos.middle), this.font), //new Text("Res.Rodadura IZ", new Vector(Pos.beg_margin, Pos.middle), this.font),
new Text(`${peso} Kg`, new Vector(Pos.middle - 5, Pos.middle + 10), this.font), //new Text(`${RI} Kg`, new Vector(Pos.beg_margin + 3, Pos.middle + 10), this.font),
new Text("Diferencia ", new Vector(Pos.middle - 10, Pos.quarter), this.font), //new Text("Ovalidad IZ", new Vector(Pos.beg_margin, Pos.three_quarters), this.font),
new Text(`${DFT} %`, new Vector(Pos.middle - 5, Pos.quarter + 10), this.font), //new Text(`${OI}`, new Vector(Pos.beg_margin + 3, Pos.three_quarters + 10), this.font),
new Text("Fuerza DE", new Vector(Pos.three_quarters, Pos.quarter), this.font), new Text("Diferencia", new Vector(Pos.middle - 10, Pos.middle), this.font),
new Text(`${FD} KN`, new Vector(Pos.three_quarters + 3, Pos.quarter + 10), this.font), new Text(`${DFT} Kg`, new Vector(Pos.middle - 5, Pos.middle + 10), this.font),
new Text("Res.Rodadura DE", new Vector(Pos.three_quarters, Pos.middle), this.font), new Text("Peso del Eje ", new Vector(Pos.middle - 10, Pos.quarter), this.font),
new Text(`${RD} Kg`, new Vector(Pos.three_quarters + 3, Pos.middle + 10), this.font), new Text(`${peso} %`, new Vector(Pos.middle - 5, Pos.quarter + 10), this.font),
new Text("Ovalidad DE", new Vector(Pos.three_quarters, Pos.three_quarters), this.font), //new Text("Fuerza DE", new Vector(Pos.three_quarters, Pos.quarter), this.font),
new Text(`${OD}`, new Vector(Pos.three_quarters + 3, Pos.three_quarters + 10), this.font) //new Text(`${FD} KN`, new Vector(Pos.three_quarters + 3, Pos.quarter + 10), this.font),
new Text("Peso Lado Derecho", new Vector(Pos.three_quarters, Pos.quarter), this.font),
new Text(`${Pd} KG`, new Vector(Pos.three_quarters + 3, Pos.quarter + 10), this.font),
//new Text("Res.Rodadura DE", new Vector(Pos.three_quarters, Pos.middle), this.font),
//new Text(`${RD} Kg`, new Vector(Pos.three_quarters + 3, Pos.middle + 10), this.font),
new Text("Fuerza DE", new Vector(Pos.three_quarters, Pos.middle), this.font),
new Text(`${FD} KN`, new Vector(Pos.three_quarters + 3, Pos.middle + 10), this.font)
//new Text("Ovalidad DE", new Vector(Pos.three_quarters, Pos.three_quarters), this.font),
//new Text(`${OD}`, new Vector(Pos.three_quarters + 3, Pos.three_quarters + 10), this.font)
]); ]);
} }
}; };
...@@ -188,7 +196,9 @@ class PDF2 { ...@@ -188,7 +196,9 @@ class PDF2 {
data[`fuerza_derecha_${i + 1}`], data[`fuerza_derecha_${i + 1}`],
data[`resistencia_derecha_${i + 1}`], data[`resistencia_derecha_${i + 1}`],
data[`ovalidad_derecha_${i + 1}`], data[`ovalidad_derecha_${i + 1}`],
data[`diferencia_freno_${i + 1}`] data[`diferencia_freno_${i + 1}`],
data[`peso_izquierdo_${i + 1}`],
data[`peso_derecho_${i + 1}`],
); );
//console.log(data); //console.log(data);
} }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!