fix: missing field
This commit is contained in:
parent
c755650fed
commit
c38a1ce0c0
4 changed files with 17 additions and 2 deletions
|
|
@ -69,6 +69,8 @@ type ProductCreate = {
|
|||
serviceCharge: number;
|
||||
vatIncluded?: boolean;
|
||||
expenseType?: string;
|
||||
selectedImage?: string;
|
||||
shared?: boolean;
|
||||
productGroupId: string;
|
||||
remark?: string;
|
||||
};
|
||||
|
|
@ -84,6 +86,8 @@ type ProductUpdate = {
|
|||
remark?: string;
|
||||
vatIncluded?: boolean;
|
||||
expenseType?: string;
|
||||
selectedImage?: string;
|
||||
shared?: boolean;
|
||||
productGroupId?: string;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -58,6 +58,8 @@ type ServiceCreate = {
|
|||
productId: string[];
|
||||
attributes?: { [key: string]: any };
|
||||
}[];
|
||||
shared?: boolean;
|
||||
selectedImage?: string;
|
||||
productGroupId: string;
|
||||
};
|
||||
|
||||
|
|
@ -73,6 +75,8 @@ type ServiceUpdate = {
|
|||
productId: string[];
|
||||
attributes?: { [key: string]: any };
|
||||
}[];
|
||||
shared?: boolean;
|
||||
selectedImage?: string;
|
||||
productGroupId?: string;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue