Monday, December 8, 2025
9 changes · 17.0
Enhancements to existing features
This update automatically aligns the code running on our IoT boxes with the latest database version, ensuring data consistency. To activate this change, existing IoT boxes will need a restart. This process primarily addresses database version discrepancies and doesn't impact regular software updates.
Original PR description
This PR adds the code which checks every midnight to see if the version of the database has changed. If so, it will update the iot box's code to align it to the database version Note: 1) the existing iot boxes will need to restart to get this cron job 2) Outside of database upgrade the code won't be upgraded with the cron
Resolved issues and error corrections
This change prevents distracting audio notifications during local testing of Odoo. Previously, unexpected beeps and ringtones could interrupt the testing process. This improvement ensures a smoother and more reliable testing experience.
Original PR description
When running tests locally, it's really annoying (and sometimes really jarring / surprising) to hear random beeps and boops from your machine, especially when it's an old timey ringtone from voip. Make it stop. Forward-Port-Of: odoo/odoo#238882
This update resolves an issue preventing users from renaming the "Help" menu item in the Helpdesk module. Previously, a system error blocked renaming, even without attempting to modify the URL. Now, users can freely change the menu item's name, improving usability and flexibility.
Original PR description
**Issue** It was not possible to rename the "Help" menu item, an error appeared with the message: "This URL is reserved for the helpdesk teams with 'website form' feature enabled.", even if the user was not trying to edit the URL. **Change** Allow the user to edit the menu item's name. opw-5375334
This update fixes a technical error that was causing tracebacks when sending snail mail for documents other than the standard followup report. The issue stemmed from a misconfiguration in the code, and this change corrects that to ensure reliable snail mail functionality. This resolves a potential disruption to our mail delivery process.
Original PR description
Currently there is a traceback when sending snailmail for anything that is not the followup report. The call to the super function has the wrong name and misses an argument The issue was introduced in this commit 08ec299cf2b06cd900f84be0a95b5917abe7d453 . task-None
This change reverts a recent update to Odoo's portal access functionality. The original fix, intended for newer versions, wasn't stable for Odoo 17. This ensures continued stability and functionality for existing Odoo 17 users regarding portal access management.
Original PR description
**Issue:** Active check is needed when granting access to a previous portal user which was archived. But changing the template to fix this is not stable for previous versions. **Fix:** Reverted https://github.com/odoo/odoo/pull/233757 in 17.0 (Fixed with https://github.com/odoo/odoo/pull/236462 in 18.0+) -> reverted as well for now https://github.com/odoo/odoo/pull/239477 opw-4760550
This update resolves an issue in the l10n_se_sie_import module related to how SHA512 hashes are generated. The fix ensures that SHA512 hashing is performed correctly, improving the reliability of data import processes for Swedish SIE files. This prevents potential errors during data synchronization.
This update corrects a formatting error in the invoice report for KE (Kenya) invoices. Previously, the total and taxable amounts lacked proper currency formatting (commas). The fix removes a duplicate XPath and applies the correct formatting options, ensuring invoices display accurate price values.
Original PR description
Steps to reproduce: 1. install `l10n_ke` 2. Switch to KE Company 3. Create a product with all KRA eTIMS details set on the Accounting page. 4. Create an invoice to KE Company with that product and set unitprice > 10000 5. Confirm the invoice and send it. Now, see the invoice report Issue: 1. xpath for `td_subtotal` was duplicated 2. The total amount and taxable amount were not formatted as prices (no commas). Before: <img width="771" height="397" alt="image" src="https://github.com/user-attachments/assets/492fe911-18d6-4e01-a16d-d7450c17373f" /> After: <img width="766" height="389" alt="image" src="https://github.com/user-attachments/assets/bbe5d4e2-b337-445c-833a-06492a8c827d" /> Solution: Updated the invoice report to: - Remove the duplicated `td_subtotal` xpath. - Properly format the total and taxable amounts with `t-options`. opw-5341578
This update resolves a potential error that caused invoices to fail during confirmation when specific currency and pricing settings were used. The fix prevents a division-by-zero error, ensuring invoices can be processed correctly under these circumstances. This improves the reliability of the invoicing process.
Original PR description
Steps to reproduce:
--------------------
1. Install l10n_cl and switch to the CL company
2. Create a new invoice:
- Change the currency to a value different from the company currency
(e.g., from CLP to USD)
- Add an invoice line with a price value of 0
- Remove the default tax value
3. Try to confirm the invoice
Issue:
------
A traceback occurs:
`ZeroDivisionError: float division by zero`
Cause:
------
Since the price value is 0, the `amount_total` of the move becomes 0.
When computing the currency rate, it tries to divides by `amount_total`, resulting in a ZeroDivisionError.
Solution:
---------
Add a conditional check before division to ensure the `amount_total` is non-zero
Related enterprise PR: https://github.com/odoo/enterprise/pull/99518
opw-5247058
---
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThis update fixes a potential error that could prevent invoices from being confirmed when specific currency and pricing settings are used. The fix adds a check to avoid division by zero, ensuring invoices can be processed correctly. This improves invoice processing reliability and prevents disruptions to financial workflows.
Original PR description
Steps to reproduce: -------------------- 1. Install l10n_cl and switch to the CL company 2. Create a new invoice: - Change the currency to a value different from the company currency (e.g., from CLP to USD) - Add an invoice line with a price value of 0 - Remove the default tax value 3. Try to confirm the invoice Issue: ------ A traceback occurs: `ZeroDivisionError: float division by zero` Cause: ------ Since the price value is 0, the `amount_total` of the move becomes 0. When computing the currency rate, it tries to divides by `amount_total`, resulting in a ZeroDivisionError. Solution: --------- Add a conditional check before division to ensure the `amount_total` is non-zero Related community PR: https://github.com/odoo/odoo/pull/235252 opw-5247058