adds multiplication bug workaround (closes #3)

This commit is contained in:
cybrwshl 2024-02-18 12:40:35 +01:00
parent ad53173d20
commit 261a3ca0b8

View file

@ -66,7 +66,7 @@
if i == 0 { if i == 0 {
return "0.00€" return "0.00€"
} }
str(i * 100).slice(0,-2)+ "." + str(i * 100).slice(-2) + " €" str(calc.round(i * 100)).slice(0,-2)+ "." + str(i * 100).slice(-2) + "€"
} }
// DIN 5008 nach Faltmarke 1 // DIN 5008 nach Faltmarke 1