edit
This commit is contained in:
@ -179,12 +179,21 @@ export class InvoicedListComponent implements OnInit {
|
||||
return [
|
||||
{ title: '', index: 'key', type: 'checkbox' },
|
||||
{ title: '发票号码', index: 'invoiceno', width: 150 },
|
||||
{ title: '申请编号', index: 'vatinvcode', width: 150 },
|
||||
{
|
||||
title: '申请编号',
|
||||
index: 'vatinvcode',
|
||||
width: 170,
|
||||
type: 'link',
|
||||
click: item =>
|
||||
this.router.navigate(['/ticket/invoice-list/detail/' + item.id], {
|
||||
queryParams: { type: 1, expressno: item.expressno }
|
||||
})
|
||||
},
|
||||
{ title: '申请时间', index: 'createTime', type: 'date', width: 150 },
|
||||
{ title: '发票类型', index: 'invoicetype', width: 100 },
|
||||
{ title: '网络货运人', index: 'ltdId', width: 120 },
|
||||
{ title: '购买人', index: 'artoname', width: 90 },
|
||||
{ title: '订单数', index: 'ordlines', width: 90 },
|
||||
{ title: '订单数', index: 'ordlines', className: 'text-right', width: 90 },
|
||||
{
|
||||
title: '价税合计',
|
||||
index: 'vatmoney',
|
||||
@ -201,7 +210,7 @@ export class InvoicedListComponent implements OnInit {
|
||||
className: 'text-right',
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.vatnotax }) }
|
||||
},
|
||||
{ title: '税率', index: 'vatrate', width: 90 },
|
||||
{ title: '税率', index: 'vatrate', className: 'text-right', width: 90 },
|
||||
{
|
||||
title: '税额',
|
||||
index: 'disvattax',
|
||||
@ -214,14 +223,14 @@ export class InvoicedListComponent implements OnInit {
|
||||
{
|
||||
title: '快递信息',
|
||||
render: 'expresscompany',
|
||||
width: 120
|
||||
width: 180
|
||||
},
|
||||
{ title: '状态', index: 'sts', width: 90 },
|
||||
{
|
||||
title: '操作',
|
||||
fixed: 'right',
|
||||
className: 'text-center',
|
||||
width: 110,
|
||||
width: 180,
|
||||
buttons: [
|
||||
{
|
||||
text: '查看明细',
|
||||
|
||||
Reference in New Issue
Block a user