diff --git a/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.html b/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.html
index 05929852..b0b74755 100644
--- a/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.html
+++ b/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.html
@@ -20,7 +20,7 @@
- {{headerInfo?.ltdId}}
+ {{headerInfo?.ltdName}}
{{headerInfo?.cnoName}}
diff --git a/src/app/routes/financial-management/components/payable-order/payable-order.component.ts b/src/app/routes/financial-management/components/payable-order/payable-order.component.ts
index 703c57de..64c951c6 100644
--- a/src/app/routes/financial-management/components/payable-order/payable-order.component.ts
+++ b/src/app/routes/financial-management/components/payable-order/payable-order.component.ts
@@ -227,30 +227,30 @@ export class PayableOrderComponent implements OnInit {
return [
{ title: '', index: 'key', type: 'checkbox' },
{ 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: 'shipperaccount', width: 170 },
- { title: '收款账户', index: 'ltdaccountId', width: 170 },
+ { title: '收款账户', index: 'ltdaccountId', width: 190 },
{
title: '核销金额',
index: 'phxmoney',
- width: 120,
+ width: 140,
className: 'text-right',
format: item => `${this.currencyPipe.transform(item.phxmoney || 0)}`
},
{
title: '应付金额',
index: 'prmoney',
- width: 120,
+ width: 140,
className: 'text-right',
format: item => `${this.currencyPipe.transform(item.prmoney || 0)}`
},
{ title: '银行类型', index: 'banktype', type: 'enum', enum: { '1': '平安', '2': '浦发' }, width: 120 },
{ title: '付款类型', index: 'brmtype', type: 'enum', enum: { '1': '费用款项' }, width: 120 },
{ title: '收款人', index: 'driver2IdName', width: 120 },
- { title: '结算客户', index: 'cno', width: 120 },
- { title: '银行水单', index: 'bankreceipt', width: 120 },
- { title: '创建时间', index: 'createTime', width: 160 },
+ { title: '结算客户', index: 'cnoName', width: 180 },
+ { title: '银行水单', index: 'bankreceipt', width: 190 },
+ { title: '创建时间', index: 'createTime', width: 180 },
// { title: '创建人', index: 'createUserIdLabel', width: 120 },
{ title: '核销状态', index: 'sts', type: 'enum', enum: { 0: '待核销', 1: '已核销' }, width: 120 },
{ title: '核销备注', index: 'remarks', width: 120 },