Merge branch 'fix-pretty-money' into 'beta'

Pretty money function is invalid in Javascript: it mays display an additional euro

See merge request bde/nk20!183
This commit is contained in:
ynerant 2021-09-28 09:36:44 +00:00
commit d1a9f21b56
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@
* @returns {string}
*/
function pretty_money (value) {
if (value % 100 === 0) { return (value < 0 ? '- ' : '') + Math.round(Math.abs(value) / 100) + ' €' } else {
return (value < 0 ? '- ' : '') + Math.round(Math.abs(value) / 100) + '.' +
if (value % 100 === 0) { return (value < 0 ? '- ' : '') + Math.floor(Math.abs(value) / 100) + ' €' } else {
return (value < 0 ? '- ' : '') + Math.floor(Math.abs(value) / 100) + '.' +
(Math.abs(value) % 100 < 10 ? '0' : '') + (Math.abs(value) % 100) + ' €'
}
}