feat: add separate calc vat field

This commit is contained in:
Methapon2001 2025-01-27 11:50:16 +07:00
parent 3b60582e66
commit 8535924d53
3 changed files with 22 additions and 4 deletions

View file

@ -58,6 +58,10 @@ type ProductCreate = {
serviceCharge: number;
vatIncluded?: boolean;
calcVat?: boolean;
agentPriceVatIncluded?: boolean;
agentPriceCalcVat?: boolean;
serviceChargeVatIncluded?: boolean;
serviceChargeCalcVat?: boolean;
expenseType?: string;
selectedImage?: string;
shared?: boolean;
@ -77,6 +81,10 @@ type ProductUpdate = {
remark?: string;
vatIncluded?: boolean;
calcVat?: boolean;
agentPriceVatIncluded?: boolean;
agentPriceCalcVat?: boolean;
serviceChargeVatIncluded?: boolean;
serviceChargeCalcVat?: boolean;
expenseType?: string;
selectedImage?: string;
shared?: boolean;