Commit ddd382fb authored by jingnan's avatar jingnan 👀

批量调整库位组件修改

parent 5a0b5c91
...@@ -44,11 +44,14 @@ export default { ...@@ -44,11 +44,14 @@ export default {
}, },
computed: { computed: {
resultData() { resultData() {
return this.basicData.inventory.map(item => { const items = this.basicData.inventory.map(item => {
item.inWorkCenter = 'Y' item.inWorkCenter = 'Y'
item.currExtWorkUnitId = null
item.currOutsideAmount = null
item.currDisposeDes = null
return item return item
} })
) return JSON.parse(JSON.stringify(items))
} }
}, },
watch: { watch: {
......
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