This commit is contained in:
Taric Xin
2022-02-28 11:41:00 +08:00
parent cba70f810e
commit d55ff3f838

View File

@ -182,7 +182,7 @@ export class InvoicedListComponent implements OnInit {
{
title: '申请编号',
index: 'vatinvcode',
width: 170,
width: 190,
type: 'link',
click: item =>
this.router.navigate(['/ticket/invoice-list/detail/' + item.id], {
@ -191,13 +191,13 @@ export class InvoicedListComponent implements OnInit {
},
{ title: '申请时间', index: 'createTime', type: 'date', width: 150 },
{ title: '发票类型', index: 'invoicetypeLabel', className: 'text-center', width: 140 },
{ title: '网络货运人', index: 'ltdName', width: 120 },
{ title: '购买人', index: 'artoname', width: 90 },
{ title: '网络货运人', index: 'ltdName', width: 170 },
{ title: '购买人', index: 'artoname', width: 170 },
{ title: '订单数', index: 'ordlines', className: 'text-right', width: 90 },
{
title: '价税合计',
index: 'vatmoney',
width: 100,
width: 130,
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vatmoney }) }
@ -205,7 +205,7 @@ export class InvoicedListComponent implements OnInit {
{
title: '金额',
index: 'vatnotax',
width: 90,
width: 120,
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vatnotax }) }
@ -220,7 +220,7 @@ export class InvoicedListComponent implements OnInit {
{
title: '税额',
index: 'vattax',
width: 90,
width: 120,
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vattax }) }