Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] sale: force maximum section/subtotal width
Step to reproduce: - Install sale (sale_management) and studio (web_studio) - Change the document template (settings > configuration > general settings) to select the second one - Go to an order form - Enable studio, select "Reports" in the right tab - Edit the "Quotation/Order" report, add a new colomn - Back to the order form, enable dev mode and add a section to the order lines. - Print the report => the section is not using all the available place. The section/subtotal are using a colspan to use all the place in the table, this colspan is hardcoded to 5, the number of columns without customization. Adding a new column doesn't change that value. The fix has been to force the colspan at 99, the maximum value for colspans. Using that value will always render the row to fill the table. opw-1936088 closes odoo#31951 Signed-off-by: Julien Castiaux <[email protected]>
- Loading branch information