This commit is contained in:
Taric Xin
2022-01-06 20:52:37 +08:00
parent 3a39ad53fb
commit 9d3a02a671
13 changed files with 379 additions and 31 deletions

View File

@ -253,17 +253,17 @@ export class CostManagementComponent implements OnInit {
{ title: '订单号', index: 'billHId', width: 120 },
{ title: '运单号', index: 'waybillHId', width: 120 },
{ title: '费用日期', index: 'feedate', width: 150 },
{ title: '费用类型', index: 'feetype', width: 100 },
{ title: '应付核销', index: 'ishrhx', width: 100 },
{ title: '费用类型', index: 'feetypeLabel', width: 100 },
{ title: '应付核销', index: 'ishrhx', width: 100, type: 'enum', enum: { 0: '否', 1: '是' } },
{ title: '结算客户', index: 'cno', width: 100 },
{ title: '应收对象', index: 'artoname', width: 100 },
{ title: '应付对象', render: 'hrtoname', width: 100 },
{ title: '应收金额', render: 'armoeny', width: 100 },
{ title: '应付金额', render: 'hrmoney', width: 100 },
{ title: '收/付款金额', render: 'hrpaymoney', width: 120 },
{ title: '开/收票金额', render: 'hrvatmoney', width: 120 },
{ title: '应付对象', index: 'hrtoname', width: 100 },
{ title: '应收金额', index: 'armoeny', width: 100 },
{ title: '应付金额', index: 'hrmoney', width: 100 },
{ title: '收/付款金额', index: 'hrpaymoney', width: 120 },
{ title: '开/收票金额', index: 'hrvatmoney', width: 120 },
{ title: '创建时间', index: 'auditTime', type: 'date', width: 150 },
{ title: '状态', render: 'sts', width: 90 },
{ title: '状态', index: 'stsLabel', width: 90 },
{
title: '操作',
fixed: 'right',
@ -276,7 +276,8 @@ export class CostManagementComponent implements OnInit {
},
{
text: '审核',
click: item => this.auditAction(item)
click: item => this.auditAction(item),
iif: item => item.sts === 2
},
{
text: '修改',