feat(入库任务): 增加手动入库

This commit is contained in:
Kelvin 2024-12-19 16:46:11 +08:00
parent f9ae0cb09a
commit 997b2c7bfe

View File

@ -105,6 +105,13 @@
@click="handleIssue(scope.row)"
>下发
</el-button>
<el-button
size="mini"
type="text"
:disabled="scope.row.planInStatus === '1'"
@click="manualIssue(scope.row)"
>手动入库
</el-button>
<!-- <el-button-->
<!-- size="mini"-->
<!-- type="text"-->
@ -287,10 +294,10 @@ export default {
//
warehouseTypeCode:"DDJ",
//
materialId: task.materialId,
materialCode: task.materialCode,
materialName: task.materialName,
materialCount: task.actualInQuantity,
// materialId: task.materialId,
// materialCode: task.materialCode,
// materialName: task.materialName,
// materialCount: task.actualInQuantity,
rfid: "",
// OR
type: "RK",
@ -305,6 +312,15 @@ export default {
// this.getList();
// });
},
/**
* 手动执行入库任务
*/
manualIssue(task) {
issueBatchWmsInTask([task.id.toString()]).then(response => {
this.$modal.msgSuccess("执行成功");
this.getList();
});
},
//
cancel() {
this.open = false;