Friday, January 19, 2024
4 changes
Resolved issues and error corrections
This fix resolves an issue where an unlinked "To Do" task stage was appearing in the project configuration even though it wasn't assigned to any project. The problem was caused by a case-sensitivity mismatch in the cleanup process. After this update, orphaned task stages will be properly removed automatically.
Original PR description
Steps to reproduce: -------------------------- 1) Install documents_project_sale module. 2) Open project 3) Go to configuration > task stages. 4) There is a 'To Do' stage that isn't linked to any project. Issue: -------- before this commit, the 'To Do' stage that stage that isn't linked to any project. which is showing abnormally. Cause: --------- The created stage will be removed automatically but the problem is it searches for 'To do' not 'To Do' that's why it was not removed. Fix: ----- after this commit, when we go to the task stages it will search for the 'To Do' stage if there is no project linked to the 'To Do' stage then it will be removed automatically the 'To Do' stage. task-3550638 Forward-Port-Of: odoo/enterprise#49641
This fix resolves a display issue in percent pie charts where values were sometimes shown with excessive decimal places due to rounding precision problems. The values are now cleanly displayed rounded to 2 decimal places, or as whole numbers when appropriate, improving the visual clarity of reports and dashboards.
Original PR description
Fix the rounding of the percentpie field value as it was sometimes displaying a very long number due to python rounding precision. The value is now displayed rounded to 2 decimals using half to even rounding and keeps being displayed as an integer if there's only zeros as decimals. Task-3648755 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes a technical issue that prevented the "Down payment invoice" text from being properly translated into different languages. The fix reorganizes how the translation system processes this text, ensuring it can be exported and translated correctly for international users.
Original PR description
Nested gettexts aren't exported. This commit solves the problem by moving the inner gettext outside of the arguments of the first gettext.
This update fixes how HTML content is displayed in the onboarding tours for mass mailing and website modules. Previously, HTML tags were shown as plain text to users. Now, the formatted content displays correctly, making the tours more user-friendly and easier to follow.
Original PR description
Current behavior before PR: - HTML tags are displayed in the onboarding tour. Desired behavior after PR is merged: - Display the HTML tag effects instead of showing it in the onboarding tour. After the https://github.com/odoo/odoo/pull/107618 web_tour was converted into Owl, 'markup' was required to show the html tag effect instead of htm tags. Related Enterprise PR-https://github.com/odoo/enterprise/pull/53893 Task-3457112 Forward-Port-Of: odoo/odoo#149647 Forward-Port-Of: odoo/odoo#148604