Tuesday, October 1, 2024
3 changes · 17.0
Resolved issues and error corrections
A test display showing the difference between actual and expected daily time was accidentally left visible in the timesheet timer. This fix removes the unintended display so users only see the actual time spent on tasks, not internal testing information.
Original PR description
Steps to reproduce: - Timesheet > Register time for any task The display of time spent on the task also contains the diff with the expected time for the day, which should not be displayed here. I mistakenly left in a display meant for testing purposes only added in commit 56c7e8ccf5eb92baee258842fe72efa3d1956b96 opw-4123649
This update fixes a visual problem where buttons were appearing cropped or misaligned in the signature request form. The fix reorganizes how the button visibility is controlled, resulting in a cleaner and properly displayed interface for users sending signature requests.
Original PR description
Before this commit, the div was addded for additional condition for button visibility which causing button asymtry and cropping button. after this commit, moved visibility condition in invisible attribute of button.
A recent improvement to how fiscal positions are determined in the system now requires additional database queries. This update adjusts the performance test expectations to match the new query count, ensuring tests continue to pass accurately.
Original PR description
After a fix in `res_partner._get_fiscal_position`
we extract the line `eu_country_codes =
set(self.env.ref('base.europe').country_ids.mapped('code'))`
from a condition, therefore we make extra queries and we have to adapt
the `assertQueryCount`.
opw-4072691