Wednesday, December 20, 2023
4 changes
Resolved issues and error corrections
This fix improves error messages in the Knowledge module by displaying the article name when users encounter issues while moving articles. Previously, error messages were incomplete and didn't show which article caused the problem, making it harder for users to identify and resolve issues.
Original PR description
Some error message parameters were missing for the `move_to` operation, preventing the user from seeing the article name related to the erroneous operation. task-3640010 Forward-Port-Of: odoo/enterprise#52979 Forward-Port-Of: odoo/enterprise#52761
This update corrects how salary offers are displayed in the system. Previously, the offer display was showing the validity date, which was confusing. Now it correctly shows the creation date of the offer, making it clearer when the offer was actually created and sent to employees.
Original PR description
Currently, when sending an offer the display name of the offer uses the validity date of the offer instead of the create date. This commit fixes this as displaying the validity date does not make sense. task-3619108 Forward-Port-Of: odoo/enterprise#51959
This update resolves an issue where the self-assignment button was appearing twice in the Planning schedule form. The fix removes unnecessary user group restrictions on the button and ensures it properly respects visibility settings, providing a cleaner user interface.
Original PR description
Before this PR, header button for self assigning display twice inside the planning.slot form view. In this PR, fixes the issue by removing user group access on the button. as well as button get invisible on 'invisible' attribute condition and ignore 'attrs' conditions. task-3475975 Forward-Port-Of: odoo/enterprise#46462
This update removes unwanted extra spacing that was appearing in warning messages displayed during barcode scanning operations. The issue was caused by formatting characters in the message text and has been corrected to improve the visual presentation of these important user notifications.
Original PR description
Extra spacing was appearing between two sentences in warning message. Steps to reproduce: ------------------- * Install 'barcode' * On barcode, close the blue message under 'Barcode Scanning' Why the fix: ------------ Since 16.0 the message is shown in 'white-space: pre-wrap style'. Character '\ ' was causing extra spacing. NOTE: ----- The fix doesn't brake translations. Translations weren't working prior to the fix anyway. opw-3608979 Forward-Port-Of: odoo/enterprise#52927 Forward-Port-Of: odoo/enterprise#52867