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