mirror of
https://github.com/dyiop/astute.git
synced 2025-04-06 21:30:20 -04:00
- customer and sales order are updated with new workflow for details - invoice has yet to be updated to the new workflow - added a settings tab and put service types and logout on there - updated homepage and nav-bar accordingly
58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { CustomerComponent } from './customer/customer.component';
|
|
import { AstuteClientService } from './services/astute-client-service';
|
|
import { AgGridModule } from 'ag-grid-angular';
|
|
import { ModalFormComponent } from './modal-form/modal-form.component';
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import {HttpClientModule} from '@angular/common/http';
|
|
import { AppRoutingModule } from './/app-routing.module';
|
|
import { NavBarComponent } from './nav-bar/nav-bar.component';
|
|
import { SalesOrderComponent } from './sales-order/sales-order.component';
|
|
import { InvoiceComponent } from './invoice/invoice.component';
|
|
import { HomepageComponent } from './homepage/homepage.component';
|
|
import { AppBoxComponent } from './app-box/app-box.component';
|
|
import { InvoiceGenComponent } from './invoice-gen/invoice-gen.component';
|
|
import { TextMaskModule } from 'angular2-text-mask';
|
|
import { LoginComponent } from './login/login.component';
|
|
import { InvoicePaymentComponent } from './invoice-payment/invoice-payment.component';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
|
import { SettingsComponent } from './settings/settings.component';
|
|
// import { ServiceTypeComponent } from './service-type/service-type.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
CustomerComponent,
|
|
ModalFormComponent,
|
|
NavBarComponent,
|
|
SalesOrderComponent,
|
|
InvoiceComponent,
|
|
HomepageComponent,
|
|
AppBoxComponent,
|
|
InvoiceGenComponent,
|
|
LoginComponent,
|
|
InvoicePaymentComponent,
|
|
SettingsComponent// ,
|
|
// ServiceTypeComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AgGridModule.withComponents([]),
|
|
NgbModule.forRoot(),
|
|
HttpClientModule,
|
|
AppRoutingModule,
|
|
TextMaskModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
ReactiveFormsModule
|
|
],
|
|
providers: [AstuteClientService],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|