Friday, August 8, 2025
9 changes
1 change
Enhancements to existing features
Renaming website builder snippets no longer triggers an unnecessary server request just to refresh snippet templates. This makes the rename action more efficient and helps avoid needless background processing without changing user-facing behavior.
Original PR description
After this [commit] `load` function with orm call was performed only for the purpose of recomputing snippets templates, when only snippet names were changed, which is unnecessary. [commit]: https://github.com/odoo/odoo/commit/544bb048c6688eae2c445e059b3abbf502660d37
1 change
Enhancements to existing features
The bank reconciliation statement button has been repositioned to the right side of each statement line. This prevents it from overlapping with other actions on smaller screens, making it easier for users to click the intended button.
Original PR description
This commit will move the statement button on the right of the statement line because when having a small screen the button was at the place of the other button of the statement line which could cause problems for the users to click on it task: 5004109
7 changes
Enhancements to existing features
This update reorganizes shared discussion action settings used by live chat and related messaging features. It should make the messaging experience easier to maintain and more consistent across support conversations, with no major user-facing change expected.
This update organizes web client translation text more clearly across areas such as Documents Spreadsheet, Sign, and IAP Extract. It helps keep labels and messages easier to manage for multilingual users, with no expected change to everyday workflows.
The contact import template has been refreshed to make importing contact data easier for users. It now includes a ready-to-use example with demo data and validation coverage to help keep the template reliable over time.
Original PR description
This commit updates the contact import template following the change in 'base'. task-4875863
Audit report PDFs can now include account reports without showing duplicate page numbers. This improves readability and consistency when multiple documents are combined into one final report.
Original PR description
When generating audit reports, we compile a single, comprehensive PDF that includes all relevant documents and account reports attached to the articles. Each page in the final report is automatically numbered during generation. However, because account reports also include their own page numbers, this can lead to pages displaying two conflicting numbers: one from the account report and another from the audit report. To address this, we're introducing a new context variable in the account reports (named: `exclude_page_footer`). This allows the page footer to be disabled when needed. Disabling the account report's footer ensures that the final audit report is cleaner, more consistent, and easier for users to read. Task-4989809
The customer-facing preview buttons in Helpdesk and Field Service now use the shorter label “Preview” instead of “Customer Preview.” This keeps wording consistent across related screens and makes the interface simpler for users.
Original PR description
*: industry_fsm In this commit: - To maintain consistency, the buttons are renamed from "Customer Preview" to "Preview". task - 4567479
The field service task form now places priority and tags in a more convenient location. This helps users review and update key task information more easily during day-to-day field service work.
Original PR description
task-5003822
Users setting up Brazilian AvaTax will now see a non-blocking warning if another AvaTax account already exists in the database. This helps prevent credential synchronization issues while still allowing the user to continue when appropriate.
Original PR description
Before this PR: - No warning is shown if user is creating another avatax account in the DB. After this PR: - A non-blocking warning is shown if user tries to create another avatax account in the DB to prevent issues with credentials. Task: 4842897