feat: add calc vat into product (will be calc in quotation)

This commit is contained in:
Methapon Metanipat 2024-10-16 16:22:45 +07:00
parent 08254d1b9f
commit 6c10c82fcc
5 changed files with 27 additions and 0 deletions

View file

@ -136,6 +136,7 @@ export interface WorkItems {
export interface Product {
selectedImage?: string;
calcVat: boolean;
expenseType: string;
vatIncluded: boolean;
remark: string;
@ -164,6 +165,7 @@ export interface ProductCreate {
productGroupId: string;
remark: string;
serviceCharge: number;
calcVat?: boolean;
agentPrice: number;
price: number;
process: number;
@ -181,6 +183,7 @@ export interface ProductUpdate {
serviceCharge: number;
agentPrice: number;
price: number;
calcVat?: boolean;
process: string;
detail: string;
name: string;