From 12a5f618bb7a67b6e9ff25242e51256573873bae Mon Sep 17 00:00:00 2001 From: puriphatt Date: Tue, 11 Jun 2024 12:27:15 +0000 Subject: [PATCH] fix: type --- src/stores/customer/types.ts | 1 + src/stores/employee/types.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/stores/customer/types.ts b/src/stores/customer/types.ts index c13257e9..2465016b 100644 --- a/src/stores/customer/types.ts +++ b/src/stores/customer/types.ts @@ -24,6 +24,7 @@ export type CustomerBranch = { legalPersonNo: string; name: string; nameEN: string; + code: string; customerId: string; taxNo: string; registerName: string; diff --git a/src/stores/employee/types.ts b/src/stores/employee/types.ts index c1907069..2c850505 100644 --- a/src/stores/employee/types.ts +++ b/src/stores/employee/types.ts @@ -200,7 +200,7 @@ export type EmployeeOther = { }; export type EmployeeOtherCreate = { - birthPlace?: string; + motherBirthPlace?: string; motherLastNameEN?: string; motherFirstNameEN?: string; fatherLastNameEN?: string; @@ -209,5 +209,6 @@ export type EmployeeOtherCreate = { motherFirstName?: string; fatherLastName?: string; fatherFirstName?: string; + fatherBirthPlace?: string; citizenId?: string; };