Wednesday, December 24, 2025
31 changes · saas-19.1
New functionality added to Odoo
This update enhances Odoo's barcode scanning capabilities by adding support for decoding EPCs provided as hexadecimal values. This allows for greater flexibility in reading data from various barcode and RFID devices, expanding compatibility and improving data capture accuracy. A related refactoring is planned for the main Odoo codebase.
Original PR description
Add an EPC decoder as a front-end service. The decoder takes an EPC as a hexadecimal input and return the resulting URI or Element String. On incorrect input or unsupported decoding, the returned value is null. Currently support SGTIN-96, SGTIN-198, SSCC-96, SGLN-96, SGLN-195. This commit also adds support for reading values from an RFID device without requiring a specific mobile app. To achieve this, we use the same entry point as the one used for barcode scanning. As a result, a refactoring of the naming is planned on the master branch. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update introduces basic localization support for Mauritania within the Odoo system. It includes translated data and configurations necessary for businesses operating in Mauritania to use Odoo correctly, aligning with local tax and accounting regulations. This enhancement expands Odoo's global reach and compliance capabilities.
Original PR description
task-4236158 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#241003 Forward-Port-Of: odoo/odoo#211906
This update adds essential financial reports – Balance Sheet and Profit & Loss – to the Odoo Enterprise system for Mauritania. This expansion allows Mauritanian businesses using Odoo to generate and analyze key financial statements in their local currency and reporting format, improving compliance and financial insights.
Original PR description
Add the Balance Sheet and Profit & Loss to the Mauritanian localization. task-4236158 Forward-Port-Of: odoo/enterprise#100897 Forward-Port-Of: odoo/enterprise#86530
Enhancements to existing features
This update clarifies the filter options within the account follow-up reporting system. It now specifically targets 'Overdue Customer Invoices,' making it easier for finance teams to quickly identify and manage unpaid invoices. This change improves reporting accuracy and streamlines the process of tracking overdue payments.
Original PR description
opw-5232434 Forward-Port-Of: odoo/enterprise#100595
Resolved issues and error corrections
This update corrects a bug where the 'convert' option repeatedly appeared in the Todo breadcrumb after a task was created from a Todo. This prevented users from correctly managing converted tasks, particularly when changing project assignments. The fix hides the 'convert' option when a project is assigned, streamlining the task management process.
Original PR description
Steps to reproduce: - Create a Todo and convert into task using cog Menu option. - Todo is converted to task and is displayed. - Through breadcrumb go back to Todo - Try to convert it again Issue: - The converted todo is again converted (change of project etc) Fix: - Hiding the convert cog menu when a project is set. task-5075327 Forward-Port-Of: odoo/odoo#240821 Forward-Port-Of: odoo/odoo#230031
This update allows users to now accurately display the account holder's name alongside bank details, even when it differs from the partner's name. Previously, the account holder name was automatically linked, but this change ensures correct display regardless of name variations, enhancing data clarity and accuracy.
Original PR description
Allow changing of the account holder name in case it is different from the partner name which was the computed default. Task-5222712 [Related PR](https://github.com/odoo/enterprise/pull/98572) Forward-Port-Of: odoo/odoo#233965
This update fixes an issue where users were always redirected to a guest discussion page when sharing an invitation link. Now, internal users are correctly directed to the main discuss app, improving the user experience and streamlining the invitation process. This change is part of a larger effort to optimize the Odoo invitation flow.
Original PR description
When sharing an invitation link, user is always redirected to the discuss guest page. However, it's better to redirect internal users to discuss. This commit redirects internal users to the discuss app from the invitation link. part of task-4873812
This update fixes an issue where opening invalid account return records previously displayed all related `account.move.line` records, even when only one or none matched. The change ensures that the check action is correctly applied, preventing inaccurate record displays and improving data reliability.
Original PR description
Before this PR, opening invalid records from account return checks could show all `account.move.line` records when there were 0 or 1 matching record(s). Technical Reason: In `_get_records_action` domain is only applied when there are multiple records, so without a domain, all records are opened. With this PR, the domain is passed through the method arguments, and also action will be none if there are no records. task-5427746 Forward-Port-Of: odoo/enterprise#102424
This update prevents guest users from seeing the unpin button in the PinnedMessagesPanel, resolving a confusing user experience. Previously, guests could click the button but the server rejected their attempts to unpin, leading to frustration. This change ensures guests only see the functionality they are authorized to use, improving overall usability.
Original PR description
**Description of the issue/feature this PR addresses:** ---------------------------------------------- Currently, guest users in PinnedMessagesPanel can see the unpin button on pinned messages, but…
**Description of the issue/feature this PR addresses:** ---------------------------------------------- Currently, guest users in PinnedMessagesPanel can see the unpin button on pinned messages, but the server correctly rejects their unpin requests. This creates confusion and a poor user experience where external users see functionality that doesn't work for them. **Current behavior before PR:** ---------------------------------------------- - Guest users see the unpin button on pinned messages - Clicking the unpin button results in server rejection - UI shows functionality that guest users cannot actually use **Desired behavior after PR is merged:** ---------------------------------------------- - Guest users cannot see the unpin button on pinned messages - Internal users continue to have full pin/unpin functionality - UI accurately reflects user permissions and capabilities - Better user experience with appropriate access control Task-5033295 ---------------------------------------------- I confirm I have signed the CLA and read the PR guidelines at https://www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#240979 Forward-Port-Of: odoo/odoo#229211
This update fixes a minor inconvenience where users had to manually refocus the composer after replying to a note. Now, clicking 'reply' automatically brings the composer back into focus, making the note response process smoother and faster. This improves user efficiency and overall usability.
Original PR description
**Current behavior before PR:** When the composer is already open, clicking reply on a note does not refocus the composer. The user must manually click inside the composer before typing. **Desired behavior after PR is merged:** When clicking reply on a note, the composer is automatically focused, even if it was already open, allowing the user to continue typing immediately. task-[5410878](https://www.odoo.com/odoo/project/1519/tasks/5410878) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#240666
This update fixes a bug that caused the ClickEverywhere function to repeatedly test all applications after a page reload. Now, the function correctly stores the application's ID, ensuring it only tests the intended application, improving test reliability and efficiency.
Original PR description
The clickEverywhere function can be executed with one app. To accomplish this, the xmlID should be passed as a parameter to the function. Before this commit, the xmlID of the requested application was not stored in the status of the current execution saved in localStorage. If a reload occurs while the clickEverywhere function is executing, it will lose this information and continue testing all applications instead of only the requested one. runbot.build.error: 234747 Forward-Port-Of: odoo/odoo#240943
This update corrects a minor inaccuracy in the documentation for VoIP phone settings. The previous reference to a non-existent method has been updated to accurately reflect the correct method used within the system. This ensures clarity and consistency for users configuring VoIP features.
Original PR description
A mention to `_voip_get_phone_field` appeared in [1] but this seems to never have existed. In any case, `_phone_get_number_fields` was used by the codebase in the end and should thus be the one mentioned. [1]: https://github.com/odoo/enterprise/commit/52b3065993c41c6b7c65dda586a66fdd865b3afd Forward-Port-Of: odoo/enterprise#102804
This update resolves a bug that prevented administrators with the 'group_system' access level from editing standard views within the Odoo website. The fix restores the necessary permissions, ensuring all users can manage views correctly. This improves usability and prevents disruptions for administrators.
Original PR description
There was an issue where, if someone was to install `mass_mailing` without `website`, a user with `group_system` could not read `ir.ui.view` records. Steps to reproduce: - install mass_mailing, web_studio - connect as an admin user - try to edit a view (not a snippet) with studio Issue: - access error In a previous [commit], new rules were introduced in `mass_mailing` to allow `group_mass_mailing_user` to handle custom snippet (views). However, a superseding rule for `group_system` was missing in `mass_mailing`, to allow an admin to continue to manage other types of views. [commit]: https://github.com/odoo/odoo/commit/6d39d72453842cf0d22880e14b1fa182c23538e6 task-5436780
This update fixes a minor translation issue within the Odoo accounting modules for Belgium and the Netherlands. Specifically, the English names of certain accounts have been updated to match their correct translations, ensuring accurate reporting and data consistency. This change improves the overall accuracy of financial data within the Odoo system.
Original PR description
Following odoo#227754, a couple of translations for changed accounts need to be updated to correctly reflect their english name. no-task --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#241069
This update corrects a recent change that incorrectly included legal reserves in the Belgian Balance Sheet reports. This change was unnecessary as legal reserve requirements have been removed since 2024. This reversion ensures accurate reporting for our Belgian clients.
Original PR description
In #95062, the BE Balance Sheet was changed to include Legal Reserves. However, since this is not needed since 2024, this change can be reverted. no-task Forward-Port-Of: odoo/enterprise#102766
This update fixes a bug where product templates were incorrectly calculating discounted prices, resulting in inflated prices being displayed. The issue stemmed from a misidentification of product types – specifically, templates were not being recognized correctly. This change ensures accurate discounted price calculations for all product types, including templates, improving price accuracy in the catalog.
Original PR description
Steps to reproduce: 1- Add a product that has variants to a vendor pricelist. 2- Set the vendor's unit for this product to a one different than the product's unit. 3- Create an RFQ with from that vendor. 4- Open the catalog. Issue: `discounted_price` is miscalculated and causes wrong price calculation, it shows the price multiplied by its factor. i.e if a price of pack of 6 is 10$, it will be shown as 60$. Cause: We only check for `product_id` not for `product_tmpl_id` when computing the `price_discounted`, so if its a template, `product_id` is false, and its sent with `_compute_price()` and the same price is returned since there's no unit and after that its sent to `_get_product_price_and_data` where its converted to the new unit. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#241115 Forward-Port-Of: odoo/odoo#240519
This update simplifies the payment screen by removing the unnecessary guest count field and automatically defaulting the numpad to the last entered value. Discarding the input now correctly maintains the last guest count, streamlining the ordering process for customers. This change improves user experience and reduces potential errors.
Original PR description
after this commit: - The payment screen no longer shows extra guest count. - The numpad will display the last guest count. - Discarding will keep the last guest count unchanged. - Use hotkey handling so Enter confirms input only, ignoring any numpad button currently in focus. task: 5364073 Forward-Port-Of: odoo/odoo#237877
This update ensures users retain their last selected spreadsheet dashboard when navigating back through the application's breadcrumb navigation. Previously, returning to the dashboard reset it to the default. This change improves user experience by maintaining the user's current view.
Original PR description
### Description After [PR#223171](https://github.com/odoo/odoo/pull/223171/), `useSetupAction` `getLocalState` exports the active dashboard through the loader state (`dashboardLoader.activeDashboardId`). The restore path still read `state.activeDashboardId`, so returning via the breadcrumb reset to the first dashboard. Read the saved loader state to keep the last selected dashboard. Task: [5391349](https://www.odoo.com/odoo/project/2328/tasks/5391349) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#239172
This update fixes a minor inconvenience for users. Previously, clicking 'Jump to Present' would cause the composer to lose focus, requiring manual adjustment. Now, the composer automatically regains focus on desktop after this action, improving the user experience.
Original PR description
**Current behavior before PR:** clicking "Jump to Present" caused the composer to lose focus, forcing users to manually focus the input before typing. **Desired behavior after PR is merged:** The composer automatically regains focus on desktop after clicking "Jump to Present". task-[5035977](https://www.odoo.com/odoo/project/1519/tasks/5035977) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#241113 Forward-Port-Of: odoo/odoo#227781
This update corrects a bug where inactive accounts were incorrectly displayed in financial reports. The change replaced a deprecated field with an 'active' field, which now prevents inactive accounts from being included in report calculations and audits. This ensures accurate reporting for all accounts, regardless of their status.
Original PR description
In replacing the deprecated field with the special `active` field the account_codes prefix engine no longer displays values for accounts that are inactive.
This disables the active test in:
- computing the domain for accounts
- auditing the value (since the domain is `('account_id.code', 'in'...)`
opw-5226153
Forward-Port-Of: odoo/enterprise#101540
Forward-Port-Of: odoo/enterprise#100885This update prevents non-member internal users from seeing a misleading close confirmation dialog when closing a livechat window. Previously, this dialog incorrectly suggested they could end the session, leading to a confusing user experience. Now, non-members simply close the window without any prompts, ensuring a clearer and more accurate livechat interaction.
Original PR description
**Description of the issue/feature this PR addresses:** ---------------------------------------------- When an internal user who is not a member of a livechat channel opens a chat window for a…
**Description of the issue/feature this PR addresses:** ---------------------------------------------- When an internal user who is not a member of a livechat channel opens a chat window for a conversation in “looking for help” mode, closing the window incorrectly displays the Leave Conversation confirmation dialog. This is misleading because non-members cannot actually end the livechat session—the confirmation dialog suggests an action they do not have permission to perform. **Current behavior before PR:** ---------------------------------------------- - Non-member internal users see the close confirmation dialog - The dialog implies they can leave/end the livechat, which is not true - UI shows functionality that does not apply to them - Poor user experience and inconsistent behavior **Desired behavior after PR is merged:** ---------------------------------------------- - Confirmation dialog is shown only to actual livechat members(assigned agent or visitor) - Non-members close the chat window immediately without any prompt - UI accurately reflects real permissions - Clearer and more consistent livechat experience Task-5384846 ---------------------------------------------- I confirm I have signed the CLA and read the PR guidelines at https://www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#240029
This update fixes a technical error that prevented some users from opening timesheets, specifically when using the demo data. The fix involves adjusting menu sequences and granting necessary access permissions to ensure all users can correctly access and manage their timesheets. Additionally, a problem with fake data generation was resolved to prevent validation errors.
Original PR description
Steps to reproduce: - Login through user who has user:own timesheets only access or group_hr_timesheet_user only (basically `user demo` when demo data is installed). - Open timesheets apps. Issue: -…
Steps to reproduce: - Login through user who has user:own timesheets only access or group_hr_timesheet_user only (basically `user demo` when demo data is installed). - Open timesheets apps. Issue: - Traceback appears. Reason: - Here due to manually pushing `Timesheet Assistant Menu` having lower sequence(7) than `My Timesheets` (default sequence 10), so action is called which tries to search for which a base user will never have access to. Thus a traceback. - Also own timesheets user doesnt have access to `aw.rule` model which is need to open `Timesheet Assistant Menu`. Fixes: - Added sudo to search through action windows which is needed. - Reorder menu items sequence so we have `My Timesheets` in the starting and then `Timesheet Assistant Menu` is loaded. - Added a entry in model access CSV to give read access to aw.rule model records. Another small issue was when we generate fake data using `AwFakeEventsService` we source out all type of projects and tasks, which might cause some errors as they dont have account_id needed to make timesheets thus throwing validation on save. Fixed that by adding domain in fetch non-template data. task-5438048
A technical issue with a test for the HTML editor's link functionality was resolved. The fix addressed a problem where the test wasn't waiting properly, causing the link popover to close prematurely and disrupting subsequent steps. This ensures the link functionality works reliably.
Original PR description
Description of the issue this PR addresses: This test was not awaiting a step properly which somehow moved the selection to the overlay container which made the link popover to close resulting in further steps not working properly. runbot-234926 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update resolves a sporadic failure in the stock barcode tour due to timing issues. By adding a check to ensure data is loaded before proceeding, the tour now runs reliably. The changes also simplify the tour and add extra steps to prevent future disruptions.
Original PR description
Test `test_no_split_uncompleted_done_move` is failing non-deterministically after https://github.com/odoo/enterprise/pull/98184 Because it was going too fast and sometimes the lines wouldn't have been loaded by the time its the step's turn. A check was added in order to make sure the lines are loaded before moving onto the next steps This commit also simplifies the tour and adds extra steps to avoid failure. Runbot: 234351 Forward-Port-Of: odoo/enterprise#100329
This update resolves a technical issue related to how the system supports Peppol document types. The old CNAME logic has been removed, aligning with the current Peppol standard (NAPTR). This ensures correct document handling when using the DK Company accounting module.
Original PR description
The function `_check_document_type_support` is extended in `l10n_dk_nemhandel` (from `account_peppol`). The function causes an issue since it contains the old CNAME logic while peppol does not use it anymore; but the newer NAPTR. This commit removes the function - It does not do anything different than the version in `account_peppol` (and it would cause issues if it did) - The function is only called in `account_peppol` - The module does not depend on `account_peppol` Reproduce: - Install `l10n_dk_nemhandel`; check that `account_peppol` is installed - Select `DK Company` - Activate Peppol in test mode - Go to the `DK Company` contact (customers) - Select "By Peppol" and "EU Standard (Peppol Bis 3.0)" - Traceback should appear opw-5232123 Forward-Port-Of: odoo/odoo#241237 Forward-Port-Of: odoo/odoo#241083
A recent update introduced a bug related to currency changes in payment journals. Specifically, when multiple payment methods with different accounting accounts are used, a 'singleton error' occurred. This fix resolves this issue, ensuring accurate currency conversions and preventing payment processing disruptions.
Original PR description
036530a8983e485ac1ad0b9444a6aba01caabc07 introduced a bug, because it can happen to have 2 (or more) payment method lines from the same payment method. If these PML have differents payment accounts, we get a singleton error. Steps: - On Bank journal, add a new outbound payment method line, which use the same payment method as the first default one (it should be 'Manual') - Set two different payment account for each line - Then change the currency of the journal -> Traceback (singleton error) opw-5384042 Forward-Port-Of: odoo/odoo#239521
This update fixes a visual inconsistency in the Point of Sale (POS) interface. Previously, product images were always displayed in combo product configurations, regardless of the overall image visibility setting. Now, combo product configurations correctly reflect the configured image settings, ensuring a consistent and professional user experience.
Original PR description
Before this commit: ==================== In POS, when product images were configured to be hidden, the setting was correctly applied to normal products. However, in the combo product configurator, product images were still displayed, causing inconsistency with the configured behavior. After this commit: ====================== The combo product configurator now respects the product image visibility configuration, ensuring consistent behavior across all product types in the POS interface. Task-5163955 Forward-Port-Of: odoo/odoo#241257 Forward-Port-Of: odoo/odoo#231366
This update refines the visual appearance of the chat interface within Odoo, specifically in the Discuss app sidebar and chat bubbles. The changes reduce icon sizes and adjust spacing to improve readability and the overall user experience.
Original PR description
- reduce size of livechat status icon, thread icons, and im status in discuss app sidebar - reduce size of livechat status icon, thread icons, im status, and country flag in chat bubble - reduce slightly size of chat bubble and compensate with slightly increased gap between bubbles - fix spacing issue between hidden chat bubbles and visible chat bubbles Before / After <img width="593" height="890" alt="Screenshot 2025-12-24 at 13 36 01" src="https://github.com/user-attachments/assets/3ce8fec0-f842-49d9-9691-fe6d1666cd07" /> Before / After <img width="165" height="418" alt="Screenshot 2025-12-24 at 13 36 14" src="https://github.com/user-attachments/assets/bac55e93-bade-4d09-be51-21a768896675" />
This update fixes a layout issue on small screens where the call permission dialog was cramped and difficult to read. The changes stack the dialog elements vertically, improving spacing and readability for users on smaller devices. This enhances the user experience and ensures the dialog is easily accessible.
Original PR description
**Current behavior before PR:** On small screens, the call permission dialog uses a horizontal layout, causing cramped content and poor readability. **Desired behavior after PR is merged:** On small screens, the call permission dialog stacks elements vertically, improving spacing and readability. Before <img width="365" height="462" alt="image" src="https://github.com/user-attachments/assets/31431f11-5a69-418e-9d6b-7b30294a548c" /> After <img width="369" height="494" alt="image" src="https://github.com/user-attachments/assets/d7942381-57f5-4c5c-a7bc-79b621f48b4e" /> task-[5435662](https://www.odoo.com/odoo/project/1519/tasks/5435662) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes a technical issue where closing a Point of Sale (POS) session could inadvertently remove draft orders without items or payments, leading to gaps in the POS reference sequence. This change ensures that all POS orders are properly tracked and accounted for, improving data accuracy and reliability within the POS system. The fix was made as part of a standard bug resolution process.
Original PR description
Before this commit, when closing the POS session, if there were draft orders without any lines or payments, they were removed and caused gaps in the pos_reference sequence. opw-5216954 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#240579
This update resolves an issue where deleting a Point of Sale order didn't fully remove associated order lines from local records. The fix corrects a technical problem related to how data was accessed, ensuring that all related items are properly removed during order deletion. This improves data accuracy and prevents orphaned records.
Original PR description
Issue: Deleting an order did not remove its related order lines from local records. Cause: Because of the use of `lazyGetter`, model fields were defined as getters instead of object keys. This caused `Object.entries` to skip some fields, preventing cascade deletion from including child records. Fix: Updated the logic for computing `recordsToDelete` to correctly handle cascade deletion and ensure child records are properly removed. Task-5095578 Forward-Port-Of: odoo/odoo#227875