Daily updates from Odoo
Saturday, February 14, 2026
2 changes · saas-19.1
Enhancements to existing features
This update improves the generation of XML invoices for HR EDI reporting by streamlining the process and adding more robust testing. Specifically, the system now handles multiple tax calculations more accurately and includes new tests to ensure data integrity, aligning with evolving API standards for fiscalization queries.
Original PR description
- Improving the ubl_hr method chain to include less overrides in favor of extensions - Adding proper handling of multiple tax total and tax category nodes for hrextac - Refining docstrings and comments for ubl_hr - Adding a test with multiple tax types - Adding a test for account_edi_ubl_cii_tax_extension integration - Adjusting MER methods to correspond to API changes: fiscalization queries are now only available for own documents task-none --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#247339
Resolved issues and error corrections
This update resolves an issue where rental schedules were limiting the number of products displayed in group views. The fix adjusts a technical limit within the Odoo system to allow for a greater number of products to be included in rental schedule groups, ensuring accurate representation of rental products. This improves the usability of the rental scheduling feature.
Original PR description
Versions -------- - 19.0+ Steps ----- 1. Create more than 30 rental products. 2. Override or raise `group_limit` on the `sale_renting.sale_order_line_gantt_schedule` view to 40 (>= 30). 3. Open the rental schedule and group by products. Issue ----- Only 21 products expand even when the limit is increased. Cause ----- Commit 9010416881857c5b810a56e74db04a5fcd869f63 added a hard limit to the search expanding product groups, based on the gantt default limit of 20. When the gantt limit is increased, the Python limit remains. Solution -------- Increase the Python-side limit to what it was before 9010416881857c5b810a56e74db04a5fcd869f63, i.e. 80, which is the default limit at the action level. opw-5887837 Forward-Port-Of: odoo/enterprise#107010