Daily updates from Odoo
Thursday, June 13, 2019
1 change · master
Enhancements to existing features
Odoo now hides confusing automatically generated TaxCloud tax names and instead shows the actual tax amount per line when TaxCloud is used. This reduces customer confusion, prevents users from manually selecting generated TaxCloud taxes, and improves warnings and checkout totals when TaxCloud is not yet configured or calculated.
Original PR description
The generated tax names contain an estimate of the percentage. This leads to issues though. E.g. ``` |---------+------------+-------------| | Product | Unit price | Taxes | |---------+------------+-------------| | A | 10.00 | Tax 7.700 % | | A | 55.00 | Tax 7.745 % | | A | 100.00 | Tax 7.750 % | |---------+------------+-------------| ``` These 3 tax rates are really the same, but to make the tax amount correct after rounding Odoo calculates 3 different taxes. This is confusing to customers. Instead always show the tax amount per line and hide the taxes if the fiscal position uses taxcloud. Note that the issue does not appear on reports because these generated taxes are grouped under a generic name. https://www.odoo.com/web?debug#id=1920560&action=327&model=project.task&view_type=form&menu_id=4720 Related to odoo/odoo#18084