Wednesday, September 20, 2023
3 changes · master
Enhancements to existing features
Colombian tax labels have been updated to be easier to understand in both English and Spanish. This helps users identify the correct tax more quickly and reduces confusion when working with localized accounting records.
Original PR description
Before the change - Tax Names were not intuitive or easily understandable for the users, it was hard to relate which tax was referenced with each name. - The Name didn't include the Spanish translation, regardless the name is encoded now, it should be encoded based on the Spanish description. After the change: - Tax names(codes) both in English and Spanish are more intuitive and easier to understand for the users. - Tax names have better matching with the description. task-3475793 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes outdated browser checks that caused unnecessary startup errors in developer tools. It makes debugging Odoo web pages smoother without affecting supported browsers, since the removed checks only targeted very old browser versions.
Original PR description
To test which browser is currently running, jquery performs some checks when it starts, by doing invalid queryselectors. Depending on which selectors crashes, it can determinate if it is running in…
To test which browser is currently running, jquery performs some checks when it starts, by doing invalid queryselectors. Depending on which selectors crashes, it can determinate if it is running in an old browser and need to activate some part of the code to support them. This would not be a big deal, except that it makes the life of some developers much more difficult: we can no longer easily reload a page with a "Pause on exception" setting to debug odoo. Doing so works, but the workflow is polluted by 3 errors initially. It is so common that I propose to simply remove the checks. This should be acceptable, since Odoo does not work on old browser versions anyway We are talking about firefox 5, opera 11 or "Gecko", for a commit that is at least 11 years old Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Salary package pages now display currency symbols in the correct position for each currency, instead of always showing them on the right. This makes compensation information clearer and more familiar for users in different countries.
Original PR description
Currently the currency symbol is visible on the right side. in this commit, We show based on the currency position. task-3382081