This commit is contained in:
Taric Xin
2022-01-13 15:49:58 +08:00
parent a917c83275
commit 08617ecfa1
12 changed files with 348 additions and 69 deletions

View File

@ -23,6 +23,7 @@ import { AddCollectionInvoiceModalComponent } from './components/input-invoice/a
import { EditCollectionInvoiceComponent } from './components/input-invoice/edit-collection-invoice/edit-collection-invoice.component';
import { AddCostDetailComponent } from './components/input-invoice/add-cost-detail/add-cost-detail.component';
import { PrintOrderModalComponent } from './components/invoice-requested/print-order-modal/print-order-modal.component';
import { ExpressInfoComponent } from './components/express-info/express-info.component';
const COMPONENTS: any = [
ETCInvoicedListComponent,
@ -37,7 +38,8 @@ const COMPONENTS: any = [
PushInvoiceComponent,
InputInvoiceComponent,
InputInvoiceDetailComponent,
EditCollectionInvoiceComponent
EditCollectionInvoiceComponent,
ExpressInfoComponent
];
const NOTROUTECOMPONENTS: any = [
TransactionDetailsComponent,
@ -46,10 +48,11 @@ const NOTROUTECOMPONENTS: any = [
AddOwnerComponent,
AddCartComponent,
AddCollectionInvoiceModalComponent,
AddCostDetailComponent
AddCostDetailComponent,
PrintOrderModalComponent
];
@NgModule({
declarations: [...COMPONENTS, ...NOTROUTECOMPONENTS, PrintOrderModalComponent],
declarations: [...COMPONENTS, ...NOTROUTECOMPONENTS],
imports: [CommonModule, TicketManagementRoutingModule, SharedModule]
})
export class TicketManagementModule {}