Friday, August 23, 2024
4 changes · master
Enhancements to existing features
This update removes reliance on an older database query helper across several reporting and data cleanup areas. It keeps payroll, recruitment, planning, timesheet forecasting, and data cleaning reports aligned with the main platform’s database practices, reducing maintenance risk without changing day-to-day user workflows.
Original PR description
odoo/odoo#173992
This update adds automated test coverage for reacting to WhatsApp messages. It helps ensure upcoming WhatsApp messaging improvements work reliably before they reach users.
Original PR description
Preparation for PR odoo/odoo#170553
This update adjusts website sales and rental test tours to use the latest shared testing utility structure. It is an internal quality improvement that helps keep automated checks maintainable without changing customer-facing behavior.
This update improves how translated messages are built across multiple Odoo Enterprise apps, reducing cases where parts of messages could stay untranslated or appear in an unnatural word order. This helps deliver clearer, more accurate wording for users working in languages other than English.
Original PR description
There are many places in the code where translated strings are concatenated to other strings, translated or untranslated. While it is sometimes the right thing to do, there are also a lot of problematic cases: - When concatenating untranslated strings, it obviously means they won't be translated, even though they sometimes should be - Even if they don't need to be, the order of words can vary greatly between languages, and including it makes reordering easier. - The same issue can arise when concatenating multiple translated strings, especially if they are part of one sentence. This commit fixes the problematic occurrences of concatenation. It also adds some named placeholders and uses of the `format_list` helper. Community: https://github.com/odoo/odoo/pull/171425 Task-3997249