edit
This commit is contained in:
@ -15,6 +15,8 @@ import { RequestedDetailComponent } from './components/invoice-requested/request
|
||||
import { InvoiceDetailComponent } from './components/invoice-detail/invoice-detail.component';
|
||||
import { CancellationInvoiceComponent } from './components/cancellation-invoice/cancellation-invoice.component';
|
||||
import { PushInvoiceComponent } from './components/cancellation-invoice/push-invoice/push-invoice.component';
|
||||
import { AddOwnerComponent } from './components/etc-blacklist/add-owner/add-owner.component';
|
||||
import { AddCartComponent } from './components/etc-blacklist/add-cart/add-cart.component';
|
||||
|
||||
const COMPONENTS: any = [
|
||||
ETCInvoicedListComponent,
|
||||
@ -25,11 +27,18 @@ const COMPONENTS: any = [
|
||||
InvoicedListComponent,
|
||||
InvoiceRequestedDetailComponent,
|
||||
InvoiceDetailComponent,
|
||||
CancellationInvoiceComponent
|
||||
CancellationInvoiceComponent,
|
||||
PushInvoiceComponent
|
||||
];
|
||||
const NOTROUTECOMPONENTS: any = [
|
||||
TransactionDetailsComponent,
|
||||
RequestedInvoiceModalComponent,
|
||||
RequestedDetailComponent,
|
||||
AddOwnerComponent,
|
||||
AddCartComponent
|
||||
];
|
||||
const NOTROUTECOMPONENTS: any = [TransactionDetailsComponent, RequestedInvoiceModalComponent, RequestedDetailComponent];
|
||||
@NgModule({
|
||||
declarations: [...COMPONENTS, ...NOTROUTECOMPONENTS, PushInvoiceComponent],
|
||||
declarations: [...COMPONENTS, ...NOTROUTECOMPONENTS],
|
||||
imports: [CommonModule, TicketManagementRoutingModule, SharedModule]
|
||||
})
|
||||
export class TicketManagementModule {}
|
||||
|
||||
Reference in New Issue
Block a user