Wednesday, September 27, 2023
2 changes · master
New functionality added to Odoo
Adds a new point of sale feature that lets restaurants show customers the status of current orders, filtered by preparation stage. It also adds reusable Odoo logo display support for the customer screen, helping provide a branded and clearer guest experience.
Original PR description
We introduce a new module that enables restaurants to show their customers a display with all the current orders, filtered by their preparation state. In order to know the preparation state of the orders, we rely on the information provided by the pos_preparation_display module. In this commit we create a new function on the `pos.order` model that returns a tracking number for a certain order. This tracking number will be used by the `pos_order_status_customer_screen`. Task: 3514516 We also create a generic OdooLogo component that renders the odoo logo in svg format. This component has the prop `monochrome` that dictates which type of odoo logo will be rendered. task: 3520164 https://github.com/odoo/enterprise/pull/47668 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
A new restaurant display lets customers see current orders grouped by preparation status. This helps staff keep customers informed using the same preparation tracking data already used by the kitchen display.
Original PR description
In this Pr we introduce a new module that enables restaurants to show their customers a display with all the current orders, filtered by their preparation state. In order to know the preparation state of the orders, we rely on the information provided by the `pos_preparation_display` module. Task: 3514516 https://github.com/odoo/odoo/pull/136065