车辆接口更新

This commit is contained in:
wangshiming
2022-01-20 15:12:09 +08:00
parent d51c0d0801
commit a68612626b
3 changed files with 65 additions and 55 deletions

View File

@ -210,14 +210,14 @@ export class InvoicedListComponent implements OnInit {
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vatnotax }) }
},
{ title: '税率', index: 'vatrate', className: 'text-right', width: 90 },
{ title: '税率', render: 'vatrate', className: 'text-right', width: 90 },
{
title: '税额',
index: 'disvattax',
index: 'vattax',
width: 90,
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.disvattax }) }
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vattax }) }
},
{ title: '开票日期', index: 'invoicedate', type: 'date', width: 150 },
{