Tuesday, July 18, 2023
2 changes · master
New functionality added to Odoo
Knowledge users can now use a new print option to print articles or save them as PDFs through their browser. This gives teams an easier way to share or archive articles, while keeping better article formatting for printed output.
Original PR description
This commit simply adds a shortcut to the browser "print" feature that will allow end users to export their article to PDF (or print it). We are not using "wkhtmltopdf" as it does not support emojis. (And the investigation on that issue showed that adding the support for that would be very complicated). Note that exporting with the browser is not as good as we do not control everything, for example the browser will add the URL of the page to the printed document. It is however possible to customize the export to some extent, if the end user knows the various options. Task-2892055
Restaurants can now let customers reserve tables through the website, with bookings appearing directly in the point of sale. New and updated reservations are shared instantly so staff can see table bookings in real time and manage seating more efficiently.
Original PR description
*:appointment,pos_preparation_display,pos_restaurant_appointment,website_appointment This module adds the possibility to book a table online from the website. The booking is then visible in the POS. When a new table is created in the PoS, a linked resource is created in the appointment application, which allows the user to add these resources to appointment_types, authorising visitors to reserve tables online. In pos_config, you need to choose an appointment_type via which the appointments will be retrieved A websocket has been integrated to retrieve new bookings instantly from the PoS, which are displayed directly on the tables. When an event (appointment) is created, only that new event is sent thru the bus as notification. Some improvements have also been made to the pos_preparation_display module on the websocket part. taskId: 3067577 community: https://github.com/odoo/odoo/pull/124850