给其它入库和其它出库单据增加关联单据的功能,支持全部和部分关联

This commit is contained in:
季圣华
2023-12-05 00:28:04 +08:00
parent 040bc6701c
commit 66b1a21320
13 changed files with 93 additions and 75 deletions

View File

@@ -219,7 +219,12 @@
scopedSlots: { customRender: 'action' },
},
{ title: '客户', dataIndex: 'organName',width:120, ellipsis:true},
{ title: '单据编号', dataIndex: 'number',width:160},
{ title: '单据编号', dataIndex: 'number',width:160,
customRender:function (text,record,index) {
text = record.linkNumber?text+"[]":text
return text
}
},
{ title: '关联单据', dataIndex: 'linkNumber',width:140},
{ title: '商品信息', dataIndex: 'materialsList',width:220, ellipsis:true},
{ title: '单据日期', dataIndex: 'operTimeStr',width:145},