From 55ce25dd5a639d6278532c2f7d7c84ae70a47257 Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Mon, 11 Apr 2022 15:26:21 +0800 Subject: [PATCH 1/2] edit --- .../voucher-management/voucher-management.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/routes/financial-management/components/voucher-management/voucher-management.component.ts b/src/app/routes/financial-management/components/voucher-management/voucher-management.component.ts index ff9a84dc..014bde06 100644 --- a/src/app/routes/financial-management/components/voucher-management/voucher-management.component.ts +++ b/src/app/routes/financial-management/components/voucher-management/voucher-management.component.ts @@ -111,7 +111,7 @@ export class VoucherManagementComponent implements OnInit { widget: 'select', placeholder: '请选择', allowClear: true, - asyncData: () => this.service.getNetworkFreightForwarder() + asyncData: () => this.service.getCloseAccount() }, default: '' }, From 5f166bd76991a06bd0f96bb0c34a3d20771c383e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=98=E6=99=93=E4=BA=91?= Date: Mon, 11 Apr 2022 15:38:22 +0800 Subject: [PATCH 2/2] - --- .../components/fund-reporting/fund-reporting.component.ts | 1 + .../components/order-reporting/order-reporting.component.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/routes/datatable/reporting/components/fund-reporting/fund-reporting.component.ts b/src/app/routes/datatable/reporting/components/fund-reporting/fund-reporting.component.ts index 614cd61c..1623f8c6 100644 --- a/src/app/routes/datatable/reporting/components/fund-reporting/fund-reporting.component.ts +++ b/src/app/routes/datatable/reporting/components/fund-reporting/fund-reporting.component.ts @@ -410,6 +410,7 @@ export class DatatableFundReportingComponent implements OnInit { const ids = this.selectedRows.map(i => i?.id); this.service.request(this.service.$api_update_fund_data, ids).subscribe(res => { if (res) { + this.service.msgSrv.success('更新成功'); this.selectedRows = []; this.st.reload(); diff --git a/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts b/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts index 3e2e3e8a..e035bd05 100644 --- a/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts +++ b/src/app/routes/datatable/reporting/components/order-reporting/order-reporting.component.ts @@ -559,9 +559,9 @@ export class DatatableOrderReportingComponent implements OnInit { const ids = this.selectedRows.map(i => i?.id); this.service.request(this.service.$api_update_order_data, ids).subscribe(res => { if (res) { + this.service.msgSrv.success('更新成功'); this.selectedRows = []; this.st.reload(); - } }) }