提交一次全量代码

This commit is contained in:
andy
2026-07-09 11:59:34 +08:00
parent 855396e553
commit 9fa608f602
58 changed files with 8439 additions and 116 deletions

View File

@@ -2,6 +2,8 @@ export default {
app: {
name: 'Hotel OMS',
theme: 'Theme',
language: 'Language',
navigationAria: 'Reservation navigation',
healthUp: 'Backend connected',
healthDown: 'Backend offline',
healthChecking: 'Checking',
@@ -20,6 +22,14 @@ export default {
noData: 'No data',
endpointPending: 'Endpoint pending',
endpointMissing: 'Endpoint field pending',
all: 'All',
unknownStatus: 'Unknown status',
unknownTaskType: 'Unknown task type',
unknownTaskSubtype: 'Unknown task subtype',
unknownReadonlyReason: 'Not processable yet',
unknownActorType: 'Unknown actor',
unknownAuditAction: 'Unknown action',
unknownOperation: 'Unknown operation',
previousPage: 'Previous',
nextPage: 'Next',
pageStatus: 'Page {current} / {total}',
@@ -52,12 +62,13 @@ export default {
title: 'Order list',
subtitle: 'Review Reservation work by order',
keyword: 'Group Code / Confirmation No.',
keywordPlaceholder: 'Group code / confirmation no.',
tableTitle: 'Order data',
totalSuffix: 'orders',
viewDetail: 'View detail',
continueTask: 'Continue task',
noOpenTask: 'No open task',
endpointPending: 'The order list endpoint GET /api/reservation/orders is pending backend implementation. No fixture data is shown.',
endpointPending: 'The order list endpoint is pending backend implementation. No fixture data is shown.',
columns: {
order: 'Order',
status: 'Status',
@@ -88,6 +99,7 @@ export default {
title: 'Task list',
subtitle: 'Review Reservation work by task queue',
keyword: 'Order / email keyword',
keywordPlaceholder: 'Order no. / email keyword',
taskType: 'Task type',
tableTitle: 'Task data',
totalSuffix: 'tasks',
@@ -98,7 +110,6 @@ export default {
queueAll: 'All queue states',
queueIncluded: 'In queue',
queueExcluded: 'Not in queue',
orderStatusFilterPending: 'Order status filter is pending backend support',
viewTask: 'View task',
viewOrder: 'View order',
viewConversation: 'View email conversation',
@@ -189,4 +200,50 @@ export default {
MESSAGE_NOTIFICATION: 'Message notification',
MANUAL_REVIEW: 'Manual review',
},
taskSubtype: {
NEW_BOOKING: 'New booking',
UPDATE_BOOKING: 'Update booking',
CANCEL_BOOKING: 'Cancel booking',
RATE_CHANGE: 'Rate change',
UPDATE_STAY_DATES: 'Update stay dates',
UPDATE_ROOM_TYPE: 'Update room type',
UPDATE_FIX_CHARGE: 'Update fixed charge',
NEW_GROUP_BLOCK: 'New group block',
NEW_FIT_RESERVATION: 'New FIT reservation',
MANUAL_REVIEW: 'Manual review',
},
readonlyReason: {
PROCESSABLE: 'Processable',
PREVIOUS_TASK_NOT_FINISHED: 'Previous task is not finished',
TASK_FINISHED: 'Task finished',
TASK_READ_ONLY: 'Task is read only',
ORDER_CLOSED: 'Order closed',
QUEUE_EXCLUDED: 'Not in queue',
BLOCKED: 'Blocked',
},
actorType: {
USER: 'User',
SYSTEM: 'System',
AI: 'AI',
AGENT: 'Agent',
BACKEND: 'Backend service',
},
auditAction: {
TASK_CREATED: 'Task created',
TASK_LOADED: 'Task loaded',
TASK_CONFIRMED: 'Task confirmed',
TASK_CONFIRM: 'Task confirmed',
DRAFT_SAVED: 'Draft saved',
TASK_UPDATED: 'Task updated',
OPERA_EXECUTED: 'OPERA executed',
OPERA_RETRIED: 'OPERA retried',
MANUAL_REVIEW_CREATED: 'Manual review created',
},
operaOperation: {
CREATE_RESERVATION: 'Create reservation',
UPDATE_RESERVATION: 'Update reservation',
CANCEL_RESERVATION: 'Cancel reservation',
UPDATE_ROOMING_LIST: 'Update rooming list',
ADD_TRACE_NOTE: 'Add trace note',
},
}