Wednesday, September 20, 2023
2 changes · master
Code cleanup and technical improvements
The Point of Sale ticket screen now uses the standard double-click behavior to reopen orders for editing. This reduces custom handling behind the scenes, making the feature easier to maintain and less prone to errors without changing the user workflow.
Original PR description
In the ticket screen the user has the option to double click on an
order in order to continue editing it. This functionality is implemented
using custom code for handling the double click. This is cumbersome and
error prone.
In this PR we replace the custom double click logic with the default
`t-on-dblclick` from `owl`.
Task: 3512282
---
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prSpreadsheet dialogs were simplified by using standard confirmation prompts where possible and removing unused dialog behavior. This also fixes an issue where cancelling a list reinsertion could cause an error, improving reliability for spreadsheet users.