Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
5004 Visualizzazioni


In native reports, it’s possible to change the format of the values ​​from 12340,56 to $ 12.340,56

Avatar
Abbandona
Risposta migliore

Hi, 

In PDF , qweb you can use widget,

<span t-esc="o.amount or 0.00" t-options="{'widget': 'monetary'}"/> 

In xls, you can access the symbol of your currency,

sheet.write(row, col, self.env.user.company_id.currency_id.symbol, Style.normal_right())


Avatar
Abbandona
Risposta migliore

You should use the monetary widget, look at the native reports to see how it is done.

Avatar
Abbandona