Thursday, August 29, 2024
4 changes · master
Enhancements to existing features
Project-related service flows now use the newer project-based accounting link instead of the older analytic account field. This helps field service, rentals, subscriptions, helpdesk, manufacturing work orders, and project budgeting work more reliably with multi-dimensional analytic accounting.
Original PR description
In this commit, we adapt the flows that used 'analytic_account_id' field by the new 'project_id' fields introduced in https://github.com/odoo/odoo/pull/169868 We also make changes to allow flows to work properly with multi-dimensional analytic accounting. task-3985258
The spreadsheet experience has been updated to stay aligned with the latest platform improvements. This includes better handling of large spreadsheet content, improved currency and accounting formatting, and adjusted tests to support calculated fields, helping users create clearer financial reports with fewer display issues.
Original PR description
These commits adapt the enterprise codebase to https://github.com/odoo/odoo/pull/178178
Approval request lists now show key details such as location, period, and confirmation date, helping users understand requests faster. Submitted requests also have a clearer approve action, and approval reports can now be printed for easier sharing and record keeping.
Original PR description
In this commit, we've added the following things, - add Location, Period, and Date Confirmed fields in the list view of All Approvals - change the Approve Button color to primary when the record is submitted - Print the report for approval task-3560689
Resolved issues and error corrections
This fix removes an obsolete VAT closing warning field that could still affect tax closing workflows. It helps ensure manually edited closing entries are not unintentionally refreshed in a way that erases user changes when posting or reviewing periodic VAT entries.
Original PR description
Before this commit https://github.com/odoo/enterprise/pull/65645/commits/ba50a831bb99d9808ed28899dfe1a73e0fe7566b when posting a manually modified closing entry, the entire move would be refreshed, and all user-modified information would be erased. This occurred because, when accessing the action_periodic_vat_entries, the current tax closing move was overwritten. We also removed tax_closing_show_multi_closing_warning but didn't remove the field so this PR will remove the last occurrence of the field and the compute. task: 4083471 related upgrade PR: https://github.com/odoo/upgrade/pull/6410