mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	Pretty money function is invalid in Javascript: it mays display an additional euro
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
		@@ -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) + ' €'
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user