fixes also decimals
This commit is contained in:
parent
261a3ca0b8
commit
a22dfa5a85
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@
|
|||
if i == 0 {
|
||||
return "0.00€"
|
||||
}
|
||||
str(calc.round(i * 100)).slice(0,-2)+ "." + str(i * 100).slice(-2) + "€"
|
||||
str(calc.round(i * 100)).slice(0,-2)+ "." + str(calc.round(i * 100)).slice(-2) + "€"
|
||||
}
|
||||
|
||||
// DIN 5008 nach Faltmarke 1
|
||||
|
|
Loading…
Add table
Reference in a new issue