Commit ccf4723f authored by jingnan's avatar jingnan 👀

配套申请增加字段

parent 40032727
......@@ -149,6 +149,8 @@ export default {
{ 'title': '验收单编号', 'key': 'inventory.testNo' },
{ 'title': '库位', 'key': 'inventory.workunit' },
{ 'title': '分配数量', 'key': 'allocatedAmount' },
{ 'title': '退库中数量', 'key': 'backAmount' },
{ 'title': '已退库数量', 'key': 'backedAmount' },
{ 'title': '出库类型', 'key': 'outType', 'minWidth': 100 },
{ 'title': '批次号', 'key': 'inventory.lotNo' },
{ 'title': '序列号', 'key': 'inventory.serno' },
......@@ -237,6 +239,8 @@ export default {
if (item.id === row.id) {
item.internalDataList = res.items.map(row => {
row.outType = row.subTypeDisplayName.slice(0, 2)
row.backedAmount = row.backedAmount || 0
row.backAmount = row.backAmount || 0
return row
})
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment