车辆接口更新

This commit is contained in:
wangshiming
2022-01-14 16:52:40 +08:00
parent fcabc1ad84
commit 1d97fc658b
2 changed files with 10 additions and 10 deletions

View File

@ -161,7 +161,7 @@ export class CancellationInvoiceComponent implements OnInit {
hidden: true
}
},
callNo: {
vatappHId: {
type: 'string',
title: '申请编号',
ui: {
@ -233,22 +233,22 @@ export class CancellationInvoiceComponent implements OnInit {
return [
{ title: '', index: 'key', type: 'checkbox' },
{ title: '分票编号', render: 'vatinvcode', width: 150 },
{ title: '申请编号', index: 'callNo', width: 120 },
{ title: '申请编号', index: 'vatappHId', width: 120 },
{ title: '申请时间', index: 'createTime', type: 'date', width: 150 },
{ title: '网络货运人', index: 'ltdName', width: 120 },
{ title: '购买人', index: 'artoName', width: 90 },
{ title: '订单数', index: 'ordlines', width: 90 },
{ title: '价税合计', index: 'disvatmoney', width: 90 },
{ title: '价税合计', index: 'vatmoney', width: 90 },
{ title: '金额', index: 'vatnotax', width: 100 },
{ title: '税率', index: 'billvatrate', width: 90 },
{ title: '税额', index: 'disvattax', width: 90 },
{ title: '税额', index: 'vattax', width: 90 },
{ title: '服务名称', index: 'vatname', width: 100 },
{ title: '销货清单', index: 'isdetail', width: 90 },
{ title: '票面备注', render: 'vatremarks', width: 250 },
{ title: '其他要求', index: 'otherremarks', width: 100 },
{
title: '操作',
width: 150,
width: '90px',
fixed: 'right',
buttons: [
{
@ -264,15 +264,15 @@ export class CancellationInvoiceComponent implements OnInit {
click: item => this.pushInvoiceAction(item)
},
{
text: '移除',
text: '移除  ',
click: item => this.batchRemove(item)
},
{
text: '确认'
text: '确认  '
// click: item => this.rejectAction(item)
},
{
text: '撤回',
text: '撤回  ',
click: item => this.batchWithdraw(item)
}
]