Saturday, June 6, 2026
5 changes · saas-19.1
Resolved issues and error corrections
This update fixes a bug in the spreadsheet account formulas that prevented correct calculations when company IDs were entered as numbers. Now, all company IDs are automatically converted to numbers, ensuring accurate calculations and preventing server errors. This improves the reliability of the spreadsheet accounting features.
Original PR description
Current behavior before PR: - The `ODOO.CREDIT`, `ODOO.DEBIT`, and `ODOO.BALANCE` formulas passed `companyId.value` directly to the server without converting it to a number. - If a user passed company_id as a string (e.g., '1' from a cell), it was sent to the server as a string, causing a server error. Desired behavior after PR is merged: - `companyId` is converted using toNumber() before being passed to the getter and the server, so '1' becomes 1. - null is preserved as-is (no company filter) while any non-null value is safely cast to an integer. Task: [6240005](https://www.odoo.com/odoo/project/2328/tasks/6240005) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#268415 Forward-Port-Of: odoo/odoo#266009
This update resolves an issue preventing accurate order data synchronization from Point of Sale systems. The fix corrects a typo and adjusts the system to check for 'done' invoicing states instead of 'invoiced', ensuring reliable data transfer between POS and the core Odoo system. This improves the accuracy of order information.
Original PR description
In this commit: - Update `read_pos_data` to check `done` state for invoicing instead of `invoiced` state - Load `account.move` model instead of `account_move` (fix typo) Task-5887318 Forward-Port-Of: odoo/enterprise#119407 Forward-Port-Of: odoo/enterprise#105839
This update resolves an issue where a confusing time slot selection popup appeared when using order presets in the restaurant POS. The fix ensures that the preset selection flow correctly exits when an order is merged and deleted, preventing errors and improving the user experience. This enhancement ensures smoother order management for restaurant staff.
Original PR description
pos*: point_of_sale, pos_restaurant Steps to reproduce: - Configure a preset identified by name and managed by time. - Open the restaurant POS. - Create a direct order and set a tab for it. - Return to the floor screen and create another direct order. - Select the configured preset and choose the previously created order from the order name popup. Issue: - The time slot selection popup appears unexpectedly. - Selecting a time slot triggers a traceback. Cause: - When selecting an existing order, the current order is merged into the selected order. - However, the time slot selection flow remains active for the merged order, which has already been deleted. Fix: - Exit the preset selection flow when the order is merged and deleted. Task-6032880 Forward-Port-Of: odoo/odoo#268304 Forward-Port-Of: odoo/odoo#253586
This update optimizes how Odoo searches for names, making the process faster and more efficient. By batching setup calculations, the system avoids redundant work, resulting in quicker response times when searching for records. This enhancement improves the overall user experience.
Original PR description
If a method has a costly setup in `_compute_display_name` but that can be batched, allow the ORM to do the setup only once for all the lines to compute Forward-Port-Of: odoo/odoo#263553
This update corrects a technical error in the French tax reporting module (l10n_fr_pdp) that was preventing proper data processing. The issue involved incorrectly assigning data attributes, which has now been resolved. This ensures accurate tax reporting functionality.
Original PR description
'Content' was set as an attribute of 'IncludedNote' instead of a child node. See ppf messages 164, 166 & 168 Forward-Port-Of: odoo/odoo#268593