edit
This commit is contained in:
@ -212,7 +212,7 @@ export class InvoiceDetailComponent implements OnInit {
|
||||
{ title: '订单号', index: 'billHId' },
|
||||
{ title: '订单日期', index: 'createTime', type: 'date' },
|
||||
{ title: '计费日期', index: 'feeDate', type: 'date' },
|
||||
{ title: '税率', index: 'vatrate' },
|
||||
{ title: '税率', index: 'vatrate', format: item => `${item.vatrate ? ((item.vatrate as number) * 100).toFixed(2) : 0}%` },
|
||||
{
|
||||
title: '申请金额',
|
||||
index: 'vatmoney',
|
||||
@ -244,7 +244,13 @@ export class InvoiceDetailComponent implements OnInit {
|
||||
className: 'text-right',
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vatnotax }) }
|
||||
},
|
||||
{ title: '税率', index: 'vatrate', width: 140, className: 'text-right' },
|
||||
{
|
||||
title: '税率',
|
||||
index: 'vatrate',
|
||||
width: 140,
|
||||
className: 'text-right',
|
||||
format: item => `${item.vatrate ? ((item.vatrate as number) * 100).toFixed(2) : 0}%`
|
||||
},
|
||||
{
|
||||
title: '税额',
|
||||
index: 'vattax',
|
||||
|
||||
Reference in New Issue
Block a user