Friday, February 13, 2026
3 changes · 17.0
Resolved issues and error corrections
This update resolves an issue where attendance managers couldn't correctly edit the attendance records of their subordinates. The fix ensures both managers and officers can now modify attendance data, improving workflow efficiency. The changes also included enhanced testing for greater reliability.
Original PR description
The commit https://github.com/odoo/odoo/commit/d115cca1296c0bd20a2875bdaadf2a9136c33dda introduced the opportunity for attendance managers to edit their subordinates attendances, but the condition was lacking parenthesis, leading to an unexpected behaviour. This commit changes the condition so that it is possible both for a manager and an officer to do the edition. It also rewrite the tests in order to be more thorough. No related task
This update resolves an issue where test runs were repeatedly generating unnecessary assets, slowing down the testing process. By adding the 'studio_assets' bundle to the pregeneration list, tests now run more efficiently and reliably. This improves overall development speed and stability.
Original PR description
During tests runs, lazy loaded assets are generated on the fly, and eventually multiple hundred of times (i.e. +/- 150 times on runbot). This commit adds the `web_studio.studio_assets` bundle to the pregeneration list to avoid regenerating during tests runs.
This update resolves an issue where DHL shipping rate requests failed when submitted late in the day. The fix adds a 'next business day' flag to the request, ensuring rates are calculated correctly and preventing errors related to unavailable pickup dates. This improves the reliability of DHL shipping calculations.
Original PR description
Before this commit, there was an issue when trying to get the rates for DHL shipping late in the day. The issue happened because `plannedShippingDate` fell outside of the working hours. This commit adds the nextBusinessDay flag for the rating request to avoid the error. Error: ``` Product not found 996: The requested product(s) not available for the requested pickup date. Process ID associated for this transaction') ``` opw-5393684