This commit is contained in:
Taric Xin
2022-04-11 16:42:52 +08:00
parent 28a1a7c19f
commit bcbf165268
2 changed files with 8 additions and 8 deletions

View File

@ -20,7 +20,7 @@
<div nz-row nzGutter="8"> <div nz-row nzGutter="8">
<div nz-col [nzXl]="8" [nzLg]="8" [nzSm]="8" [nzXs]="8" se-container [labelWidth]="150" col="1"> <div nz-col [nzXl]="8" [nzLg]="8" [nzSm]="8" [nzXs]="8" se-container [labelWidth]="150" col="1">
<se label="网络货运人" required> <se label="网络货运人" required>
{{headerInfo?.ltdId}} {{headerInfo?.ltdName}}
</se> </se>
<se label="结算客户"> <se label="结算客户">
{{headerInfo?.cnoName}} {{headerInfo?.cnoName}}

View File

@ -227,30 +227,30 @@ export class PayableOrderComponent implements OnInit {
return [ return [
{ title: '', index: 'key', type: 'checkbox' }, { title: '', index: 'key', type: 'checkbox' },
{ title: '核销单号', index: 'phxcode', type: 'link', width: 140 }, { title: '核销单号', index: 'phxcode', type: 'link', width: 140 },
{ title: '网络货运人', index: 'ltdName', width: 160 }, { title: '网络货运人', index: 'ltdName', width: 220 },
{ title: '核销日期', index: 'phxdate', type: 'date', width: 160 }, { title: '核销日期', index: 'phxdate', type: 'date', width: 160 },
{ title: '付款账户', index: 'shipperaccount', width: 170 }, { title: '付款账户', index: 'shipperaccount', width: 170 },
{ title: '收款账户', index: 'ltdaccountId', width: 170 }, { title: '收款账户', index: 'ltdaccountId', width: 190 },
{ {
title: '核销金额', title: '核销金额',
index: 'phxmoney', index: 'phxmoney',
width: 120, width: 140,
className: 'text-right', className: 'text-right',
format: item => `${this.currencyPipe.transform(item.phxmoney || 0)}` format: item => `${this.currencyPipe.transform(item.phxmoney || 0)}`
}, },
{ {
title: '应付金额', title: '应付金额',
index: 'prmoney', index: 'prmoney',
width: 120, width: 140,
className: 'text-right', className: 'text-right',
format: item => `${this.currencyPipe.transform(item.prmoney || 0)}` format: item => `${this.currencyPipe.transform(item.prmoney || 0)}`
}, },
{ title: '银行类型', index: 'banktype', type: 'enum', enum: { '1': '平安', '2': '浦发' }, width: 120 }, { title: '银行类型', index: 'banktype', type: 'enum', enum: { '1': '平安', '2': '浦发' }, width: 120 },
{ title: '付款类型', index: 'brmtype', type: 'enum', enum: { '1': '费用款项' }, width: 120 }, { title: '付款类型', index: 'brmtype', type: 'enum', enum: { '1': '费用款项' }, width: 120 },
{ title: '收款人', index: 'driver2IdName', width: 120 }, { title: '收款人', index: 'driver2IdName', width: 120 },
{ title: '结算客户', index: 'cno', width: 120 }, { title: '结算客户', index: 'cnoName', width: 180 },
{ title: '银行水单', index: 'bankreceipt', width: 120 }, { title: '银行水单', index: 'bankreceipt', width: 190 },
{ title: '创建时间', index: 'createTime', width: 160 }, { title: '创建时间', index: 'createTime', width: 180 },
// { title: '创建人', index: 'createUserIdLabel', width: 120 }, // { title: '创建人', index: 'createUserIdLabel', width: 120 },
{ title: '核销状态', index: 'sts', type: 'enum', enum: { 0: '待核销', 1: '已核销' }, width: 120 }, { title: '核销状态', index: 'sts', type: 'enum', enum: { 0: '待核销', 1: '已核销' }, width: 120 },
{ title: '核销备注', index: 'remarks', width: 120 }, { title: '核销备注', index: 'remarks', width: 120 },