This commit is contained in:
Taric Xin
2022-01-14 14:23:10 +08:00
parent d4d49d12b1
commit 803835ba0a
9 changed files with 306 additions and 30 deletions

View File

@ -25,6 +25,7 @@ import { VoucherSummaryComponent } from './components/voucher-summary/voucher-su
import { ReceivableOrderComponent } from './components/receivable-order/receivable-order.component';
import { PayableOrderComponent } from './components/payable-order/payable-order.component';
import { ReceivableOrderDetailComponent } from './components/receivable-order/receivable-order-detail/receivable-order-detail.component';
import { PayableOrderDetailComponent } from './components/payable-order/payable-order-detail/payable-order-detail.component';
const ROUTESCOMPONENTS = [
FreightAccountComponent,
@ -51,7 +52,7 @@ const ROUTESCOMPONENTS = [
const NOTROUTECOMPONENTS = [DriverAccountDetailComponent, FreightAccountDetailComponent, SettingFinancialComponent, ClearingModalComponent];
@NgModule({
declarations: [...ROUTESCOMPONENTS, ...NOTROUTECOMPONENTS],
declarations: [...ROUTESCOMPONENTS, ...NOTROUTECOMPONENTS, PayableOrderDetailComponent],
imports: [CommonModule, FinancialManagementRoutingModule, SharedModule]
})
export class FinancialManagementModule {}