feat: update aftersales labels and service type options

This commit is contained in:
Frudrax Cheng
2026-05-28 09:12:01 +08:00
parent 0f6d4a5f07
commit 2262b39d04
5 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -162,7 +162,7 @@ export interface EmployeeSerialResponse {
pagination: EmployeeSerialPagination;
}
export type AftersalesServiceType = 'software' | 'hardware' | 'other';
export type AftersalesServiceType = 'software' | 'hardware' | 'maintenance';
export type AftersalesWorkOrderStatus = 'created' | 'pending_confirmation' | 'closed' | 'rejected';
export type AftersalesAuthorizationStatus = 'pending' | 'authorized' | 'unauthorized';
@@ -245,4 +245,4 @@ export interface CustomerConfirmRequest {
action: 'authorize' | 'reject';
signature?: string;
rejectReason?: string;
}
}