Dear all,
I am using Odoo 12 and have a report that shows integer values without thousands separator. For instance: 1000.
What I need to do is to show this value with the thousands separator, like: 1.000 (using "." - dot)
I was able to do it for "," as the separator, but not the "." (dot), and I really need the "." - dot as the separator.
For the "," I have used (achieved 1,000):
<t t-esc="'{0:,.0f}'.format(int(line['my_value']))"
Can anyone help me achieve the same result with the "." (dot) thousands separator?
Thank you all in advance
Best regards
Paulo