123
This commit is contained in:
@@ -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
|
||||
}}
|
||||
);
|
||||
Reference in New Issue
Block a user