Daily updates from Odoo
Thursday, May 23, 2024
2 changes · master
Resolved issues and error corrections
This update makes minor corrections to the manufacturing planning setup. It removes an unwanted default forecast value, clarifies a form label, and prevents an error when adding products without an enabled route to the master production schedule.
Original PR description
- remove the default setting from 'To Forecast' field - change the label for field `is_indirect` on form view
This fixes an intermittent automated test failure in financial reporting by making the test wait for the correct sorted report lines. It helps keep quality checks stable without changing how users interact with reports.
Original PR description
issue: when the account_reports tour test is run it sometimes fails with some report line not containing the correct value. The root cause of this issue is that the triggers for 2 of the test steps check the content of lines that are excluded from sorting. This could result in the test step triggering before sorting of the report is completed, which will in turn fail the testcase. fix: while testing the sorting mechanism only trigger on lines that are included in the sort. This ensures the next test step is triggered after sorting is completed.