mirror of
https://github.com/marcogll/AnchorOS.git
synced 2026-03-15 14:24:27 +00:00
feat: Implementar HQ Dashboard
- Crear página principal de HQ Dashboard - Mostrar calendario diario con reservas - Listado de reservas con información detallada - Vista de disponibilidad de staff - PATCH endpoint para actualizar estado de reservas - Integrar con API de disponibilidad y reservas
This commit is contained in:
53
app/api/bookings/[id]/route.ts
Normal file
53
app/api/bookings/[id]/route.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { NextRequest, NextResponse } from 'next/server'
|
||||
import { supabaseAdmin } from '@/lib/supabase/client'
|
||||
|
||||
export async function PATCH(
|
||||
request: NextRequest,
|
||||
{ params }: { params: { id: string } }
|
||||
) {
|
||||
try {
|
||||
const bookingId = params.id
|
||||
const body = await request.json()
|
||||
const { status } = body
|
||||
|
||||
if (!status) {
|
||||
return NextResponse.json(
|
||||
{ error: 'Missing required field: status' },
|
||||
{ status: 400 }
|
||||
)
|
||||
}
|
||||
|
||||
const validStatuses = ['pending', 'confirmed', 'completed', 'cancelled', 'no_show']
|
||||
if (!validStatuses.includes(status)) {
|
||||
return NextResponse.json(
|
||||
{ error: `Invalid status. Must be one of: ${validStatuses.join(', ')}` },
|
||||
{ status: 400 }
|
||||
)
|
||||
}
|
||||
|
||||
const { data: booking, error: updateError } = await supabaseAdmin
|
||||
.from('bookings')
|
||||
.update({ status })
|
||||
.eq('id', bookingId)
|
||||
.select()
|
||||
.single()
|
||||
|
||||
if (updateError || !booking) {
|
||||
return NextResponse.json(
|
||||
{ error: updateError?.message || 'Failed to update booking' },
|
||||
{ status: 400 }
|
||||
)
|
||||
}
|
||||
|
||||
return NextResponse.json({
|
||||
success: true,
|
||||
booking
|
||||
})
|
||||
} catch (error) {
|
||||
console.error('Update booking error:', error)
|
||||
return NextResponse.json(
|
||||
{ error: 'Internal server error' },
|
||||
{ status: 500 }
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user