From 8bb5eb8ebdef7bb35147a4765e14f24fceac905f Mon Sep 17 00:00:00 2001 From: heqinghang Date: Fri, 8 Apr 2022 15:13:31 +0800 Subject: [PATCH] 666 --- .../components/invoicetable/invoicetable.component.html | 3 +++ .../components/invoicetable/invoicetable.component.ts | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/src/app/routes/datatable/components/invoicetable/invoicetable.component.html b/src/app/routes/datatable/components/invoicetable/invoicetable.component.html index 1495916b..e45122f6 100644 --- a/src/app/routes/datatable/components/invoicetable/invoicetable.component.html +++ b/src/app/routes/datatable/components/invoicetable/invoicetable.component.html @@ -25,5 +25,8 @@ {{item.unInvoicedAmountCurMonth | currency}} + + {{item.invoicedAmount | currency}} + diff --git a/src/app/routes/datatable/components/invoicetable/invoicetable.component.ts b/src/app/routes/datatable/components/invoicetable/invoicetable.component.ts index fd61e55f..40aac5d4 100644 --- a/src/app/routes/datatable/components/invoicetable/invoicetable.component.ts +++ b/src/app/routes/datatable/components/invoicetable/invoicetable.component.ts @@ -55,6 +55,11 @@ export class DatatableInvoicetableComponent implements OnInit { title: '申请待开客户', index: 'applyWaitCustomer', }, + { + title: '已开票金额', + index: 'invoicedAmount', + render: 'invoicedAmount', + }, { title: '未申请开票金额(历史)', index: 'unInvoicedAmountHistory',