fix: type

This commit is contained in:
Methapon Metanipat 2024-09-03 14:07:30 +07:00
parent 4b08d12845
commit d970486348

View file

@ -59,7 +59,7 @@ type ProductCreate = {
agentPrice: number;
serviceCharge: number;
vatIncluded?: boolean;
expenseType?: number;
expenseType?: string;
productGroupId: string;
remark?: string;
@ -76,7 +76,7 @@ type ProductUpdate = {
serviceCharge?: number;
remark?: string;
vatIncluded?: boolean;
expenseType?: number;
expenseType?: string;
productGroupId?: string;
registeredBranchId?: string;