Monday, March 11, 2024
4 changes · 17.0
Enhancements to existing features
This update improves the clarity and wording of the holiday attestation document in the Belgian payroll module. The changes make the termination holidays report easier to understand for employees and HR staff by refining the language used in the document.
Original PR description
task-3610704
A new warning has been added to the payroll dashboard that alerts users when time off requests are affected by changes to allocation amounts. When an allocation's number of days is modified after time off has been taken against it, the dashboard now displays a warning and provides a convenient link to view all affected leaves grouped by employee.
Original PR description
When a time off for a few days is taken using a certain allocation but then the number of days of the allocation is changed, there should be a warning on the dashboard of payroll to show the leaves affected. The warning redirects the user to a list of leaves concerned and grouped by employees. Task: 3729563
This update improves how error messages are displayed when bank account synchronization encounters issues. Instead of always showing a generic redirect warning that suggests contacting support, the system can now display specific user-friendly error messages when appropriate. This gives users clearer guidance on what went wrong without unnecessary support escalation.
Original PR description
…ct warning * a regular user error can be displayed user-side instead of the redirect warning, in case we don't want to propose to contact the support (in case there's no need) Forward-Port-Of: odoo/enterprise#57090 Forward-Port-Of: odoo/enterprise#56935
This update improves how the social media module retrieves information about social posts, making it significantly faster. Instead of looking up data through multiple linked records, the system now uses a more direct approach, which reduces the number of database queries and improves overall performance for all social media features.
Original PR description
This commit improves the '_get_social_stream_post' method to make it use a complete domain instead of relying on pathing through the stream, then the account, then the media (= 3 records fetch), to get the media type. This will save a lot of requests as it is a central method used in the controllers of all social media implementations. Forward-Port-Of: odoo/enterprise#58286