Daily updates from Odoo
Monday, August 22, 2022
1 change · master
Resolved issues and error corrections
Timesheet and project pivot views now correctly show the option to insert data into a spreadsheet. This fixes a missing button so users can send pivot analysis to spreadsheets without needing a workaround.
Original PR description
Earlier, timesheet pivot view was not able to render "Insert in spreadsheet" button. The issue appears to be in the method of appending pivotView in code. It was using deep copy technique while referring to pivotView, resulting in avoiding the changes made by our button template. Changing the following to shallow copy mode solved the issue, as now it's loading the changes of custom panel on top as well as the button template. Task-2936554