feat: add calc vat into product (will be calc in quotation)
This commit is contained in:
parent
08254d1b9f
commit
6c10c82fcc
5 changed files with 27 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue