Tuesday, December 5, 2023
3 changes
Resolved issues and error corrections
Quality test type names can now be translated, making the Quality app easier to use for non-English-speaking teams. This improves localization and helps users understand quality checks in their preferred language.
Original PR description
quality.point.test_type names weren't being translated. Let's improve the quality of the quality module for non-native English speakers! Note that this fix is added into v15-saas-15.2, but could not be added for v16-v17 stable versions due to adding "translate=True" to a Char field requiring a -u of the module (since its translations are stored as a different db column)
This update removes outdated image URL handling from WhatsApp conversation threads. It helps keep the WhatsApp integration aligned with the main platform changes and reduces the chance of incorrect or duplicated chat image data.
Original PR description
see https://github.com/odoo/odoo/pull/140469
The Planning app no longer shows a client error when users open the roles view from the configuration menu. This restores access to role configuration and avoids disruption for managers setting up planning resources.
Original PR description
This commit fixes a traceback that would appear when trying to access the roles view from the configuration many in the Planning application. -- Behaviour Before -- When navigating to the roles from the configuration menu, a client error would appear stating that ``_lt`` is not a function. -- Issue -- We use _lt for translations in many2many_avatar_resource_field.js and for some reason an error was popping up. The ``_lt`` function will be merged with the ``_t`` function in 17.1 so this would have been done anyways. -- Current Behaviour -- Everything works alright ! task-3599395