diff --git a/src/app/routes/ticket-management/components/invoiced-list/invoiced-list.component.ts b/src/app/routes/ticket-management/components/invoiced-list/invoiced-list.component.ts index 1ef22e77..a844120a 100644 --- a/src/app/routes/ticket-management/components/invoiced-list/invoiced-list.component.ts +++ b/src/app/routes/ticket-management/components/invoiced-list/invoiced-list.component.ts @@ -51,7 +51,7 @@ export class InvoicedListComponent implements OnInit { switch (e.type) { case 'checkbox': this.selectedRows = e.checkbox!; - this.totalCallNo = (this.selectedRows.reduce((total, cv) => total + cv.vatnotax, 0)).toFixed(2);; + this.totalCallNo = this.selectedRows.reduce((total, cv) => total + cv.vatnotax, 0).toFixed(2); break; } } @@ -241,7 +241,8 @@ export class InvoicedListComponent implements OnInit { }, { text: '查看物流', - click: item => this.showlogosticsLogs(item) + click: item => this.showlogosticsLogs(item), + iif: item => item.expresscompany } ] }