Ir al contenido
Menú
Se marcó esta pregunta
2 Respuestas
58444 Vistas

Hello I am trying to print the account.move model, and all is ok, but I need that the numbers appear like money "1,465.00", i can't show thtat with the to=housand separator and the 2 decimals.

Can someone help me and say me how.

This is the form that i am using for call the element: <t t-esc="line.credit" />

Avatar
Descartar
Autor Mejor respuesta

I have solved that. If someone help this:

      <t t-esc="'{0:,.2f}'.format(int(line.credit))" />

Avatar
Descartar

Could you please elaborate on what {0:,.2f}'.format(int(line.credit)) means?

Good answer, work like a charm

Hi Javier Batres

Thanks for your answer is really helpful. Is there a way to change the type of the format you choose (instead of "," I want to use space " ". Instead of "." I want to use ",")

I'm still waiting for your answer, thanks in advance

Hi Othman you can use .replace

<t t-esc="'{0:,.2f}'.format(int(line.credit)).replace(',', ' ')" />

Mejor respuesta

you don't need to hard code your report with a specific format. so you can use the built in formats of odoo to support multi currency. as the following example

<t t-field="line.credit" t-field-options='{"widget": "monetary", "display_currency": "o.currency_id"}' />

also you need to check & make sure about the following settings that match your need

Settings -> Translations -> Languages -> 'your language settings'

seperator format should be something like [3,0]

for more info go to http://openerp-server.readthedocs.org/en/latest/06_ir_qweb.html

Avatar
Descartar

does this work only for Monetary type field?

Publicaciones relacionadas Respuestas Vistas Actividad
2
sept 24
1843
5
ago 19
46470
4
jun 18
20014
0
jun 18
3248
2
may 16
16852