This commit is contained in:
Taric Xin
2022-01-05 17:14:08 +08:00
parent badaa27cff
commit 3be663b9af
24 changed files with 891 additions and 618 deletions

View File

@ -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 {}