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