Daily updates from Odoo
Monday, March 4, 2024
4 changes · master
Enhancements to existing features
Sending a field service report now first lets the user choose the report layout before opening the send dialog. This gives teams more control over how customer-facing reports look and helps ensure the right presentation is selected before sharing.
Original PR description
**Prior this commit:** On the click of 'Send Report' button, the 'Send Report' dialog is opened directly. **Post this commit:** When you click the 'Send Report' button, the user is first allowed to choose the layout, and then the dialog is opened. **Task**-3754747
This change lets country-specific localization and payroll demo data reuse the same demo company instead of creating duplicate companies. It simplifies demo environments and reduces the need for extra bridge modules just to align sample data across related apps.
Original PR description
The use case is the following: l10n_xx (usually depending on account) creates a company demo data l10n_xx_hr_payroll (not depending on account) creates another company The goal is to allow defining the data to a foreign module (obvioulsy in the common dependencies) like "base", so that each module can easily define the same company and use it without having the create another bridge module that contains only demo data. TaskID: 3714759
Payroll dashboard warnings now load in the background instead of delaying the whole dashboard. This improves the experience for payroll teams on large production databases by making the dashboard available sooner while warning checks continue separately.
Original PR description
The payroll dashboard loading time can be really slow on a production database due to the computation of different warnings, we fix that by loading them asynchronously using an rpc call task-3597092
Warehouse users can now create a backorder in advance directly from the barcode app's gear menu while processing a transfer. This makes it easier to split remaining items into a follow-up transfer without leaving the barcode workflow.
Original PR description
In this commit ================== In this commit, we added a new action split (visible in barcode when pressing the gear icon) which allows to create backorder in advance for a transfer. Related Community PR: https://github.com/odoo/odoo/pull/120095 TaskId-3266824