Commit c51da1d8 authored by Marcus's avatar Marcus

入仓选储位无效问题

parent c30a6e70
...@@ -177,10 +177,6 @@ export default { ...@@ -177,10 +177,6 @@ export default {
this.initArea() this.initArea()
}, },
handleSave(){ handleSave(){
this.$emit('input', this.inputValue)
this.dialogVisible = false
if (this.isEditing) {
this.$nextTick(() => { this.$nextTick(() => {
const data = this.inputValue.map(e => { const data = this.inputValue.map(e => {
return { return {
...@@ -189,10 +185,13 @@ export default { ...@@ -189,10 +185,13 @@ export default {
warehouseInId: this.warehouseInId warehouseInId: this.warehouseInId
} }
}) })
updateWarehouseInLocation(data) this.$emit('input', data)
this.dialogVisible = false
}) if (this.isEditing || this.orderItemId) {
updateWarehouseInLocation(data)
} }
})
}, },
handleClose() { handleClose() {
this.dialogVisible = false this.dialogVisible = false
......
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