This commit is contained in:
2026-08-20 08:24:24 +00:00
parent 45730c4c57
commit 456393ba2e
30 changed files with 558 additions and 93 deletions
@@ -8,9 +8,29 @@ INSERT INTO `buchungen`
)
VALUES
(
{{ appsmith.store.bookingFormData.seatId }},
{{ appsmith.store.bookingFormData.title }},
{{ appsmith.store.bookingFormData.startDateTime }},
{{ appsmith.store.bookingFormData.endDateTime }},
{{ appsmith.store.bookingFormData.bookedBy }}
{{
appsmith.store.bookingFormData?.seatId ||
appsmith.store.selectedSeatId
}},
{{
appsmith.store.bookingFormData?.title ||
"Platzbuchung"
}},
{{
appsmith.store.bookingFormData?.allDay === true
? appsmith.store.bookingFormData.startDate + " 00:00:00"
: appsmith.store.bookingFormData.startDateTime
}},
{{
appsmith.store.bookingFormData?.allDay === true
? appsmith.store.bookingFormData.endDate + " 23:59:59"
: appsmith.store.bookingFormData.endDateTime
}},
{{
appsmith.store.bookingFormData?.bookedBy
}}
);