fix: แก้ type Customer

This commit is contained in:
Net 2024-06-07 18:04:26 +07:00
parent 7ec7c617a2
commit 713b872fd9

View file

@ -15,6 +15,7 @@ export type Customer = {
createdAt: string;
updateBy: string | null;
updatedAt: string;
taxNo: string;
};
export type CustomerBranch = {
@ -100,6 +101,7 @@ export type CustomerUpdate = {
customerName?: string;
customerNameEN?: string;
customerBranch?: CustomerBranchCreate[];
taxNo?: string | null;
image?: File;
};