Friday, November 8, 2024
3 changes · saas-17.4
Resolved issues and error corrections
This change updates manufacturing tests so they no longer try to set a purchasing unit field when that field is hidden. It prevents automated test failures and supports smoother validation of manufacturing workflows without changing business functionality.
Original PR description
`uom_po_id` is invisible in the product view in 2 scenarios. the uom group is not activated or the product cannot be bought. As we are setting the default value anyway in those tests, it's better to not give a particular value to avoid error about writing into invisible field runbot error : 65999 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
A no-longer-supported test setting was removed from a maintenance scheduling test. This helps keep automated checks reliable for the maintenance app without changing what users see or do.
Original PR description
`isCheck` is no longer supported in saas-17.4, removing it previous commit introducing it: odoo/odoo@14bc358bef7f6f26f9596d4a1c1ed101f8648cbb runbot-error-107508
The Sale order list now shows Delivery Status colors that correctly reflect whether deliveries are late, due today, or on time. This makes it easier for users to quickly identify orders needing attention and aligns the display with the help text.
Original PR description
[FIX] sale_stock: correct delivery color The issue: In the Sale order list view, the help message for Delivery Status states: - Red: Late - Orange: To process today - Green: On time However, in practice, the `delivery_status` color does not reflect the delivery timing. Steps to reproduce - Enable `delivery_status` in the `sale_order` list view. https://github.com/odoo/odoo/commit/470b756297f308f7b2a81f9d45c60d6d9655c647 introduced `delivery_status`for `sale_order` with tag colors based on delivery timing. However, https://github.com/odoo/odoo/commit/ab53ea9db8dc2ab9791d9d813b727a748c5ff8c6 modified the color computation for `delivery_status` to no longer depend on delivery timing. opw-4280651