67 lines
2.2 KiB
TypeScript
67 lines
2.2 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
|
import { MatBadgeModule } from '@angular/material/badge';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
|
import { MatCardModule } from '@angular/material/card';
|
|
import { MatChipsModule } from '@angular/material/chips';
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
import { MatDividerModule } from '@angular/material/divider';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { MatInputModule } from '@angular/material/input';
|
|
import { MatRippleModule } from '@angular/material';
|
|
import { MatTableModule } from '@angular/material/table';
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
|
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
|
|
import { SharedModule } from "../shared/shared.module";
|
|
import { SalesRoutingModule } from './sales-routing.module';
|
|
import { RunningTablesComponent } from './running-tables/running-tables.component';
|
|
import { MenuCategoriesComponent } from './menu-categories/menu-categories.component';
|
|
import { ProductsComponent } from './products/products.component';
|
|
import { ModifiersComponent } from './modifiers/modifiers.component';
|
|
import { BillsComponent } from './bills/bills.component';
|
|
import { SalesHomeComponent } from './home/sales-home.component';
|
|
import { BillService } from './bill.service';
|
|
import { QuantityComponent } from './quantity/quantity.component';
|
|
|
|
@NgModule({
|
|
providers: [
|
|
BillService
|
|
],
|
|
declarations: [
|
|
RunningTablesComponent,
|
|
MenuCategoriesComponent,
|
|
ProductsComponent,
|
|
ModifiersComponent,
|
|
BillsComponent,
|
|
SalesHomeComponent,
|
|
QuantityComponent
|
|
],
|
|
imports: [
|
|
CommonModule,
|
|
FlexLayoutModule,
|
|
ReactiveFormsModule,
|
|
MatBadgeModule,
|
|
MatButtonModule,
|
|
MatButtonToggleModule,
|
|
MatCardModule,
|
|
MatChipsModule,
|
|
MatDialogModule,
|
|
MatDividerModule,
|
|
MatIconModule,
|
|
MatInputModule,
|
|
MatRippleModule,
|
|
MatTableModule,
|
|
MatTabsModule,
|
|
SharedModule,
|
|
SalesRoutingModule
|
|
],
|
|
entryComponents: [
|
|
ModifiersComponent,
|
|
QuantityComponent
|
|
]
|
|
})
|
|
export class SalesModule { }
|