Added booking approvals
This commit is contained in:
@@ -262,6 +262,26 @@ format_london_time() {
|
||||
TZ=Europe/London date -d "$DATE_PART $TIME_PART" +"%Y-%m-%dT%H:%M:%S%:z"
|
||||
}
|
||||
|
||||
# --- TODAY BOOKINGS (4 bookings) ---
|
||||
echo ""
|
||||
echo "Creating 4 bookings for today..."
|
||||
|
||||
TODAY_DATE=$(TZ=Europe/London date +%Y-%m-%d)
|
||||
|
||||
create_booking "$USER_TOKEN" "$(format_london_time "$TODAY_DATE" "09:30:00")" \
|
||||
"[\"${SERVICE_IDS[0]}\"]" "" "Today - Classic Manicure 09:30"
|
||||
|
||||
create_booking "$USER_TOKEN" "$(format_london_time "$TODAY_DATE" "11:00:00")" \
|
||||
"[\"${SERVICE_IDS[1]}\"]" "" "Today - Gel Manicure 11:00"
|
||||
|
||||
create_booking "$USER_TOKEN" "$(format_london_time "$TODAY_DATE" "13:30:00")" \
|
||||
"[\"${SERVICE_IDS[3]}\"]" "Lunch break slot" "Today - Express Mani & Pedi 13:30"
|
||||
|
||||
create_booking "$USER_TOKEN" "$(format_london_time "$TODAY_DATE" "16:00:00")" \
|
||||
"[\"${SERVICE_IDS[0]}\",\"${SERVICE_IDS[5]}\"]" \
|
||||
"End of day treat" "Today - Classic + Nail Art 16:00"
|
||||
|
||||
|
||||
# --- PAST BOOKINGS (35 bookings from October-November 2025) ---
|
||||
echo ""
|
||||
echo "Creating 35 past bookings..."
|
||||
|
||||
Reference in New Issue
Block a user