Monday, January 22, 2024
8 changes · 17.0
Resolved issues and error corrections
The label for the SMS template field has been changed from 'Subject' to 'Title' to better reflect how SMS messages work. Unlike emails, SMS messages don't have a subject line, so using 'Title' is more accurate and less confusing for users creating marketing automation activities.
Original PR description
Before this commit: while creating an activity, the label for the `subject` field is displayed as 'Subject' for both the Email template and SMS template which was misleading as the SMS does not have a subject like emails. After this commit: The label has been changed to 'Title' which is appropriate for SMS Task-3500573 Forward-Port-Of: odoo/enterprise#53484
This update fixes reliability issues in the Belgian payroll testing system that were causing tests to fail unexpectedly. The fix ensures that time-dependent payroll tests run consistently and reliably, improving the stability of the payroll calculation system for Belgian operations.
This update removes a large set of product classification codes that were accidentally included in translation files. These codes don't need to be translated and were causing unnecessary work for the translation team. The change keeps only the essential terms that were originally intended for translation.
Original PR description
Reverts part of 1ce0dfa050c2281a29116a95e9b3ceed7eba842f which exported the product_unspsc terms by accident. We do not export these terms because there are too many and they are not useful to translate, so we revert the part of the commit that added them in by accident so our translators do not have a heart attack. The remaining terms are the ones that were already in the .pot file previous to export.
This update prevents certain complex reports, particularly the Finished Product PDF label report, from being edited through the visual report editor. These reports contain complex code and have data structure issues that make them unsuitable for editing in the studio interface. This change protects users from encountering errors and confusion when attempting to customize these specialized reports.
Original PR description
Before this commit, the report Finished Product PDF (mrp.label_production_view_pdf) was editable. Though this report really doesn't play well in the report editor as the xml contains a lot of code and the model on this report is wrong, meaning that "docs" does not refer to the actual data that report contain eventually. After this commit, this report cannot be edited via studio as it is too specific. opw-3650049 Forward-Port-Of: odoo/enterprise#54487
The SMS mass mailing feature previously displayed a misleading 'Subject' label for SMS messages, which don't have subjects like emails do. This fix changes the label to 'Title' to accurately reflect how SMS messages work, improving clarity for users creating SMS campaigns.
Original PR description
**Before this PR**: The label for the `sms_subject` field incorrectly displayed as 'Subject,' which was misleading as SMS messages do not have a subject like emails. **After this PR**: The label has been changed to 'Title' which is appropriate for SMS **Task**-3500573 Forward-Port-Of: odoo/odoo#135794
This update fixes an issue where personal task stages were incorrectly clickable in the project task calendar view. Personal stages are now properly disabled from being clicked, improving the user experience and preventing unintended interactions with private task information.
Original PR description
…sonal stage Steps to reproduce: - Open the project.task calendar view. - Observe that personal stages are clickable. Issue: - The personal stage should not be clickable in the 'project.task calendar' view Solution: - Disabled the clickable behavior for personal stages in the 'project.task calender' view 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 Forward-Port-Of: odoo/odoo#146090
Fixed an issue where the "PL Extra" tab was appearing for companies that are not based in Poland, even when the Polish localization module was installed. The tab will now only display for Polish companies, providing a cleaner interface for international users.
Original PR description
The tab PL Extra is visible if l10n_pl_jpk is installed and your company is not polish. This should not be the case. 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 Forward-Port-Of: odoo/odoo#146617
This fix resolves an issue where the table size information (number of rows and columns) was not visible in the table picker tool. The problem was caused by unnecessary CSS styling that was hiding this helpful information. Users will now be able to see the selected table dimensions clearly when using the table picker feature.
Original PR description
**Current behaviour before commit:** In tablepicker, number of the selected cells (rows X cols) is not visible at the bottom. This happens because of unnecessary css property applied by `.oe-tablepicker-size` class. **Desired behaviour after commit:** Now, `.oe-tablepicker-size` is removed. As result the number of the selected cells is visible at the bottom of tablepicker. task-3662728 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#148045