Saturday, February 14, 2026
1 change · saas-19.1
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