This commit is contained in:
Taric Xin
2022-02-28 11:38:47 +08:00
parent 2b013e0e48
commit 23df1cc8fc
11 changed files with 59 additions and 17 deletions

View File

@ -20,9 +20,9 @@ export class ExpressDetailModalComponent implements OnInit {
sf!: SFComponent;
columns: STColumn[] = [
{ title: '发票号码', index: 'invoiceno', width: 160, className: 'text-left' },
{ 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: 'ltdName', width: 120 , className: 'text-left'},
{ title: '网络货运人', index: 'ltdName', width: 120, className: 'text-left' },
{ title: '购买人', index: 'artoname', width: 120, className: 'text-left' },
{
title: '价税合计',
@ -44,7 +44,8 @@ export class ExpressDetailModalComponent implements OnInit {
title: '税率',
index: 'tax',
width: 90,
className: 'text-right'
className: 'text-right',
format: item => `${item.tax ? ((item.tax as number) * 100).toFixed(2) : 0}%`
},
{
title: '税额',