opt:现场问题的一些处理与优化:

先有浅货位出库任务未完成,
后有深货位出库任务,阻挡后生成移库任务,
判断条件有问题,已修复;
料箱库技改,批量下发移库功能;
拣选位均衡分配.
This commit is contained in:
2025-09-11 16:21:41 +08:00
parent 41fbb8c98f
commit 948371a5a4
2 changed files with 19 additions and 2 deletions

View File

@@ -156,7 +156,7 @@
</el-form>
<el-button
class="filter-item"
type="success"
type="danger"
icon="el-icon-download"
size="mini"
@click="createMoveTask"
@@ -402,10 +402,15 @@ export default {
})
},
createMoveTask() {
this.$confirm(`此操作将清空相同排相同列所有库存,并触发移库任务进行锁库,请谨慎操作,请确认后再操作!`, '警告', {
confirmButtonText: '确认下发移库任务',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
structattr.createMoveTask(this.crud.selections).then(res => {
this.crud.notify('批量移库任务下发成功!', CRUD.NOTIFICATION_TYPE.SUCCESS)
this.crud.toQuery()
})
})})
}
}
}