This commit is contained in:
Taric Xin
2022-03-23 10:07:05 +08:00
parent cd84e321e2
commit 5d9b136898

View File

@ -253,22 +253,23 @@ export class InvoicedListComponent implements OnInit {
title: '操作',
fixed: 'right',
className: 'text-center',
width: 180,
width: 120,
buttons: [
{type:'divider'},
{
text: '查看明细',
text: '查看明细<br>',
click: item =>
this.router.navigate(['/ticket/invoice-list/detail/' + item.id], {
queryParams: { expressno: item.expressno, type: 2, ltdId: item.shipperId }
})
},
{
text: '发票作废',
text: '发票作废<br>',
click: item => this.deletedInvoice(item),
iif: item => item.sts === '1'
},
{
text: '查看物流',
text: '查看物流<br>',
click: item => this.showlogosticsLogs(item),
iif: item => item.expresscompany
}