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; };