Example
Complete procedure: the default live booking machine: party size, slot, resource, price, pay, persist, notify.
Goal: Mirror what most tenants already run — not every optional step.
Typical step order
- Introducir el número de personas (
PersonCountInput) (or Formulario de entrada (RequireInput) custom counts + Número de personas a través de parámetros (PersonCountFromParameters)) - Selector de tiempo - Calendario horizontal (
TimeFrameViaTimeLineCalendar) (or calendar / on-date variants) - Selección manual de asientos (
ManualSelectPlanElements) or Selección automática de elementos del plan (AutoSelectPlanElements) (+ Uso de cuotas (UseQuotas) when needed) - Artículos de reserva anticipada (
PreReserveSelectedElements) — hold the place while the guest pays (skip only if you accept collision risk) - Agregar posición (
AddPositionToOrder) (quantities usually FromOtherParameter) and/or Ordenar del menú (OrderFromMenu) - Formulario de entrada (
RequireInput) / Dirección de entrega y facturación (DeliverAndBillingAddressInput) for contact - Pago directo en línea (
PayNow) - Crear una reserva (
SyncReservationEntry) → Crear un pedido (SyncOrderEntry) → Crear una factura (SyncInvoiceEntry) — without these, Today / orders / invoices stay empty - Informar a los huéspedes por correo electrónico (
InformGuestViaEmail) → Informar a los operadores (InformOperator) (optional Menú de reordenamiento (ReOrderMenu) / Procedimiento de bloqueo (TextBlocker))
Chooser
| Need | Prefer |
|---|---|
| Guest picks table/attraction | Selección manual de asientos (ManualSelectPlanElements) |
| System assigns capacity | Selección automática de elementos del plan (AutoSelectPlanElements) |
| Hold seat during payment | Artículos de reserva anticipada (PreReserveSelectedElements) |
| Price from headcount / custom ints | Agregar posición (AddPositionToOrder) |
| Guest browses SKUs | Ordenar del menú (OrderFromMenu) |
See also booking-with-payment (payment focus) and API “Build a booking flow”.