Daily updates from Odoo
Monday, November 11, 2024
3 changes · 18.0
Miscellaneous changes
Previously, reordering the child menu of a newly added menu item didn't reflect immediately in the UI, and was only shown once saved. This fix ensures that new menu and its child items are updated correctly after reordering, both visually and functionally, without requiring a save action. The `addMenu` function now adds new menu item to the state before updating the internal map. The internal map is then updated with a reference to the state.This ensures that changes to the menu are immedi
Original PR description
Previously, reordering the child menu of a newly added menu item didn't reflect immediately in the UI, and was only shown once saved. This fix ensures that new menu and its child items are updated correctly after reordering, both visually and functionally, without requiring a save action. The `addMenu` function now adds new menu item to the state before updating the internal map. The internal map is then updated with a reference to the state.This ensures that changes to the menu are immediately reflected in the UI, as the internal map have reference to the updated state. task-3969045 Forward-Port-Of: odoo/odoo#185978 Forward-Port-Of: odoo/odoo#180180
Steps to reproduce: 1. Invoicing -> Customers -> Payments 2. Create new entry with no customer 3. Post the entry 4. Print the receipt `Marc Demo` Appears as customer task-4182618 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 Forward-Port-Of: odoo/odoo#186739
Original PR description
Steps to reproduce: 1. Invoicing -> Customers -> Payments 2. Create new entry with no customer 3. Post the entry 4. Print the receipt `Marc Demo` Appears as customer task-4182618 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 Forward-Port-Of: odoo/odoo#186739
**Version:** - 17.0 **Steps to reproduce:** 1. In the Sign app, send a request for a signature. 2. Complete the signature and submit the request. 3. Observe the completion certificate that is generated. **Issue:** The log_date in the completion certificate report is displayed based on the user's timezone, causing inconsistencies. **Solution:** replaced `t-field` with `t-out` to retain the log_date in UTC, ensuring consistency regardless of the user's time zone. task-4014378
Original PR description
**Version:** - 17.0 **Steps to reproduce:** 1. In the Sign app, send a request for a signature. 2. Complete the signature and submit the request. 3. Observe the completion certificate that is generated. **Issue:** The log_date in the completion certificate report is displayed based on the user's timezone, causing inconsistencies. **Solution:** replaced `t-field` with `t-out` to retain the log_date in UTC, ensuring consistency regardless of the user's time zone. task-4014378 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/enterprise#66565