Monday, July 6, 2020
5 changes · master
Resolved issues and error corrections
Updates Canadian localization settings so Prince Edward Island uses the current 15% HST rate instead of the outdated 14% rate. This helps businesses apply the correct provincial tax and avoid incorrect tax calculations.
Original PR description
Description of the issue/feature this PR addresses: HST 14% tax was replaced with 15% tax in October 2016 as per [GST/HST provincial rates table](https://www.canada.ca/en/revenue-agency/services/tax/businesses/topics/gst-hst-businesses/charge-collect-which-rate/calculator.html#rt) Current behavior before PR: Incorrect fiscal position for Prince Edward Island Desired behavior after PR is merged: Update Fiscal position for Prince Edward Island Remove 14% tax -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Transparency previews now use a shared checkerboard background instead of duplicated styling across website editing areas. This keeps visual behavior consistent, removes an incorrect dependency between apps, and fixes a layout issue in the color picker.
Original PR description
*: website The style to achieve the chess-like bg result was duplicated at many places. The 'web' app was also actually using an image from the 'web_editor' app (we can live with it in stable as web_editor always comes with web in auto_install but this was still a mistake). Also: fix some layout issue in the colorpicker widget.
This fixes an issue where planning chart labels could display incorrectly when the forecasting feature was installed. Users now see clearer and more consistent labels in scheduling views, reducing confusion when reviewing planned work.
Original PR description
…ecast is installed
This change adds automated checks to ensure expanding a chat window works as expected in the enterprise mail app. It helps prevent regressions in the messaging experience, reducing the risk of users encountering broken or inconsistent chat behavior.
Original PR description
See also odoo/odoo#54141 task-2282273
Belgian CODA bank statement import messages now translate at the right time instead of during server startup, when no user language is available. This ensures users see the correct localized wording and avoids unnecessary translation work during restarts.
Original PR description
All those strings were translated at server start, but at this step, there is no language defined anyway... Thus, all those strings were never translated... Through the use of the lazy translation method, we avoid useless attempts of translation at server (re)starts, and we ensure that the strings are correctly translated when necessary. Linked with https://github.com/odoo/odoo/pull/54118