fix: แก้ personName
This commit is contained in:
parent
8013c553ea
commit
0cf2af9754
2 changed files with 13 additions and 0 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue