Friday, June 21, 2024
3 changes · saas-17.3
Resolved issues and error corrections
This fixes an issue where a warning tooltip appeared whenever users hovered over draggable content blocks in the website editor. The message now appears only when a block truly cannot be used, reducing confusion while editing pages.
Original PR description
Since [1], a tooltip indicating "This block cannot be dropped anywhere on this page." appears each time you hover a draggable snippet. This commit addresses the issue by only showing this tooltip in the right circumstances, when a snippet is not draggable (disabled or installable...). [1]: https://github.com/odoo/odoo/commit/91293fe4a8125f65cd7e5f487aacbc62c35c0f74#diff-c971e01f28cfbdec366b6a712c516e3427887fde8a39674e5bb3b5a056cedad0R178 task-3893159
This fix ensures WhatsApp conversation entries display the proper contact photo by using the existing contact identity logic. Users get a more consistent and recognizable WhatsApp sidebar experience, reducing confusion when identifying customers.
Original PR description
Since Persona model properly determines `avatarUrl` it makes sense to invoke its method, that way we make sure that proper partner avatar is fetched. X-original-commit: 706259bc1177b22ee66c70062d8cb8f750bf0f02 fixes original pr of the task-3908710
This update completes a previous cleanup in the Belgian reporting module and fixes errors that could occur when identifying partners needing VAT listing warnings. It helps ensure Belgian VAT reporting checks work reliably when the related warning flow is used.
Original PR description
Currently there are errors in `_get_warning_partners`: E.g. `_get_turnover_query` is expected to return 3 values but it only returns 2 now (due to a refactoring; see below). In commit eeaa8d3b31d8efccd42b8705ba387527a39dfb57 some parts of l10n_be_reports were refactored. Some parts were forgotten during a rebase. (The changes were introduced after the refactoring PR was created but before it was merged). This commit finishes the refactoring (and in the process removes the errors). The problematic function is currently not called: This is fixed in https://github.com/odoo/enterprise/pull/64313 on 17.2 Error was found during: https://github.com/odoo/enterprise/pull/61962