Thursday, November 21, 2024
6 changes · master
Enhancements to existing features
The website now avoids an unnecessary database update when someone visits or logs in for the first time. This small performance improvement reduces extra processing during visitor creation without changing the user experience.
Original PR description
This PR eliminates the redundant query for first-time visitors by ensuring that last_connection_datetime is already set during the visitor record creation. As a result, calling _update_visitor_last_visit immediately after creation is no longer necessary. task-2761273
This update improves an internal web testing tool so teams can ignore selected network calls when reviewing automated test steps. It helps make tests clearer and easier to maintain without changing the product experience for end users.
Original PR description
This commit extends the functionality of `stepAllNetworkCalls` by allowing specific network calls to be excluded from the steps. Related Ent PR: https://github.com/odoo/enterprise/pull/73896 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adds automated checks to make sure customer and internal notes on point of sale orders keep working as expected. It helps reduce the risk of regressions in checkout and restaurant workflows without changing the user experience.
Original PR description
Add new steps in existing tour to test the customer & internal notes on order. task-ids: 4247230, 4167563 enterprise PR : https://github.com/odoo/enterprise/pull/73651 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Project dashboard update views no longer include placeholder sample data that was hidden and offered little value. This keeps the interface cleaner and reduces unnecessary background content without changing core project workflows.
Original PR description
This commit removes the sample data in project update views since the information is hidden by the no content helper and does not really provide a lot of information. task-4294911
The point of sale restaurant preparation flow now includes added automated checks for customer and internal notes on orders. This helps ensure note information is correctly handled and reduces the risk of regressions in restaurant operations.
Original PR description
Add new steps in existing tour to test the customer & internal notes on order. task-ids: 4247230, 4167563 community PR : https://github.com/odoo/odoo/pull/186922
Helpdesk ticket views now show tickets without an assigned user under “Unassigned” instead of “None” when grouped by assignee. This makes ticket lists, kanban boards, and reports easier to understand and aligns the wording with project tasks.
Original PR description
When grouping tickets by assignees, let's rename the group of unassigned tickets to 'Unassigned' instead of 'None'. Like it is the case for tasks. task-4319577