fix: missing field

This commit is contained in:
Methapon Metanipat 2024-09-16 13:31:47 +07:00
parent 86888ed512
commit 46c79d50ce
4 changed files with 15 additions and 3 deletions

View file

@ -76,6 +76,7 @@ export type CustomerBranchCreate = (
}
) & {
customerId: string;
customerName: string;
telephoneNo: string;
@ -129,6 +130,7 @@ export type CustomerBranchUpdate = (
}
) & {
customerId?: string;
customerName?: string;
telephoneNo: string;

View file

@ -68,6 +68,7 @@ export type CustomerCreate = {
}
) & {
customerId: string;
customerName: string;
telephoneNo: string;