Hi! I need to allow the customers to join in tables just reserveted, if it is not reserved up to the max limit.
For example: The tables have max capacity up to 6 guests/customers. I want different quests can join to the same table up to the max capacity automatically.

Is possible?

For the moment with the reservation component not works, and 1 customer/guest occupies all available seats.

  • rosslevine replied to this.
  • No thats the logic you would need to leave in place.

    You would write something at the end of the filterNextBookableTable() function to check if result is empty and if so to check back through to find one with capacity if it exists.

    gilmur75 Good Morning.

    You wish for two different customers to be allocated onto the one table?

    • I don’t think the function is available for this? I could be wrong. But one of the codebase will verify

      This is not currently possible - feel free to work on a PR if you want to see it happen

      rosslevine Yes i want group on the same table differente account/guest, up to the max capacity and when the capacity is achieved move for the first table, move the next table avaible.

        gilmur75 As Ryan mentioned above, this is not possible. Also I think from a customer porspective, I would not want to eat my food with a stranger sitting to the next seat with me in a restruant.

        You can raise a Pull Request and code this function into the code base if you wish.

          gilmur75 a better approach might be to let the current logic stand, but where there are no tables left then scan through and see what capacity is available on those that are booked

            No thats the logic you would need to leave in place.

            You would write something at the end of the filterNextBookableTable() function to check if result is empty and if so to check back through to find one with capacity if it exists.