Hello,
How can I do to round the calculation of taxes to 3 digits.
price decimals = 3
currency decimals = 3
I have the following error:
In my invoice I have 2 lines:
quantity x price = price_subtotal
160x1322.11 = 211537.600
84x416.13 = 34954.920
base = 246492.520
tax (19%) = 46833.578
but in the tax detail, tab (other information)
base = 246,492,520
amount = 46,833,570 (error)
* Here it seems to me that odoo is rounding to 2 decimals, the tax calculation and adding it.
211,537.60 | x19% | 40192.14 |
34,954.92 | x19% | 6641.43 |
|
|
46833.57 |
***** changing the rounding method from line to global and from global to line, without being able to solve it. ****** Please your support.which should be the correct configuration??, I think I have to def compute_all, from account.tax ??