Friday, December 27, 2024
3 changes · saas-18.1
Enhancements to existing features
Restaurant staff can now pay or transfer a selected split bill directly from the Split Bill screen. This streamlines table service workflows and also prevents an error when moving floating orders to a table.
Original PR description
In this commit: ========== Two new actions are added to the Split Bill screen: - **Pay**: Redirects to the payment screen for the selected split order. - **Transfer**: Navigate to the Floor screen in transfer/merge mode, allowing the user to transfer the split order to a selected table. It also fixes the traceback when transferring floating order to the table. Task-4358352
When a cashier adds a tip after entering a payment, the existing payment line now updates to reflect the new total. This reduces checkout corrections and helps keep payments aligned with the final amount due.
Original PR description
Before when adding a tip after a payment line, the payment line wasn't adapted. Now is it. taskId: 4427889
Event registration emails will now be sent asynchronously by default, helping prevent system slowdowns or outages during high-demand events. The email queue is also triggered automatically so messages are processed with minimal delay.
Original PR description
Sending emails synchronously has the drawback of causing major unavailability issues in case of popular events. As a workaround, an asynchronous parameter was introduced in #155777. Having the emails sent synchronously by default remains a problem: the unavailability starts as soon as the users register massively, and it is impossible to access to the backend in order to change the configuration. We change the default behavior to be asynchronous, and we also make sure to trigger the Email Queue Manager. This way, the delay is reduced to the minimum. 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