Saturday, October 25, 2025
2 changes · saas-18.3
Resolved issues and error corrections
This fixes an issue where automated rules and filters using “contains” could miss matching text if it appeared after a line break. Users can now rely on these searches to find text in multi-line fields such as task descriptions, improving rule accuracy.
Original PR description
Problem: When the ilike comparator is applied in filtered_domain, it is unable to match text beyond a newline character (\n). This is due to the regex being used not having the DOTALL flag. Purpose: Add the DOTALL flag to the re.compile arguments when defining like_regex. Steps to Reproduce on Runbot: 1. Create an Automation Rule on the Task model with an Apply On condition of Description contains "test". 2. Create a Task and add an Info Banner element, then either within the element or afterwards include the "test" text, then save. 3. The automation rule does not trigger. opw-5134374 Forward-Port-Of: odoo/odoo#232632 Forward-Port-Of: odoo/odoo#232434
This fixes an issue that could cause Spanish Facturae electronic invoices to fail official validation because of an incorrect placeholder in the digital signature template. After the change, affected invoices should validate correctly for Spanish electronic invoicing requirements.
Original PR description
Commit 051b7bcdd12d669e203296515e57ca8bfdac45e8 introduced an ___ignore___ in the DigestValue tag of signature_templates.xml which does not pass the facturae validation opw-5111038 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#233028