Monday, March 2, 2026
31 changes · saas-19.2
Resolved issues and error corrections
This update ensures that check printing in the Philippines accurately reflects the net payment amount after withholding taxes. Previously, the check amount didn't correctly deduct withholding, leading to potential discrepancies. A new test case has been added to verify this fix.
Original PR description
In Philippines' check localization module, the amount on check should be based on the net amount after deducing withholding amount for payments if the payment is with taxes that are set as withholding on payment. This commit fixes the check print's values to reflect the net amount. Minimal test case is also added to safeguard the new behavior. [Task-5928813](https://www.odoo.com/odoo/all-tasks/5928813) Forward-Port-Of: odoo/enterprise#108859 Forward-Port-Of: odoo/enterprise#108611
This update resolves an issue that prevented users from starting the Colombian Electronic Invoicing certification process when no certificate was initially configured. The fix ensures the system handles the absence of a certificate gracefully, preventing a technical error and allowing users to complete this important compliance step.
Original PR description
When no certificate is found in the company, clicking on ``Begin Certification Process`` raises a traceback. Steps to reproduce the error: - Install ``l10n_co_dian`` module with demo data - Switch to the CO Company - Go to Invoicing > Configuration > Settings > Colombian Electronic Invoicing - Set the Testing ID for Operation mode - In Certificates, delete the existing certificate - Click on Activate the certification process > Begin Certification Process > Ok Traceback: ```py UnboundLocalError cannot access local variable 'cert_sudo' where it is not associated with a value ``` https://github.com/odoo/enterprise/blob/6294be57cf1aa577ec546a958514bc8ec6705935/l10n_co_dian/models/account_edi_xml_ubl_dian.py#L1459 The variable ``cert_sudo`` is used outside of the for loop. If no certificate is found, ``cert_sudo`` will be undefined, leading to the UnboundLocalError. sentry-7256943298 Forward-Port-Of: odoo/enterprise#107094
A recent update to the Point of Sale system meant a warning was no longer displayed when attempting to cancel paid orders. This change occurred because the system now only updates draft orders. This fix restores the warning, ensuring users are alerted before cancelling paid orders to prevent errors.
Original PR description
From 18.2, the warning to prevent users to cancel paid or posted orders from backend was no longer displayed. It's caused because it was handled in the write() method from pos.order model. But, since a recent change, we call write() method only on draft orders. So, if there is no draft orders selected, the warning doesn't appear. task: 5959917 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#250969 Forward-Port-Of: odoo/odoo#250074
This update fixes an error in the Profit & Loss reports for Spanish fiscal localization packages. Accounts 7950 and 7957 were previously incorrectly placed in section 10, which is now corrected to section 6 according to official Spanish tax regulations. This ensures accurate reporting for Spanish businesses.
Original PR description
In the Profit & Loss reports, accounts 7950 and 7957 were incorrectly shown in section 10 instead of section 6 These accounts appear only for non-SME fiscal localization packages According to the official Spanish tax documentation, these accounts should belong to section 6 and not section 10: https://www.boe.es/buscar/act.php?id=BOE-A-2007-19884 opw-5363664 Forward-Port-Of: odoo/enterprise#108820 Forward-Port-Of: odoo/enterprise#107949
This update fixes a minor typo in the Helpdesk module's result pages. The change ensures consistent and accurate display of dates, addressing a potential issue that arose after a recent update to the core Odoo system. This ensures a polished user experience for Helpdesk users.
Original PR description
Before this commit and since the merge of https://github.com/odoo/odoo/pull/156878, `date_published` has been replaced by epublished_date` field but the changes have not been made in website_helpdesk_slides module. This commit replaces `date_published` occurrences by `published_date`. task-[5945377](https://www.odoo.com/odoo/project/4105/tasks/5945377) Forward-Port-Of: odoo/enterprise#108253
This update fixes a bug in the pipeline dashboard that prevented accurate matching of the first list displayed. Previously, the dashboard didn't correctly identify and link related opportunities. This change ensures the dashboard displays accurate and complete pipeline data, improving sales visibility.
Original PR description
…oard Field matching was missing for the list #1 in the pipeline dashboard. Task: 5092979 Forward-Port-Of: odoo/enterprise#107516
This update resolves issues with the Belgian XBRL report, specifically correcting inaccurate translations and removing irrelevant company types. The changes also add crucial data points like Balance Sheet, P&L, and Explanatory Disclosures, ensuring the report meets regulatory requirements and provides more complete financial information.
Original PR description
This commit fixes several issues in the Belgian XBRL report. - Values in report like "false" were being wrongly translated. - Not all company types are valid/relevant. Removed invalid company types. task-5907118 Forward-Port-Of: odoo/enterprise#108556
This update adjusts the Italian tax system (l10n_it_edi) to align with a new law. As of January 1, 2025, forfettari (RF19) can now utilize simplified invoices regardless of the total invoice amount, removing a previous limit. This simplifies invoicing for this specific business segment.
Original PR description
Since 01/01/2025, Italian law allows forfettari (RF19) to use simplified invoices even if the total amount exceeds 400€. References: - https://www.normattiva.it/uri-res/N2Ls?urn:nir:stato:legge:2014-12-23;190;1;59#:~:text=L'emissione%20della%20fattura%2C%20ove%20prevista%2C%20può%20avvenire%20in%20modalità%20semplificata%20ai%20sensi%20dell'articolo%2021%2Dbis%20del%20decreto%20del%20Presidente%20della%20Repubblica%2026%20ottobre%201972%2C%20n.%20633%2C%20anche%20se%20di%20ammontare%20complessivo%20superiore%20al%20limite%20indicato%20nel%20comma%201%20del%20medesimo%20articolo%2021%2Dbis. - https://www.dkpost.it/fattura-semplificata-senza-limiti-per-i-forfettari/ - https://www.gazzettaufficiale.it/eli/id/2024/11/30/24G00196/sg Forward-Port-Of: odoo/odoo#250743 Forward-Port-Of: odoo/odoo#247264
This update resolves an issue where adding a column within a list item caused a system error. The fix separates column insertion within lists, preventing errors related to restoring selections on removed elements. This ensures the HTML editor consistently functions correctly when working with lists.
Original PR description
Problem: When trying to add a column under a list item, a traceback occurs. Cause: The list item is removed during the operation, but the selection that is restored still references the removed list item. As a result, the selection is restored on a disconnected element, causing a traceback. Solution: Handle column insertion inside lists separately. In this case, according to the specifications, we split the list and insert the columns between the resulting lists (or after the list if the cursor is in the last list item). This avoids restoring the selection on a removed node. Steps to reproduce: - Add any list. - Run `/column` while the cursor is inside a list item. - Observe the traceback. task-5916246 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#250847 Forward-Port-Of: odoo/odoo#248206
This update improves how product combo pricing is shown to users. Previously, combo products were labeled as 'free,' which caused confusion. Now, the backend displays 'item' and the POS frontend shows 'included' to accurately reflect that these products are part of the combo's price.
Original PR description
Description of the issue/feature this PR addresses: combo choice products are not free products. They are included in the combo product price. Therefore it creates misunderstanding for our users Current behavior before PR: Desired behavior after PR is merged: Change the "free" string into "item" in the backend and into "included" in pos frontend to align with the display in self --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#248535 Forward-Port-Of: odoo/odoo#245279
This update ensures overtime calculations are accurate when creating or modifying time off requests, especially when existing attendance records are present. The system now automatically recomputes overtime whenever a time off record is created, updated, or deleted, preventing incorrect overtime charges.
Original PR description
If you don't have time off app, the option Timing - when Employee is off, should not be available. Creating a time off on a day when there is already an attendance record should automatically recompute the overtime if this rule is on the employee. Forward-Port-Of: odoo/odoo#251064 Forward-Port-Of: odoo/odoo#240940
This update fixes an issue where SII invoices weren't correctly formatted, preventing successful transmission of invoices. The change updates XML tags related to withholdings in the DTE template to align with SII's specifications, ensuring invoices are accepted by the SII system. This ensures compliance with Chilean tax regulations.
Original PR description
Link to SII API Documentation: https://www.sii.cl/factura_electronica/formato_dte.pdf Problem: The DTE template was using incorrect XML elements for withholdings when confirming an invoice with SII. This fix replaces: ImptRetOtrMnda -> ImpRetOtrMnda ValorImpOtrMnda -> VlrImpOtrMnda so the generated DTE matches SII specifications. OPW-5437484 Forward-Port-Of: odoo/enterprise#105152
This pull request updates the core spreadsheet component within Odoo. It includes several performance improvements and bug fixes related to spreadsheet functionality, ensuring a smoother and more reliable user experience when working with spreadsheets. These changes focus on enhancing the core spreadsheet engine.
Original PR description
### Contains the following commits: https://github.com/odoo/o-spreadsheet/commit/146d7e00b5 [REL] 19.2.1 [Task: 0](https://www.odoo.com/odoo/2328/tasks/0)…
### Contains the following commits:
https://github.com/odoo/o-spreadsheet/commit/146d7e00b5 [REL] 19.2.1 [Task: 0](https://www.odoo.com/odoo/2328/tasks/0)
https://github.com/odoo/o-spreadsheet/commit/cdbf5b4f5e [REV] borders: revert infinite borders [Task: 5932734](https://www.odoo.com/odoo/2328/tasks/5932734)
https://github.com/odoo/o-spreadsheet/commit/8e2daf8b4c [PERF] import: {... } instead of Object.assign [Task: 5957630](https://www.odoo.com/odoo/2328/tasks/5957630)
https://github.com/odoo/o-spreadsheet/commit/e197523f55 [FIX] logging: log "ms" [Task: 5959504](https://www.odoo.com/odoo/2328/tasks/5959504)
https://github.com/odoo/o-spreadsheet/commit/9dfcc3f9c9 [FIX] dynamic_tables: trim overlap on the correct side [Task: 5905900](https://www.odoo.com/odoo/2328/tasks/5905900)
https://github.com/odoo/o-spreadsheet/commit/253ad0d65d [PERF] cell: faster symbol check [Task: 5956800](https://www.odoo.com/odoo/2328/tasks/5956800)
https://github.com/odoo/o-spreadsheet/commit/1621a662f1 [FIX] side_panel: restore scroll position on pivot tab change [Task: 5900595](https://www.odoo.com/odoo/2328/tasks/5900595)
https://github.com/odoo/o-spreadsheet/commit/b76a2027a0 [FIX] side_panel: restore vertical scrolling for chart side panel tabs [Task: 5900595](https://www.odoo.com/odoo/2328/tasks/5900595)
https://github.com/odoo/o-spreadsheet/commit/5adcabfaa2 [PERF] formulas: Force the use of the cache for linear search functions [Task: 5956354](https://www.odoo.com/odoo/2328/tasks/5956354)
https://github.com/odoo/o-spreadsheet/commit/40b93f5230 [FIX] Evaluation: Provide cell position for isolated formula evaluation [Task: 5798610](https://www.odoo.com/odoo/2328/tasks/5798610)
https://github.com/odoo/o-spreadsheet/commit/ccde4cdc92 [PERF] recompute_zone: binary search with bit shift [Task: 5955352](https://www.odoo.com/odoo/2328/tasks/5955352)
Co-authored-by: Florian Damhaut (flda) <flda@odoo.com>
Co-authored-by: Anthony Hendrickx (anhe) <anhe@odoo.com>
Co-authored-by: Alexis Lacroix (laa) <laa@odoo.com>
Co-authored-by: Lucas Lefèvre (lul) <lul@odoo.com>
Co-authored-by: Adrien Minne (adrm) <adrm@odoo.com>
Co-authored-by: Ronak Mukeshbhai Bharadiya (rmbh) <rmbh@odoo.com>
Co-authored-by: Dhrutik Patel (dhrp) <dhrp@odoo.com>
Co-authored-by: Rémi Rahir (rar) <rar@odoo.com>
Co-authored-by: Pierre Rousseau (pro) <pro@odoo.com>
Co-authored-by: Vincent Schippefilt (vsc) <vsc@odoo.com>
Co-authored-by: Marceline Thomas (matho) <matho@odoo.com>This pull request reverses a recent change to the spreadsheet edition's border styling. The change caused visual inconsistencies and performance issues within the spreadsheet functionality. This reversion restores the original styling and addresses the identified problems.
This update fixes an issue where timesheets weren't automatically marked as billable when linked to a specific task or project. The fix ensures that when a timesheet is associated with a task, the ‘is_billable’ field is correctly set to ‘True’, streamlining billing processes and improving accuracy.
Original PR description
Steps to reproduce: - Open Timesheet Assistant - Add new Timesheet - Choose a project or task so so_line of timesheet become True - is_billable is still False Source of the bug: - compute_is_billable was missing depends decorator task-5956059 Forward-Port-Of: odoo/enterprise#108295
This update fixes a technical error that prevented users from successfully using commands within the AI chat channels. The issue stemmed from an undefined 'message' variable during command execution, which has now been resolved. This ensures a smoother experience for users interacting with the AI.
Original PR description
When trying to use commands (for example '/help') in 'ai_chat' channels, an error occurrs. This happens because the 'message' returned from Thread.post method is undefined in that case. Forward-Port-Of: odoo/enterprise#107655
This update resolves an issue where the PIS status field on batch payments wasn't updating correctly after a refresh. The fix ensures the correct database ID is used when fetching the status, now allowing accurate PIS status updates for SEPA credit transfers and similar payments.
Original PR description
When clicking the refresh button next to the PIS status field on a batch payment (e.g., paid with SEPA credit transfer), the status is cleared and no new value is set. This occurs because `onClickFetchStatus` makes an ORM call to fetch the status using `this.props.record.data.id`, which is `undefined`. This commit fixes the issue by correctly using `this.props.record.resId` to pass the database ID to the RPC call. no task-id Forward-Port-Of: odoo/enterprise#108927
This update fixes alignment issues within the HTML editor's monospace banner, ensuring text columns line up correctly. Previously, tabs caused misalignment, now the editor replaces tabs with four spaces for consistent formatting. This improves the overall readability and appearance of content within the editor.
Original PR description
Tabs are aligned on 40px boundaries. This leads to misalignment of characters when using the monospace banner. This commit fixes this by replacing all tabs inside monospace banners by four spaces. Steps to reproduce: - Go to a "To do" note - Insert a monospace banner - Type some text on several lines - Type tab at the begin of some lines => Character columns were misaligned. task-5916747 Forward-Port-Of: odoo/odoo#251065 Forward-Port-Of: odoo/odoo#248227
This update resolves a bug where tests for the account invoice extraction feature were failing due to a conflict with another Odoo module activating the EUR currency. The fix ensures the USD currency is consistently used, making the tests reliable and preventing disruptions to the system. This improves the stability of the enterprise version.
Original PR description
When the tests are run with all modules installed and demo data, some of them fail. One of the other modules activates the EUR currency, which causes the OCR to select it instead of leaving the default USD currency. - Test `test_bank_account` fails because, when the `currency_id` field is set, it triggers a re-computation of `partner_bank_id` which will reset its value to `False`. Runbot build error [240759](https://runbot.odoo.com/odoo/runbot.build.error/240759). - Test `test_invoice_ocr_note_author` fails because it's not expected that the `currency_id` is modified and logged in the tracking message. Runbot build error [238512](https://runbot.odoo.com/odoo/runbot.build.error/238512) (only in saas-19.2 and up, but it is mentionned here as the fix is the same). To make the tests more reliable, we now ensure only the USD currency is active. Forward-Port-Of: odoo/enterprise#108991 Forward-Port-Of: odoo/enterprise#108770
This update resolves an issue where non-administrator users were receiving access errors when viewing the accounting dashboard with the l10n_tr_nilvera module. The fix ensures that non-admin users can access the necessary features within the dashboard, improving usability for all users.
Original PR description
…nting dashboard # How to reproduce - Add the l10n_tr_nilvera module - Have at least one journal - Connect with a non-admin user - Go to the accounting dashboard # The problem An access right error message is displayed # Why When going to the accounting dashboard, both "_compute_show_fetch_in_einvoices_button" and "_compute_show_refresh_out_einvoices_status_button" are triggered. They both try to access the nilvera api key field of account.journal but only administrator users have access to that field. opw-5928715 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#249425
This update corrects a bug where the website's 'scroll to top' links (e.g., '#top') were broken due to incorrect URL processing. The fix ensures these links function correctly, providing a seamless user experience for navigating to the top of the page. A new test confirms this resolution.
Original PR description
__Before commit:__ Menu items with anchor URLs (e.g., `#my-anchor`) are prefixed with the current page's path. This is correct for page-specific anchors but breaks generic ones like `#top` and…
__Before commit:__ Menu items with anchor URLs (e.g., `#my-anchor`) are prefixed with the current page's path. This is correct for page-specific anchors but breaks generic ones like `#top` and `#bottom`. A menu with the URL `#top` becomes `/current-page#top`, preventing it from functioning as a universal "scroll to top" link. __Cause:__ The server-side logic for processing menu URLs does not differentiate between page-specific anchors and generic anchors like `#top` or `#bottom`, treating all anchor links as belonging to the current page. __Fix:__ In the `save` method, exclude `#top` and `#bottom` from the logic that prefixes anchors with the current page's URL. This ensures these special anchors, typically set on the header and footer, work consistently across the entire website. A new unit test verifies that `#top` and `#bottom` menu URLs are saved correctly without being prefixed. task-5941115 Forward-Port-Of: odoo/odoo#251154 Forward-Port-Of: odoo/odoo#250136
This update resolves an issue preventing administrators from viewing all email messages. Previously, access restrictions caused errors when attempting to retrieve email data. The change restores administrator access to all email communications by re-enabling necessary security permissions.
Original PR description
The model mail.mail inherits from mail.message. However, the administrator that has access to mail.mail, does not necessarily have access to the message. Since we removed fetching all messages in sudo, we get errors when trying to read messages. To restore the previous behaviour, we add back a sudo on all inherited fields. task-5954851 --- 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 users without HR permissions were encountering errors while trying to edit bank account information for contacts. The fix hides the bank account field for users lacking the necessary HR rights, ensuring a smoother user experience and preventing access errors.
Original PR description
**Steps to reproduce** - have `hr` and `account` installed - add a bank account to a contact - switch to a user with accounting rights but no HR rights - on the contact form, click on the tag of the bank account in the "Bank accounts" field - Access Error due to missing rights related to employee model **Cause** The `_compute_employee_id` method requires read access on the `hr.employee` model. **Solution** Hide the field for non-HR users. opw-5217072 Forward-Port-Of: odoo/odoo#247792
This update fixes an issue where the 'Missing Required Details' widget incorrectly appeared on the combo and product pages, especially on smaller screens. The change ensures the widget only displays when a required attribute is present and not selected, preventing confusion and ensuring users can properly complete their selections.
Original PR description
The "Missing Required Details" widget appeared when there was required attributes to choose in combo item or on the product page AND when the height of the screen was smaller than the content size. So sometimes, it was showing when it was not required and when we clicking on it, nothing was done because we saw everything on the screen. So, what I did, is basically change the condition for displaying the widget. Now it will appear only when a title of a required attributes is hidden by the header and this required attribute is not selected. part ot task: 5493798 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#251176 Forward-Port-Of: odoo/odoo#244667
This update fixes a misleading warning message related to employee net wages. A recent code change improved the payroll system's accuracy by ensuring the warning only appears when a negative net wage is actually present. This ensures employees and administrators receive correct information.
Original PR description
As a result of a refactor in the hr_payslip.py model, this commit mainly adds a test to check the message is not displayed if we don't have net salary, and appears if the net is indeed negative. task-5484107 Forward-Port-Of: odoo/enterprise#103918
This update corrects a minor display error in the Gantt chart for employees with flexible working hours. The issue stemmed from incorrect timezone settings in test data, which caused the chart to misrepresent employee attendance progress. The fix ensures accurate progress visualization for all employees, regardless of their timezone.
Original PR description
[FIX] hr_attendance_gantt: fix gantt progress with flex emp test
Bug reproduction:
1 - Install and update hr_payroll,hr_contract_salary,l10n_us_hr_payroll,hr_attendance_gantt modules in localhost (version >= saas-19.2)
2 - Run test_gantt_progress_with_flexible_employees test and the expected result is 8 but it gives 9.
Bug cause:
Timezone of the test employees was UTC+1 and they should be UTC to match the range parameter of _gantt_progress_bar
Bug solution:
Change the timezone of the test employees to UTC.
task - 5865307This update corrects a display issue in the Odoo Enterprise SaaS version (19.2 and later). Specifically, certain fields related to EG's local tax regulations were incorrectly showing up on employee forms for companies outside of EG. This change ensures that these fields are only visible when the company's country is set to EG, maintaining data accuracy and user experience.
Original PR description
[FIX] some EG l18n fields are visible in other country's employee forms Bug reproduction: Go to >= saas~19.2 version, install EG and select company other than EG -> payroll -> personal -> there are EG: Social Sec. Number and NOSI Registration strings that belongs to EG. Bug cause: In EG view, they did not make the additional fields invisible if they belong to other company. Bug solution: Make the appended fields invisible when company country code is not EG. task - 5975886
This update fixes an issue where banner background colors weren't consistently matching the banner content. The change ensures that background shapes, particularly connection shapes, correctly inherit the color of the associated banner snippet, providing a more polished and accurate visual appearance for website banners.
Original PR description
Steps to reproduce the problem: - Add a "Banner Categories" snippet on your page. -> The background shape color is updated with the same color than the background of the snippet. Since [1], when a snippet with a background shape is dropped on the page, the system recomputes the color of the background shape so that, if the background shape is of type 'Connections', it is updated with the color of the connecting background snippet. The problem was that two hexadecimal colors were compared in a case sensitive way in the computation of the color. [1]: https://github.com/odoo/odoo/commit/e591ea77f4a800bf79cb19f80529eed0d8ded927 task-5977647
This update corrects a visual bug where single custom value attributes were incorrectly displayed on product pages. The fix ensures that these attributes are only shown in the primary attribute list where they should be set, improving the consistency and clarity of product information for customers. This change enhances the user experience on our website.
Original PR description
### Issue: Due to this bug, an attribute with a single custom value will be shown in specifications and single value attributes. #### Steps to reproduce: 1- Create a product. Add a `Free text`…
### Issue: Due to this bug, an attribute with a single custom value will be shown in specifications and single value attributes. #### Steps to reproduce: 1- Create a product. Add a `Free text` attribute. 2- Navigate to product page on the website. 3- From website editor, style tab, switch `specification` style. 4- With specification style set to `None`, you can see this attribute in single value attributes list. 5- With other 2 styles you can see this attributes in specifications. Expected: In both steps 4 and 5, this attributes shouldn't be displayed there because it is already displayed in main attributes where you can set the value. Initially fix was to filter `ProductTemplateAttributeLine` in `_prepare_single_value_for_display`, however it would cause empty specification sections. To avoid that we also need to filter out single custom value attributes in `_prepare_categories_for_display`. opw-5484721 Forward-Port-Of: odoo/odoo#251022 Forward-Port-Of: odoo/odoo#244234
This update resolves an issue where tests within the Sale Stock module were temporarily disabled. The team has re-enabled these tests to ensure the module's functionality continues to operate correctly and reliably. This ensures ongoing quality control and stability for our sales and inventory processes.
Original PR description
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#246522
This update fixes a limitation in the eCommerce search bar's placeholder text, preventing it from being translated. The change replaces a technical method with a standard translation-friendly format, ensuring all placeholder text can now be localized for different languages. This improves the user experience for international customers.
Original PR description
The placeholder of the search bar for attributes in eCommerce was not translatable, because it was using a Python expression to set its value. This commit replaces the Python expression with a t-attf-placeholder, which allows the placeholder to be translated. opw-5978276 Forward-Port-Of: odoo/odoo#251288 Forward-Port-Of: odoo/odoo#251145