edit
This commit is contained in:
@ -225,38 +225,39 @@ export class PaymentOrderComponent implements OnInit {
|
||||
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '', index: 'key', type: 'checkbox' },
|
||||
{ title: '付款单号', index: 'paycode', type: 'link' },
|
||||
{ title: '网络货运人', index: 'ltdId' },
|
||||
{ title: '要求付款日期', index: 'paydate', type: 'date', width: 140 },
|
||||
{ title: '', index: 'key', type: 'checkbox', fixed: 'left', className: 'text-center' },
|
||||
{ title: '付款单号', index: 'payCode', type: 'link', width: 180 },
|
||||
{ title: '网络货运人', index: 'ltdName', width: 160 },
|
||||
{ title: '要求付款日期', index: 'payDate', type: 'date', className: 'text-center', width: 150 },
|
||||
{
|
||||
title: '付款金额',
|
||||
index: 'paymoney',
|
||||
index: 'payMoney',
|
||||
width: 120,
|
||||
type: 'widget',
|
||||
className: 'text-right',
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.paymoney }) }
|
||||
},
|
||||
{ title: '付款类型', index: 'paytype' },
|
||||
{ title: '付款方式', index: 'paymode' },
|
||||
{ title: '结算客户', index: 'call1N2o' },
|
||||
{ title: '收款人', index: 'hrto' },
|
||||
{ title: '应付已核销', index: 'callNo' },
|
||||
{ title: '确认日期', index: 'paydate2', type: 'date' },
|
||||
{ title: '创建时间', index: 'createTime', type: 'date' },
|
||||
{ title: '创建人', index: 'createUserId' },
|
||||
{ title: '付款备注', index: 'payremarks' },
|
||||
{ title: '付款类型', index: 'payTypeLabel', width: 130 },
|
||||
{ title: '付款方式', index: 'payModeLabel', width: 130 },
|
||||
{ title: '结算客户', index: 'shipperId', width: 160 },
|
||||
{ title: '收款人', index: 'hrToName', width: 150 },
|
||||
{ title: '应付已核销', index: 'callNo', width: 150 },
|
||||
{ title: '确认日期', index: 'payDate2', type: 'date', className: 'text-center', width: 150 },
|
||||
{ title: '创建时间', index: 'createTime', type: 'date', className: 'text-center', width: 150 },
|
||||
{ title: '创建人', index: 'createUserId', width: 160 },
|
||||
{ title: '付款备注', index: 'payRemarks', width: 200 },
|
||||
{
|
||||
title: '操作',
|
||||
width: '90px',
|
||||
className: 'text-center',
|
||||
fixed: 'right',
|
||||
width: '110px',
|
||||
buttons: [
|
||||
{
|
||||
text: '浏览',
|
||||
click: item => this.router.navigate(['/ticket/input-invoice/detail/' + item.id])
|
||||
click: item => this.router.navigate(['/financial-management/payment-order/detail/' + item.id])
|
||||
},
|
||||
{
|
||||
text: '修改',
|
||||
click: item => this.router.navigate(['/ticket/input-invoice/edit/1'])
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user