fix bug
This commit is contained in:
@ -513,25 +513,30 @@ export class InvoiceRequestedComponent {
|
||||
{
|
||||
text: '开票受理<br/>',
|
||||
click: item => this.requestedInvoiceAction(item),
|
||||
acl: { ability: ['TICKET-INVOICE-REQUESTED-requestedInvoiceAction'] },
|
||||
iif: item => item.sts === '1'
|
||||
},
|
||||
{
|
||||
text: '驳回申请<br/>',
|
||||
click: item => this.rejectAction([item]),
|
||||
acl: { ability: ['TICKET-INVOICE-REQUESTED-rejectAction'] },
|
||||
iif: item => item.sts === '1'
|
||||
},
|
||||
{
|
||||
text: '订单明细<br/>',
|
||||
acl: { ability: ['TICKET-INVOICE-REQUESTED-detail'] },
|
||||
click: item => this.router.navigate([`/ticket/invoice-requested/detail/${item?.id}`], { queryParams: { sts: item.sts } })
|
||||
},
|
||||
{
|
||||
text: '查看原因<br/>',
|
||||
click: item => this.showReason(item),
|
||||
acl: { ability: ['TICKET-INVOICE-REQUESTED-viewResult'] },
|
||||
iif: item => item.sts === '4'
|
||||
},
|
||||
{
|
||||
text: '下载对账单',
|
||||
iif: item => item.sts === '3',
|
||||
acl: { ability: ['TICKET-INVOICE-REQUESTED-downloadPDF'] },
|
||||
click: item => this.downloadPdf(item)
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user