Fixed suppliers
This commit is contained in:
parent
af04adeb31
commit
6b1e474916
4 changed files with 5 additions and 5 deletions
|
@ -43,7 +43,6 @@ import { DashboardModule } from './dashboard/dashboard.module';
|
||||||
|
|
||||||
import { ChartsModule } from 'ng2-charts';
|
import { ChartsModule } from 'ng2-charts';
|
||||||
// import { StackedBarChartComponent } from './panels/stacked-bar.component';
|
// import { StackedBarChartComponent } from './panels/stacked-bar.component';
|
||||||
import { SuppliersComponent } from './dashboard/suppliers.component';
|
|
||||||
import { MoreStuffComponent } from './dashboard/more-graphs-and-tables.component';
|
import { MoreStuffComponent } from './dashboard/more-graphs-and-tables.component';
|
||||||
|
|
||||||
|
|
||||||
|
@ -69,7 +68,6 @@ import { MoreStuffComponent } from './dashboard/more-graphs-and-tables.component
|
||||||
BreadcrumbsComponent,
|
BreadcrumbsComponent,
|
||||||
SIDEBAR_TOGGLE_DIRECTIVES,
|
SIDEBAR_TOGGLE_DIRECTIVES,
|
||||||
AsideToggleDirective,
|
AsideToggleDirective,
|
||||||
SuppliersComponent,
|
|
||||||
MoreStuffComponent,
|
MoreStuffComponent,
|
||||||
P404Component,
|
P404Component,
|
||||||
P500Component,
|
P500Component,
|
||||||
|
|
|
@ -13,7 +13,7 @@ import { SuppliersComponent } from '../dashboard/suppliers.component';
|
||||||
import { MoreStuffComponent } from '../dashboard/more-graphs-and-tables.component';
|
import { MoreStuffComponent } from '../dashboard/more-graphs-and-tables.component';
|
||||||
// import { StackedBarChartComponent } from '../panels/stacked-bar.component';
|
// import { StackedBarChartComponent } from '../panels/stacked-bar.component';
|
||||||
|
|
||||||
interface RecurSupplierData {
|
interface SuppliersComponent {
|
||||||
name : string;
|
name : string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@ import { FeedbackComponent } from './feedback.component';
|
||||||
import { TransactionLogComponent } from './transaction-log.component';
|
import { TransactionLogComponent } from './transaction-log.component';
|
||||||
import { CategoryMonthComponent } from './category-month.component';
|
import { CategoryMonthComponent } from './category-month.component';
|
||||||
import { PayrollLogComponent } from './payroll-log.component';
|
import { PayrollLogComponent } from './payroll-log.component';
|
||||||
|
import { SuppliersComponent } from './suppliers.component';
|
||||||
import { LeaderboardComponent } from './leaderboard.component';
|
import { LeaderboardComponent } from './leaderboard.component';
|
||||||
import { MapComponent } from './map.component';
|
import { MapComponent } from './map.component';
|
||||||
import { TrailMapComponent } from './trail-map.component';
|
import { TrailMapComponent } from './trail-map.component';
|
||||||
|
@ -84,6 +85,7 @@ import { environment } from '../../environments/environment';
|
||||||
PiePanel,
|
PiePanel,
|
||||||
OrgPiePanel,
|
OrgPiePanel,
|
||||||
BubbleChartComponent,
|
BubbleChartComponent,
|
||||||
|
SuppliersComponent,
|
||||||
],
|
],
|
||||||
providers: [
|
providers: [
|
||||||
CurrencyPipe,
|
CurrencyPipe,
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { AgmCoreModule } from '@agm/core';
|
||||||
import { BsModalService, ModalDirective } from 'ngx-bootstrap/modal';
|
import { BsModalService, ModalDirective } from 'ngx-bootstrap/modal';
|
||||||
import { BsModalRef } from 'ngx-bootstrap/modal/bs-modal-ref.service';
|
import { BsModalRef } from 'ngx-bootstrap/modal/bs-modal-ref.service';
|
||||||
|
|
||||||
interface RecurSupplierData {
|
interface SuppliersComponent {
|
||||||
name : string;
|
name : string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ export class SuppliersComponent implements OnInit, AfterViewInit {
|
||||||
) { }
|
) { }
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngAfterViewInit() {
|
ngAfterViewInit() {
|
||||||
|
|
Reference in a new issue