fix: แก้ personName

This commit is contained in:
Net 2024-06-18 10:44:07 +07:00
parent 8013c553ea
commit 0cf2af9754
2 changed files with 13 additions and 0 deletions

View file

@ -16,10 +16,12 @@ export type Customer = {
updateBy: string | null;
updatedAt: string;
taxNo: string;
personName: string;
};
export type CustomerBranch = {
id: string;
branchNo: number;
legalPersonNo: string;
name: string;
@ -97,6 +99,7 @@ export type CustomerCreate = {
customerType: CustomerType;
status?: Status;
image: File | null;
personName: string;
};
export type CustomerUpdate = {
@ -107,6 +110,7 @@ export type CustomerUpdate = {
customerBranch?: (CustomerBranchCreate & { id?: string })[];
taxNo?: string | null;
image?: File;
personName: string;
};
export type BranchAttachmentCreate = {