Freizeit & Spiel

Beispiel

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. Personenzahleingabe (PersonCountInput) (or Eingabeformular (RequireInput) custom counts + Personenanzahl über Parameter (PersonCountFromParameters))
  2. Zeitauswahl - Horizontaler Kalendar (TimeFrameViaTimeLineCalendar) (or calendar / on-date variants)
  3. Manuelle Platzauswahl (ManualSelectPlanElements) or Automatisches Auswählen von Planelementen (AutoSelectPlanElements) (+ Kontingente verwenden (UseQuotas) when needed)
  4. Elemente vor-reservieren (PreReserveSelectedElements) — hold the place while the guest pays (skip only if you accept collision risk)
  5. Position hinzufügen (AddPositionToOrder) (quantities usually FromOtherParameter) and/or Von Menü bestellen (OrderFromMenu)
  6. Eingabeformular (RequireInput) / Liefer- und Rechnungsadresse (DeliverAndBillingAddressInput) for contact
  7. Online-Direktzahlung (PayNow)
  8. Reservierung erstellen (SyncReservationEntry) → Bestellung erstellen (SyncOrderEntry) → Rechnung erstellen (SyncInvoiceEntry) — without these, Today / orders / invoices stay empty
  9. Gast via E-Mail informieren (InformGuestViaEmail) → Betreiber informieren (InformOperator) (optional Nachbestellungsmenü (ReOrderMenu) / Prozedur blockieren (TextBlocker))

Chooser

Need Prefer
Guest picks table/attraction Manuelle Platzauswahl (ManualSelectPlanElements)
System assigns capacity Automatisches Auswählen von Planelementen (AutoSelectPlanElements)
Hold seat during payment Elemente vor-reservieren (PreReserveSelectedElements)
Price from headcount / custom ints Position hinzufügen (AddPositionToOrder)
Guest browses SKUs Von Menü bestellen (OrderFromMenu)

See also booking-with-payment (payment focus) and API “Build a booking flow”.