refactor length calculation to convert total length to meters before formatting

This commit is contained in:
Manuel Weiser 2025-03-10 17:33:47 +01:00
parent 6cd280389d
commit cd71949c82

View File

@ -86,10 +86,10 @@ function populateVendorDropdown(data, selectedSmId = null) {
}); });
// Nach der Schleife: Formatierung der Gesamtlänge // Nach der Schleife: Formatierung der Gesamtlänge
console.log("Total Length: ", totalLength); const lengthInM = totalLength / 1000; // erst in m umrechnen
const formattedLength = totalLength > 1000 const formattedLength = lengthInM > 1000
? (totalLength / 1000).toFixed(2) + " km" ? (lengthInM / 1000).toFixed(2) + " km"
: totalLength.toFixed(2) + " m"; : lengthInM.toFixed(2) + " m";
// Formatierung des Gesamtgewichts (von g zu kg zu t) // Formatierung des Gesamtgewichts (von g zu kg zu t)
const weightInKg = totalWeight / 1000; // erst in kg umrechnen const weightInKg = totalWeight / 1000; // erst in kg umrechnen