edit
This commit is contained in:
@ -51,7 +51,7 @@ export class InvoicedListComponent implements OnInit {
|
|||||||
switch (e.type) {
|
switch (e.type) {
|
||||||
case 'checkbox':
|
case 'checkbox':
|
||||||
this.selectedRows = e.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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -241,7 +241,8 @@ export class InvoicedListComponent implements OnInit {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '查看物流',
|
text: '查看物流',
|
||||||
click: item => this.showlogosticsLogs(item)
|
click: item => this.showlogosticsLogs(item),
|
||||||
|
iif: item => item.expresscompany
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user