fix: missing field
This commit is contained in:
parent
86888ed512
commit
46c79d50ce
4 changed files with 15 additions and 3 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -68,6 +68,7 @@ export type CustomerCreate = {
|
|||
}
|
||||
) & {
|
||||
customerId: string;
|
||||
customerName: string;
|
||||
|
||||
telephoneNo: string;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue