Daily updates from Odoo
Thursday, March 26, 2026
3 changes · master
Resolved issues and error corrections
This update ensures that waiting payslips are automatically recalculated whenever key information related to payroll is changed. This guarantees that employees receive accurate payment details, resolving potential discrepancies and improving payroll reporting. The change impacts the HR Payroll module.
Original PR description
This commit makes waiting payslips recomputes whenever inputs are changed to make sure the sheet is up to date with inputs Task#5439146
This update fixes a previous issue where users couldn't access worksheet properties within the Quality Check process. The changes now display the worksheet tab and add a simplified validation button, streamlining the workflow and enhancing the user experience. This improves efficiency and clarity for users managing quality checks and maintenance requests.
Original PR description
- Display the Worksheet tab to user in Quality Check and Maintenance Request form views when a worksheet template is set. Previously, the tab was hidden, preventing users from viewing or accessing the worksheet properties. - Added a Validate button in the Quality Check form view for worksheet-based checks, allowing users to validate directly based on worksheet property values Removed the Pass and Fail buttons in this case to streamline the validation flow and reduce user confusion. - Remove the worksheet template title from the Quality Check wizard when displaying worksheet properties to provide a cleaner interface. These changes ensure that users can easily access relevant worksheet properties and improve overall UI clarity. Community PR: [254794](https://github.com/odoo/odoo/pull/254794) Task Id: 5955976 Forward-Port-Of: odoo/enterprise#110899
This update fixes a crash that occurred when using the command palette to interact with the AI messaging feature. The change simplifies the AI action's return to prevent unexpected errors, ensuring a stable and reliable experience for users. This resolves a previous issue impacting AI functionality.
Original PR description
Prior to this fix, messaging the llm via the command palette would cause a crash because of some undefined value in the return of the action function in the `askAIProvide` method. This commit changes the action to a void returning function, which prevents the call from crashing.