This commit is contained in:
Taric Xin
2022-02-23 13:41:09 +08:00
parent ef798b16b5
commit c9a79cfbdc

View File

@ -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
}
]
}