Friday, April 12, 2024
4 changes · master
Enhancements to existing features
This update expands automated checks around recurring planning shifts to better cover employee contracts, holidays, and working hours. It also simplifies the related test setup, helping reduce future maintenance work and lowering the risk of scheduling regressions.
Original PR description
…rency tests This commit extends the tests performed for the recurrent shift feature of the planning app. This features was recently improved to take into account contracts, holidays and work hours when generating shifts. The tests introduced in this commit are ensuring that these new functionalities are performing as they should. Also in this commit, we are performing a small refactoring of the tests in the planning, planning_contract, planning_holidays modules. Some things were redundant and there was a lot of code duplication which now has been reduced. task-3780480
Point of Sale now uses the standard customer edit form instead of custom screens in localized and settlement-related flows. This reduces maintenance overhead and gives users a more consistent experience when editing customer details.
Original PR description
In the corresponding comunity commit we replace the custom form view for editing `res.partner`records with the default `view` component from `web`. This allows us to remove a very large quantity of code, while providing for a smoother and more uniform user experience. In this commit we remove the overrides that we no longer need. https://github.com/odoo/odoo/pull/157881 Task: 3816230
Grid views now show more rows on low-resolution screens by reducing cell height, while keeping larger touch targets on mobile. Column highlighting has been removed and cell highlighting softened to make the view less visually distracting.
Original PR description
We were not seeing enough data on a low-res screen and the column highlight was too distracting (fp request). This PR reduces the cell height but keeps it big on mobile to ease finger selection. The column highlight is removed. Since we do not highlight the column anymore and the cell height is smaller. It also removes the cell highlight on add a line and the dates, thus we have to adapt the tests accordingly. The cell highlight is also slightly less gray. task-3751591 | Before | | :--: | | | | After | |  |
Adds automated guided tests to verify that users can create sales order lines directly from a helpdesk ticket. This helps protect the support-to-sales workflow from regressions and improves confidence in future updates.
Original PR description
…he-fly flow This commit introduces interactive tests (tours) to verify the on-the-fly creation of Sale Order lines within Ticket form view. task-3628571