Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
1233 Переглядів

In Contract  module  , Contact ID  shows with  comma separator  ( ex :  1,216)


how to change  format without comma





Аватар
Відмінити
Найкраща відповідь

You can reffer this

https://www.odoo.com/forum/help-1/remove-the-commas-on-integer-values-190499

Аватар
Відмінити
Найкраща відповідь

Hi,

The ID field is that you provided is of type Integer. In the default Odoo work flow Integer field will show a comma separator. To remove you can add the field widget "widget="integer" " and can add "options="{'format': 0}" "


eg:

<field name = "id" widget="integer" options="{'format': 0}"/>


Hope it helps

Аватар
Відмінити