Thursday, September 5, 2024
6 changes · master
Resolved issues and error corrections
This fixes an automated website test that verifies backend menu navigation goes to the intended child page instead of a configured home action. The change keeps internal quality checks reliable after a previous interface update changed the page marker used by the test.
Original PR description
Commit [1] introduced a test that checks if, when a Home Action is set, clicking on the menu element of the "backend" menu in the website frontend will properly redirect to the menu's child action, and not to the Home Action. It did so by checking whether we land on the "Apps" action instead of the settings action and it checked it using a CSS class used inside that kanban view. However, commit [2] changed that Kanban view, removing that class. This commit fixes this by changing the class back to something that is used inside that kanban view. [1]: https://github.com/odoo/odoo/commit/3fec4bb44829f22ed8466772613b44b1a3e57f76 [2]: https://github.com/odoo/odoo/commit/8ec9db10321b924c0154a5015bacb9b63c5740c1 runbot-74690
This update fixes wording mistakes in warehouse incoming, outgoing, and manufacturing step descriptions. It makes the labels clearer and more accurate for users configuring inventory and manufacturing flows.
Original PR description
Follow-up of #172457 Updates the wording of the Incoming/Outgoing Shipments & Manufacturing steps. Before:  After:  --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix ensures date and datetime fields in kanban views follow the setting that hides the time portion. Users will now see cleaner date-only values when configured, avoiding confusing or unwanted time details.
Original PR description
Before this commit, the datetime field used the formatDatetime function from /core/l10n/dates instead of the field formatter. The latter is the one implementing the showTime option which basically redirects to formatDate when set to false. As a consequence, the time was displayed in kanban views for fields with widget="datetime" or widget="daterange", even if the option was set to false. This issue has been introduced by [1]. [1] odoo/odoo#177747 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
Thread notification messages, such as pinned message notices or call start alerts, now appear smaller and less distracting. This helps users focus on regular conversation content while still keeping system updates visible.
Original PR description
Before this commit, the notification message in a thread such as when pinning a new message or starting a call were too big, which makes them too distracting compared to messages. This commit makes them smaller. Before <img width="512" alt="Screenshot 2024-09-05 at 17 06 17" src="https://github.com/user-attachments/assets/d1fed1e1-6bb8-48a1-a374-4c993b4201a5"> After <img width="509" alt="Screenshot 2024-09-05 at 17 03 56" src="https://github.com/user-attachments/assets/1093f616-56b5-4499-a51c-649f20e17f71">
The delivery map view now shows only transfers that belong to the selected batch. This prevents unrelated deliveries from appearing, making route planning and batch handling clearer for users.
This update corrects several automated tests so they check the right empty values and do not overlook expected information. It helps reduce the risk of undetected issues across accounting, stock, localization, quality, and field service workflows without changing day-to-day user behavior.