Leisure & play

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

  1. 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))
  2. Selector de tiempo - Calendario horizontal (TimeFrameViaTimeLineCalendar) (or calendar / on-date variants)
  3. Selección manual de asientos (ManualSelectPlanElements) or Selección automática de elementos del plan (AutoSelectPlanElements) (+ Uso de cuotas (UseQuotas) when needed)
  4. Artículos de reserva anticipada (PreReserveSelectedElements) — hold the place while the guest pays (skip only if you accept collision risk)
  5. Agregar posición (AddPositionToOrder) (quantities usually FromOtherParameter) and/or Ordenar del menú (OrderFromMenu)
  6. Formulario de entrada (RequireInput) / Dirección de entrega y facturación (DeliverAndBillingAddressInput) for contact
  7. Pago directo en línea (PayNow)
  8. Crear una reserva (SyncReservationEntry) → Crear un pedido (SyncOrderEntry) → Crear una factura (SyncInvoiceEntry) — without these, Today / orders / invoices stay empty
  9. 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”.