Sunday, November 26, 2023
4 changes · master
Miscellaneous changes
- Issue: When user add sub task then first field is focused. - Fixed: In this commit, we have made the title the default focus so that the user does not have to click manually and time will also be saved. - Steps - Install project app - Active Task Dependencies - Create task and add subtask task-3471102 Forward-Port-Of: odoo/odoo#143251 Forward-Port-Of: odoo/odoo#136483
Original PR description
- Issue:
When user add sub task then first field is focused.
- Fixed:
In this commit, we have made the title the default focus so that the user does not
have to click manually and time will also be saved.
- Steps
- Install project app
- Active Task Dependencies
- Create task and add subtask
task-3471102
Forward-Port-Of: odoo/odoo#143251
Forward-Port-Of: odoo/odoo#1364831. Revert some changes introduced in commit https://github.com/odoo/odoo/pull/120690/commits/31e1c768f4b254c618c63d44f063953855e7e56b 2. After the revert of the o_editable as marker, We changed the way we allow edition in the existing banner command. Task-2782426 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#143362
Original PR description
1. Revert some changes introduced in commit https://github.com/odoo/odoo/pull/120690/commits/31e1c768f4b254c618c63d44f063953855e7e56b 2. After the revert of the o_editable as marker, We changed the way we allow edition in the existing banner command. Task-2782426 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#143362
with the changes to the query builder query now changes the name of `vat` in l10n_au to `abn` which causes the current state in a keyError TB. PR where the change was introduced: https://github.com/odoo/enterprise/commit/86b2ecae3a92d24d0af2322dd9599e975c232047 opw-3574999 Forward-Port-Of: odoo/enterprise#50790
Original PR description
with the changes to the query builder query now changes the name of `vat` in l10n_au to `abn` which causes the current state in a keyError TB. PR where the change was introduced: https://github.com/odoo/enterprise/commit/86b2ecae3a92d24d0af2322dd9599e975c232047 opw-3574999 Forward-Port-Of: odoo/enterprise#50790
In field service's portal task view, a display error would occur with the "Time & Material" section ; it would get displayed next to the "Timesheets" section which is wrong, as it should be displayed on top of it. The issue is that with the rework of portal's front in 17.0, the xpath expression that supposedly selects the "Timesheets" section now selects the "Timesheets" navigation menu, and makes the "Time & Material" section display right on top of it. To fix this, the xpath expression was
Original PR description
In field service's portal task view, a display error would occur with the "Time & Material" section ; it would get displayed next to the "Timesheets" section which is wrong, as it should be displayed on top of it. The issue is that with the rework of portal's front in 17.0, the xpath expression that supposedly selects the "Timesheets" section now selects the "Timesheets" navigation menu, and makes the "Time & Material" section display right on top of it. To fix this, the xpath expression was changed to select the right element. task-3609165 Forward-Port-Of: odoo/enterprise#51374