Wednesday, December 17, 2025
22 changes · master
New functionality added to Odoo
This update adds visual icons to the list view for VoIP calls, representing recording and transcript options. These icons provide a clearer visual cue for users, making it easier to quickly identify calls with recording or transcript functionality. This improves usability and streamlines access to important call information.
Original PR description
Task-5382341
This update adds tags to key website appointment snippets (cards, pictures, and lists) within the 'add snippets' dialog. This improves organization and allows for easier filtering and targeting of appointment-related content on the website, enhancing the user experience.
Original PR description
This commit adds label tags to respective snippets in add snippets dialog: `Appointment` tag: - s_appointments_card - s_appointments_picture - s_appointments_list task-[5258542](https://www.odoo.com/odoo/project/974/tasks/5258542)
Enhancements to existing features
This update clarifies the heading for the website appointment snippet, making it more understandable for users. The change ensures the snippet's purpose – displaying appointment scheduling options – is immediately clear. This improves the overall user experience on the website.
Original PR description
This commit updates the heading content of the `s_appointments snippet` to ensure it aligns more clearly with its purpose and use case. task-5168006 Requires: - https://github.com/odoo/odoo/pull/235984
Resolved issues and error corrections
This update resolves errors that occurred when duplicating folders within Odoo, specifically preventing crashes and incorrect folder placement. The system now correctly handles folder duplication, though attempts to duplicate the 'Company' root folder into 'My Drive' are now blocked with a warning.
Original PR description
**Before this PR:** - Duplicating a folder into itself caused a traceback. - Duplicating a folder into one of its sub-folders also caused a traceback. - Duplicating the 'Company' root folder into 'My Drive' incorrectly created the copy inside the 'Company' folder instead. **Technical reason:** - A record was being created before the copy operation, which led to infinite recursion. - The owner was incorrectly set as the parent folder, causing the duplicated folder to appear in 'Company' folder. **After this PR:** - Duplicating a folder into itself or any of its sub-folders now works correctly. - Attempting to duplicate the Company root folder into My Drive will no longer work and will instead display a warning. Task-5149773 Forward-Port-Of: odoo/enterprise#98777
Features or functions removed from Odoo
This pull request streamlines the Belgian VAT reporting process by removing a duplicate module and merging its functionality into the main l10n_be_reports module. This consolidation simplifies the reporting system and improves maintainability, ensuring consistent reporting for Belgian businesses.
Original PR description
This module was added in stable in this pr: https://github.com/odoo/enterprise/pull/99496 Now it is removed and merged back into the belgian reporting module. task-5347977
Code cleanup and technical improvements
This update enhances the way VoIP audio is handled within the Enterprise module. Specifically, it replaces an older method with a more modern 'Ringtone' component, resulting in improved audio quality and reliability for remote calls. This change focuses on internal improvements to the VoIP system.
This update allows users to change the name of their Sign Template bundles directly within the configuration process. Previously, the bundle was automatically named after the first document. This change improves usability and provides more control over sign template organization.
Original PR description
Previously, the Sign Template bundle always used the first document's name. This commit enables users to edit the bundle name dynamically in the configuration wizard and updates the breadcrumb accordingly. task-5361809
This update enhances Odoo's ability to convert and map domain values, streamlining data filtering within key modules. The change simplifies a previous design restriction, making the system more flexible and efficient. This improves reporting and data management capabilities.
Original PR description
As PR #238734 changed `filter_domain_leaf()` to take only one function to both map and filter the domain (instead of a function to filter and a dict to map, which was too restrictive), and renamed it to the more explicit `filter_map_domain()`, parts using `filter_domain_leaf()` had to be changed to fit the new function prototype. task-5379826
This update simplifies the dashboard editing experience by renaming the 'Edit' button to 'Edit in Spreadsheet'. With recent changes to dashboard creation, the associated 'Add a spreadsheet' button and related elements have been removed to streamline the workflow. This change improves user understanding and consistency.
Original PR description
### Description - Rename the dashboard edit button to "Edit in Spreadsheet" for improved clarity and consistency with the dashboard editing workflow. - As the form view for the spreadsheet dashboard group has been removed and users can now create dashboards using the New button, remove the "Add a spreadsheet" button from the list view, along with its related tours and tests. Task: [5259227](https://www.odoo.com/odoo/project/2328/tasks/5259227)
This update resolves an issue where clicking 'Send' in a Sign Request wizard incorrectly redirected users to the signing interface when the sender was also a signer. The fix ensures that clicking 'Send' now correctly closes the wizard, streamlining the signing process for all users.
Original PR description
When creating a Sign Request where the sender is also one of the signers, clicking Send in the wizard incorrectly redirected to the document preview/signing interface. This fix ensures that clicking Send always closes the wizard and does not trigger any redirect, regardless of the sender’s signer status. task-5408155 Forward-Port-Of: odoo/enterprise#101816
This update resolves an issue where requests to the IoT box for customer display functionality were failing due to incorrect data formatting. The PR corrects this formatting, ensuring the IoT box receives the necessary information to display customer data properly. This improves the reliability of the customer display feature.
Original PR description
Currently the requests sent to the iot box to use customer display cause and error because of the bad format of the data in the request. This PR formats the data correctly to be sent to the iot box The compatibility for webrtc for the iot boxes in 19.1 isn't necessary as webrtc was removed in 19.1 task-5408081 Forward-Port-Of: odoo/enterprise#101821
This update resolves a technical issue preventing PoS sessions linked to Fiskaly from closing correctly when cash in/out entries had reason names exceeding 40 characters. The change ensures all reason names are truncated to meet Fiskaly's requirements, preventing errors and maintaining proper integration with this payment processing system. This improves the reliability of our German Point of Sale functionality.
Original PR description
Before this change, closing a PoS session linked to Fiskaly would fail if a cash in/out entry had a reason exceeding 40 characters. Fiskaly returned: "body/cash_statement/business_cases/2/name must NOT have more than 40 characters". This commit ensures reason names are truncated to comply with Fiskaly's schema. opw-5208191 Forward-Port-Of: odoo/enterprise#98853
This update resolves an issue that occurred when users attempted to duplicate transactions through the account module. Specifically, the system would throw an error if no journal was associated with the duplication process. The fix ensures a valid command is used when a journal is missing, preventing the error and improving stability.
Original PR description
Currently, an error occurs when user opens the `account.duplicate.transaction.wizard.form` view and saves it. **Steps to Reproduce:** - Install the `account_accountant` module. - Using `Open View`,…
Currently, an error occurs when user opens the `account.duplicate.transaction.wizard.form` view and saves it. **Steps to Reproduce:** - Install the `account_accountant` module. - Using `Open View`, open the `account.duplicate.transaction.wizard` view > enter the start date, and save.. `ValueError: Compute method failed to assign account.duplicate.transaction.wizard(22,).provider_duplicate_ids` The error occurs because when the view is opened and saved, the _compute_provider_duplicate_ids method is triggered. Since no journal is linked to the wizard, the method assigns an empty list ([]) to provider_duplicate_ids [1]. Because this is a O2M field, assigning a raw empty list is invalid and causes the error. This commit ensures that when journal is missing, instead of assigning an empty list ([]), a valid relational command `([Command.set([])])` is used. Ref: https://github.com/odoo/enterprise/pull/97196/commits/c109e0bcce20f14b6dbd3d28e61b135f1fd048f2 [1] https://github.com/odoo/enterprise/blob/d808ad3f6ff52632e00cf1a68de0e5270e52895d/account_online_synchronization/wizard/account_journal_duplicate_transactions.py#L53 sentry-7080686084 Forward-Port-Of: odoo/enterprise#101177
A recent test failure related to task scheduling time zones has been corrected. The fix ensures that task planning uses UTC time, preventing inaccurate date calculations and ensuring consistent scheduling across different time zones. This resolves a potential issue impacting task planning accuracy.
Original PR description
The test `test_plan_task_in_calendar` failed with a one-hour difference in `planned_date_begin`. The error occurred because the work intervals were computed using the resource's timezone (`Europe/Brussels`) instead of `UTC`, leading to a shifted planned date. Setting the resource timezone to `UTC` ensures consistent interval computation and resolves the test failure. [RB-227059](https://runbot.odoo.com/odoo/error/227059) Forward-Port-Of: odoo/enterprise#100580
This update fixes an issue where the Quality Control module's list view was incorrectly loading data. The system has been reverted to using the correct view definition, ensuring accurate display of control points when accessing the Quality Control section. This ensures the Quality Control functionality operates as intended.
Original PR description
Since odoo/enterprise#94012, when loading the quality.point list view from the main menu, `quality_point_routing_view_tree` is used instead of `quality_point_view_tree`. This is not correct. To reproduce : - Install quality_control and mrp_workorder - In Quality Module, go to Quality Control / Control Points [opw-5253899](https://www.odoo.com/odoo/project/966/tasks/5253899) Forward-Port-Of: odoo/enterprise#101098
This update corrects a bug in the Belgian payroll module that prevented a minimum wage warning from appearing when an employee record lacked a job assignment. The fix removes a redundant condition within the payroll calculation, ensuring the warning is displayed correctly for all employee types. This ensures accurate payroll reporting for Belgian companies.
Original PR description
Steps to reproduce: - Open an employee on the Employees app for a Belgian company - On the payroll tab, set the salary to lower than the minimum wage for an employee that has no job - The warning will not show unless the employee has a job set to him Cause of the bug: - Condition inside _compute_l10n_be_is_below_scale function returned false if an employee had no job Fix done: - Removed unneccessary condition task-5424012
This update fixes a visual issue in the Swiss Master Data Report, specifically the PDF visualization and list view formatting. The changes remove a comma from the 'Year' field display and update the display names of report entries, ensuring accurate and professional reporting for Swiss payroll data.
Original PR description
. Corrected the generated Wage Type Report PDF visualization by modifying the external layout . Fixed the Year field display in the list view: removed the comma . Updated the display name of record "Month + Year" task-5130155
This update corrects a bug in the Belgian payroll module that prevented a minimum wage warning from appearing when an employee record lacked a job assignment. The fix removes a redundant condition within the payroll calculation, ensuring the warning is displayed correctly for all employee types. This ensures accurate payroll reporting for Belgian companies.
Original PR description
Steps to reproduce: - Open an employee on the Employees app for a Belgian company - On the payroll tab, set the salary to lower than the minimum wage for an employee that has no job - The warning will not show unless the employee has a job set to him Cause of the bug: - Condition inside _compute_l10n_be_is_below_scale function returned false if an employee had no job Fix done: - Removed unneccessary condition task-5424012
This update resolves a technical issue within the Enterprise edition's spreadsheet functionality. Specifically, a missing configuration setting was preventing proper sheet identification, which could have caused errors when creating or managing spreadsheets. This fix ensures the spreadsheet feature operates reliably for all users.
Original PR description
…SHEET command
This update fixes a minor issue where the live chat window wasn't consistently opening in the user's current browser tab. The change ensures that when a user initiates a chat, the window automatically appears in their browser, improving the user experience and streamlining communication.
Original PR description
task-5408790 https://github.com/odoo/odoo/pull/240384
This update removes a development-only method from the HR Expense Stripe module. Removing this unnecessary code improves the overall organization and maintainability of the system. This change ensures the codebase remains clean and efficient.
Original PR description
In 752ffcbc a method was added during development that was later discarded but not removed from the code This removes said method to keep the code tidy
This update refactors the channel pinning functionality within Odoo's Live Chat module. The changes clean up the code related to channel pinning, improving the system's stability and maintainability. This ensures a smoother experience for users managing and organizing their live chat channels.
Original PR description
Enterprise counter-part. Part of task-4606867 Part of task-5408790 https://github.com/odoo/odoo/pull/240407