接入订单列表V4继续处理入口

This commit is contained in:
andy
2026-07-20 11:15:19 +07:00
parent dfafd2c095
commit d7b24cbef7
8 changed files with 245 additions and 13 deletions

View File

@@ -58,6 +58,9 @@ export interface ReservationOrderListFilters {
page_size?: number
}
export type ReservationV4OrderListActionType = 'CONFIRM' | 'REVIEW' | 'NONE'
export type ReservationV4OrderListActionStatus = 'PENDING_CONFIRM' | 'REVIEW_REQUIRED'
export interface ReservationOrderListItem {
order_id: string
hotel_id: string
@@ -69,6 +72,11 @@ export interface ReservationOrderListItem {
display_name: string
open_task_count: number | null
next_processable_task_id: string | null
next_v4_order_task_id?: string | null
next_v4_action_card_id?: string | null
next_v4_action_type?: ReservationV4OrderListActionType | null
next_v4_action_status?: ReservationV4OrderListActionStatus | null
v4_open_order_task_count?: number | null
created_at: string | null
updated_at: string | null
}