This commit is contained in:
Amritanshu
2019-06-15 23:09:43 +05:30
parent 3dcf1c4c42
commit 459ab244ff
70 changed files with 2140 additions and 103 deletions

View File

@ -0,0 +1,10 @@
export class ProductGroup {
id: string;
name: string;
discountLimit: number;
isModifierCompulsory: boolean;
groupModifier: string;
isActive: boolean;
isFixture: boolean;
sortOrder: number;
}

View File

@ -0,0 +1,17 @@
import {ProductGroup} from './product-group';
import {Tax} from "./tax";
export class Product {
id: string;
code: number;
name: string;
units: string;
productGroup: ProductGroup;
tax: Tax;
price: number;
hasHappyHour: boolean;
isNotAvailable: boolean;
quantity: number;
isActive: boolean;
sortOrder: number;
}

View File

@ -0,0 +1,6 @@
export class Tax {
id: string;
name: string;
rate: number;
isFixture: boolean;
}