Monday, February 14, 2022
2 changes · master
Resolved issues and error corrections
This fix restores the correct icon format in the Chilean localization demo data after an accidental conversion. It helps ensure the related partner demo information displays as intended without missing visual elements.
Original PR description
Fix of rev 10a5796d4b86a679f905be14a. An icon should not have been converted to SVG. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes internal tests for spreadsheet pivot formulas so they correctly wait for background calculations to finish. It helps keep the Documents Spreadsheet feature stable by preventing false test failures after recent timing changes.
Original PR description
Formulas `PIVOT`and `PIVOT.HEADER` have a potential async behaviour since they require an RPC and a subsequent evaluation before they are properly updated. Since ea20394e4820b12cc2b3f026c379b1ae6426f38f, we introduced a debounce and with it the necessity to run an additional nextTick to ensure that the cells are evaluated after the RPC promise is solved. In this commit, we use the helper `waitForEvaluation`that was added for that purpose. task 2764761