KFNS#41064 decimalen terug naar 2

svn path=/Website/branches/v2017.1/; revision=34460
This commit is contained in:
2017-06-28 11:52:02 +00:00
parent d97eb5507f
commit 92d2b4d9ac

View File

@@ -1933,12 +1933,12 @@ mld = {setmeldingstatus:
if (result.uitvoertijd_eenheid == "D")
result.uitvoertijdtxt = result.uitvoertijd + " " + L("lcl_mld_days");
else
result.uitvoertijdtxt = Math.round(result.uitvoertijd * 100000) / 100000 + " " + L("lcl_mld_hours");
result.uitvoertijdtxt = Math.round(result.uitvoertijd * 100) / 100 + " " + L("lcl_mld_hours");
if (result.actualuitvoertijd_eenheid == "D")
result.actualuitvoertijdtxt = Math.round(result.actualuitvoertijd * 100000) / 100000 + " " + L("lcl_mld_days");
result.actualuitvoertijdtxt = Math.round(result.actualuitvoertijd * 100) / 100 + " " + L("lcl_mld_days");
else
result.actualuitvoertijdtxt = Math.round(result.actualuitvoertijd * 100000) / 100000 + " " + L("lcl_mld_hours");
result.actualuitvoertijdtxt = Math.round(result.actualuitvoertijd * 100) / 100 + " " + L("lcl_mld_hours");
if (result.respijt_eenheid == "D")
result.respijttxt = result.respijt + " " + L("lcl_mld_days");