This commit is contained in:
Taric Xin
2022-01-21 15:35:18 +08:00
parent 2c3d76e439
commit 12f0c31d62
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ export class ExpressDetailModalComponent implements OnInit {
{ title: '发票代码', index: 'invoiceno2', width: 160 , className: 'text-left'}, { title: '发票代码', index: 'invoiceno2', width: 160 , className: 'text-left'},
{ title: '申请编号', index: 'vatinvcode', width: 160, className: 'text-left' }, { title: '申请编号', index: 'vatinvcode', width: 160, className: 'text-left' },
{ title: '网络货运人', index: 'ltdName', width: 120 , className: 'text-left'}, { title: '网络货运人', index: 'ltdName', width: 120 , className: 'text-left'},
{ title: '购买人', index: 'tradeFlowNo', width: 120, className: 'text-left' }, { title: '购买人', index: 'artoname', width: 120, className: 'text-left' },
{ {
title: '价税合计', title: '价税合计',
index: 'vatmoney', index: 'vatmoney',
@ -42,7 +42,7 @@ export class ExpressDetailModalComponent implements OnInit {
}, },
{ {
title: '税率', title: '税率',
index: 'fee', index: 'tax',
width: 90, width: 90,
className: 'text-right' className: 'text-right'
}, },

View File

@ -142,7 +142,7 @@ export class ExpressInfoComponent implements OnInit {
this.selectedRows.map(item => item.expressCode) this.selectedRows.map(item => item.expressCode)
) )
.subscribe(res => { .subscribe(res => {
if (res) { if (res?.pdfUrl) {
this.service.reviewPDF(res.pdfUrl); this.service.reviewPDF(res.pdfUrl);
} else { } else {
this.service.msgSrv.warning('下载失败'); this.service.msgSrv.warning('下载失败');