Monday, February 24, 2025
5 changes
3 changes
Enhancements to existing features
The timesheet leaderboard now reuses data across views when the same period is shown, reducing unnecessary refreshes and server calls. This should make switching between timesheet views feel smoother while keeping leaderboard visibility handled in one request.
Belgian payroll calculations now recognize employees whose spouse has low income, not only no income, when applying withholding tax reductions. This helps eligible employees receive the correct tax benefit directly through payroll.
Original PR description
When your spouse has no income or low income, you can benefit from withholding taxes reduction. Before this commit, only the case where the spouse had no income was implemented. This PR includes the case where the spouse has low income to also benefit for the withholding taxe reduction. task-4582221
Project Gantt views are now easier to read and act on, with clearer labels for unassigned managers, alphabetical row ordering, progress bars, and a quick way to open related tasks. These improvements help teams understand project ownership and status faster while keeping assignments accurate when work is moved from unassigned rows.
Original PR description
_*= timesheet_grid
- Always display 'Unassigned' for projects without a project manager
in the Gantt grouping.
- Rename 'undefined project manager' to 'Unassigned'.
- Add a 'View Tasks' primary button to the project Gantt popover
to open associated tasks.
- Sorted project Gantt rows alphabetically, except when grouped by stage.
- When a user is assigned to a project from the 'Unassigned' line,
the assignment will be reflected.
- Added a progress bar to the Gantt view of the project.
task-4244705
COM PR: https://github.com/odoo/odoo/pull/1834822 changes
Enhancements to existing features
This update keeps journal entries in sync when analytic items are changed or deleted. It helps prevent accounting discrepancies by automatically updating the related analytic distribution, reducing manual corrections and improving financial data reliability.
Original PR description
created a synchronzing function then overrode the write and unlink functions related to the analytic_line so that it calls the synchronization function when someone deletes or modify an account on an analytic item, a discrepency is created on the analytic distribution of the journal item. so a synchronization function had to be implemented to make sure that there is no discrepency when a customer edit or delete the analytic account on an analytic item task-4378407 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Analytic reporting now includes a date filter based on fiscal years, with the default view showing the current and previous fiscal years. This helps users focus on the most relevant reporting periods without manually adjusting date filters.
Original PR description
This commit introduces a new filter in the analytic reporting view, which filters dates based on the fiscal year and sets the default filter to the current and previous fiscal years. task-4453226 linked:https://github.com/odoo/odoo/pull/194983