Daily updates from Odoo
Sunday, February 22, 2026
2 changes · master
Enhancements to existing features
This update introduces specific settings for Belgian companies within Odoo, including key details like the joint committee, DIMONA category, and worker code. A dashboard warning alerts users to missing information, guiding them through a configuration wizard to ensure accurate payroll processing for Belgian businesses.
Original PR description
This commit adds a specific configuration for Belgian companies, including: main joint committee, DIMONA category, and worker code. A warning is displayed on the dashboard for Belgian companies with missing settings. Clicking the warning button opens a wizard to configure the required values. task-5933795
This update introduces a new JavaScript mixin to seamlessly display pay run cards within various views, streamlining the pay run process. It allows for multiple steps (employee, time, etc.) to be represented as individual cards, improving visibility and usability. This enhancement ensures all employees are visible, even those without records.
Original PR description
JS mixin to implement the payrun behavior in multiple Controller. The Layout component is extended to add the custom kanban card above the main container of the Layout. The flow is implemented: - A Pay Run can have multiple steps: Employee, Time, (Attendance), Payslip - Each step can have its own payrun card To add a Pay Run Card in a view: - make a custom view and replace the controller by PayRunMixin(OriginalController) - the action that trigger the view have to give a kanban_view_id and the payrun_id in context - BOOM the card appears. task-5362147