Skip to Content

Contributors

Re: Big number changed automatically on float fields

I reviewed this before. I think is the "why is happening?" I also make a research of github issues and even stackoverflow but it's not the same context. Almost every issue related comes from the misleading float_round in float_utils helpers but I'm not even working with a float directly I just have inserted a large number and it's just python dealing with it like a float **18, not Odoo ORM. I'll read again the documentation in search of some hint. Thanks.

On 10/23/24 10:37, Holger Brunn wrote:
https://docs.python.org/3/tutorial/floatingpoint.html


-- 
Your partner for the hard Odoo problems
https://hunki-enterprises.com

_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe


by Ing. Rolando Pérez Rebollo - 05:02 - 23 Oct 2024

Reference

  • Big number changed automatically on float fields

    Hello, when trying to input very large numbers (with no decimals, 19 digits in my specific case) in credit or debit fields from journal items these numbers are changed on saving automatically with no explanation. The issue is easily reproducible in runbot Odoo 16 CE. I think a similar issue has been reported on github (https://github.com/odoo/odoo/issues/82597).

    Steps to reproduce (from a user with full accounting features enabled), demo db from runbot.com 16.0 CE:

    - Go to Invoicing/Accounting/Journal Entries

    - Create a new one

    - In Journal Items add a new line like this:

     

    - When saved we get:

    A value with the last Nth digits changed.

    I was able to debug in a local environment and my observations are:

    • Is not a problem from UI: emulating the creation of journal items from code gets the same results.
    • Is not a problem of visualization: wrong values are persisted into database.
    • At ORM level the large numbers are represented in python scientific notation, in this case 1.51337248356932e+18
      • From there python float "features" begin to work and the float part of the scientific notation gets transformed due to the way python stores float numbers.
    • If my tests are not wrong every single float field in Odoo is hit by this.

    I think is rare nobody has notice this before. Maybe I'm ignoring some very basic fact about currency settings in Odoo that's why I'm reaching U for help or any creative idea.


    by Ing. Rolando Pérez Rebollo - 03:30 - 23 Oct 2024