Monday, February 3, 2025
3 changes · saas-17.4
Resolved issues and error corrections
Time off allocations no longer create an activity for the employee who entered them when no notified time off officer is selected. This prevents unnecessary reminders and emails from being sent in configurations where no officer should be notified.
Original PR description
steps to reproduce: -Create a new time off type. -Set the approval radio button to either "By Time Off Officer" or "By Employee's Approver and Time Off Officer." -Leave the "Notified Time Off Officer" field empty. -Try to create a new allocation for the newly created time off type. -Notice that an activity is created for the user who created the allocation. cause: When the "Notified Time Off Officer" field is left empty, no activity or email should be created. solution: Remove self.env.user.ids to prevent the creation of an activity for the user. task-4351747
The Payroll work entries Gantt view now keeps the deferred time off warning in place when users scroll horizontally. This makes the warning easier to read and prevents it from moving away from its intended position.
Original PR description
Steps to Reproduce: • Install the Payroll app. • Navigate to the Work Entries Gantt view. • When there is deferred time off, a warning message is displayed. • Scrolling horizontally in the Gantt view causes the warning message to move along, whereas it should remain static. Cause: • The position of the warning message element is not fixed. Fix: • Set the element's position to sticky so that it remains static while scrolling. task-4367336
The database name now remains clearly visible when debug mode and dark mode are both enabled. This improves usability for users and administrators who rely on the database name to confirm they are working in the right environment.
Original PR description
Previously after activating debug mode and then dark mode, the letters of database name are not visible clearly. It is happening because in new bootstrap version we are having an inappropriate color for mark tag in dark mode. After this commit the database name will be clearly visible in dark mode. Task- 4389154