Bills initially working just as proof of concept

ng linted
modifier categories list is better at displaying data sanely now
This commit is contained in:
Amritanshu
2019-07-11 12:17:41 +05:30
parent d69ab0063a
commit 4513e8b263
74 changed files with 599 additions and 235 deletions

View File

@ -1,4 +1,4 @@
import {Section} from "./section";
import {Section} from './section';
export class Device {
id: string;

View File

@ -1,4 +1,4 @@
import {Product} from "./product";
import {Product} from './product';
export class MenuCategory {
id: string;

View File

@ -1,5 +1,5 @@
import {MenuCategory} from "./menu-category";
import {Modifier} from "./modifier";
import {MenuCategory} from './menu-category';
import {Modifier} from './modifier';
export class ModifierCategory {
id: string;

View File

@ -1,4 +1,4 @@
import {ModifierCategory} from "./modifier-category";
import {ModifierCategory} from './modifier-category';
export class Modifier {
id: string;
@ -7,4 +7,5 @@ export class Modifier {
price: number;
modifierCategory: ModifierCategory;
isActive: boolean;
billPrice?: number;
}

View File

@ -1,5 +1,5 @@
import {MenuCategory} from './menu-category';
import {SaleCategory} from "./sale-category";
import {SaleCategory} from './sale-category';
export class Product {
id: string;

View File

@ -1,4 +1,4 @@
import {Tax} from "./tax";
import {Tax} from './tax';
export class SaleCategory {
id: string;

View File

@ -1,5 +1,5 @@
import {MenuCategory} from "./menu-category";
import {Printer} from "./printer";
import {MenuCategory} from './menu-category';
import {Printer} from './printer';
export class SectionPrinter {
id: string;

View File

@ -1,4 +1,4 @@
import {Section} from "./section";
import {Section} from './section';
export class Table {
id: string;