Skip to Content
Menu
This question has been flagged
2 Replies
2208 Views

Hello,

I'm using Odoo 17 Community Edition to manage a restaurant. In our workflow, waiters take orders from their phones or tablets, and the cashier finalizes the payments from another device.

The problem is that when a waiter places an order on a table from one device, that table still appears empty on the cashier's device. The cashier has to manually select and refresh the table before being able to see and process the order, which causes delays.

Is there a way to enable real-time synchronization of POS tables and orders between multiple devices, so that all active orders are immediately visible across devices — especially to the cashier?

Any help or recommended solutions would be greatly appreciated.

Thanks in advance!

Avatar
Discard
Best Answer

Hi,


Please refer to the link:

1. https://apps.odoo.com/apps/modules/16.0/pos_data_auto_sync

This Module will help you to Create Products Automatically in Multiple Running Sessions Without Reloading the Sessions … Applicable in the Case of Multiple Sessions.

2. https://apps.odoo.com/apps/modules/16.0/pos_restaurant_multi_company

“PoS Restaurant – Multi Company” by OCA, but that only adds multi-company support, not necessarily real-time session/table sync


Hope it helps.

Avatar
Discard
Best Answer

Solution Workarounds

Option 1: Polling via JavaScript (Custom Workaround)

Develop a custom module to manually sync the pos_session state using periodic API calls:
setInterval(() => {

  // Custom call to backend to fetch updated table statuses

}, 5000);

Option 2: Use Third-Party Modules

Some third-party POS modules on GitHub or Odoo apps can add partial sync features. Look for ones supporting:

  • Table syncing
  • Order status refresh
  • Multi-terminal usage in CE

Option 3: Upgrade to Odoo Enterprise

Full real-time multi-device POS sync is included in Odoo Enterprise, leveraging:

  • bus.bus framework
  • pos_restaurant advanced features
  • IoT integrations for printing and kitchen screens

Avatar
Discard
Related Posts Replies Views Activity
1
Nov 25
268
3
Oct 25
1972
2
Oct 25
1053
1
Sep 25
1676
2
Sep 25
1812