Daily updates from Odoo
Wednesday, May 8, 2019
6 changes
Enhancements to existing features
Manufacturing work order screens now open with more useful default filters and a list view where appropriate. This helps teams find relevant work orders faster, including those tied to the selected work center and pending operations.
Original PR description
Description of the issue/feature this PR addresses: -This PR is related to task https://www.odoo.com/mail/view?res_id=1911218&access_token=110f8d88-e007-4808-9d88-bb662c4c33ce&model=project.task…
Description of the issue/feature this PR addresses: -This PR is related to task https://www.odoo.com/mail/view?res_id=1911218&access_token=110f8d88-e007-4808-9d88-bb662c4c33ce&model=project.task Current behavior before PR: -There is **only one default filter** while navigating to work orders through dashboard. It's regarding state of the order i.e. ready, pending or in progress. -There is a default filter while navigating to work orders through operations. it includes **orders with state as in progress or ready** -Default view while navigating to work orders through operations is **kanban** Desired behavior after PR is merged: -There must be **two default filters** while navigating to work orders through dashboard. one with state of order as before PR and another with selected work center. -There must be a default filter while navigating to work orders through operations. it must include **orders with state as in progress or ready or pending** -Default view while navigating to work orders through operations must be **list** -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Confirmed or completed sales orders must now always have a confirmation date, preventing inconsistent order records. Existing orders can have the date restored from prior confirmation messages, improving reliability for reporting and business processes.
Original PR description
Somehow, when a sales order is confirmed, its confirmation date might not be set (or it is possible to remove it). This makes no sense as we expect it to be set when the SO is confirmed. This commit adds an SQL constraint to ensure the confirmation date is required when the SO is confirmed or done. To populate this column, the confirmation can be deduced from the mail.message, with the confirmed subtype. Task-1930506 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
This update simplifies how Odoo prepares related records for loading, which can reduce unnecessary database work and improve performance in everyday operations. Several performance tests were adjusted to reflect the new behavior and ensure expected query counts remain controlled.
Original PR description
Records come with a simpler data structure for prefetching, namely `record._prefetch_ids`, which is an iterable of record ids to prefetch.
The tooltip for the sequence implementation setting has been updated to better explain the “no gap” option. This helps users choose the right numbering behavior and reduces confusion during configuration.
Original PR description
**Description of the issue/feature this PR addresses**:
- Task: https://www.odoo.com/web#id=1973967&action=333&active_id=1278&model=project.task&view_type=form&menu_id=4720
- Pad: https://pad.odoo.com/p/r.0f17b5b7ad4cde587899e5d409056205
**Description:**
-customers were misunderstanding the concept of "no gap" sequence implementation hence updated the tooltip of the same to make it more useful and clearer.
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThe sales reinvoicing process now uses Odoo's standard rounding-safe number handling. This reduces the risk of small calculation discrepancies when preparing reinvoices, helping invoices stay accurate and consistent.
Original PR description
Comparing float is a sensitive matter. Odoo creates specific tools to manipulate float values. This commit makes the reinvoicing flow use those tools to avoid rounding mistakes, .... Task-1962608 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
Work order screens now open in the view that best matches how users access them. Selecting a work order from a list opens the standard form view, while kanban cards continue to open the tablet-friendly view, reducing navigation friction for manufacturing teams.
Original PR description
task id: https://www.odoo.com/web#id=1911218&action=333&active_id=131&model=project.task&view_type=form&menu_id=4720 pad : https://pad.odoo.com/p/r.3a3f14115b773d27584e673ef8a84e62 Open form view instead of tablet view of work order from the list view.