From b4fc7c72022fa2e14e8eba6e240030eabaa52962 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Tue, 12 Nov 2024 09:01:38 +0700 Subject: [PATCH] refactor: edit type visa --- src/stores/employee/types.ts | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/stores/employee/types.ts b/src/stores/employee/types.ts index 4b0f6a2a..db1a5dbc 100644 --- a/src/stores/employee/types.ts +++ b/src/stores/employee/types.ts @@ -284,16 +284,20 @@ export type NewEmployeeHistory = { }; export type EmployeeVisaPayload = { - id?: string; - number: string; - type: string; - entryCount: number; - issueCountry: string; - issuePlace: string; - issueDate: Date; - expireDate: Date; + arrivalAt: string; + arrivalTMNo: string; + arrivalTM: string; mrz?: string; + entryCount: number; + issuePlace: string; + issueCountry: string; + issueDate: Date; + type: string; + expireDate: Date; remark?: string; + workerType: string; + number: string; + id?: string; }; export type EmployeePassportPayload = {