Saturday, March 21, 2026
2 changes · saas-18.2
Resolved issues and error corrections
This fixes an issue that could cause spreadsheet dashboards to crash when users tried to print them. The change helps ensure dashboards remain usable and printable for reporting or review workflows.
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#254815
This update corrects a minor bug in the SendCloud delivery service that was preventing proper processing of delivery requests. The issue stemmed from incorrect slicing of data within the Odoo system, which caused an error. The fix ensures accurate delivery processing and avoids disruptions.
Original PR description
Slicing in Python returns a sub-list, even for a single element. Doing `res[:1]` does not return the first element so doing `.get` causes an error. This was not caught because the tests do not run in CI due to the tags on the class. Forward-Port-Of: odoo/enterprise#111254