工位上货单据按货位上货,处理单据拆零扫码确认

20240912_adapter
yewj 5 months ago
parent f24d422214
commit 91fb39d99c

@ -673,3 +673,13 @@ export function getProcessingOrder(params) {
params: params
});
}
export function batchUpdateCode(query) {
return axios({
url: "/udiwms/ioSplit/collect/order/batchUpdateCode",
method: "post",
data: query
});
}

@ -165,7 +165,7 @@
<div style="border: 1px solid #ebeef5;border-radius: 2px;margin-top: 15px;padding: 15px">
<el-row :gutter="0" style="margin-top: 5px">
<el-col :span="20">
<el-form-item prop="code" :label="scanTip" label-width="80px">
<el-form-item prop="code" :label="scanTip" label-width=100px>
<el-input
id="inputer"
@focus="getInputFocus($event)"
@ -397,7 +397,7 @@ import prescribeOriginPanel from "./PannelOrderBiz";
import prescribeCodePanel from "./PanelOrderTagCode";
import PannelOrderBiz from "./PannelOrderBiz";
import {listPage} from "@/api/basic/workPlace/sysWorkplaceManage";
import {enterCodeWeb, batchVailCode, enterCodeBillNo} from "@/api/inout/order";
import {enterCodeWeb, batchVailCode, enterCodeBillNo, saveOrderWeb, batchUpdateCode} from "@/api/inout/order";
import {
cancelOrder,
draftOrder,
@ -743,13 +743,16 @@ export default {
});
if (this.$isNotBlank(tip)) {
tip = "请扫码确认以下产品" + tip + "需拆零的追溯码!"
this.$alert(tip, "提示", {
confirmButtonText: "确定",
type: "warning",
closeOnClickModal: true,
callback: (action) => {
},
});
// this.$alert(tip, "", {
// confirmButtonText: "",
// type: "warning",
// closeOnClickModal: true,
// callback: (action) => {
// },
// });
this.warnVisible = true;
this.warnResult = tip;
this.scanTip = "扫码拆零确认:"
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
@ -802,6 +805,30 @@ export default {
}
//
this.removeCodesTemp(query)
} else if (this.scanSplit) {
//todo
const codeArray = this.filterQuery.code.split(";");
let query = {
orderId: this.formData.billNo,
codeList: codeArray
}
//
batchUpdateCode(query).then((response) => {
this.saveLoading = false
if (response.code === 20000) {
this.$message.success('确认成功')
this.result = ''
this.$refs.inputRef.focus()
this.getBizDetailList();
} else {
this.$message.error(response.message)
}
this.loading = false
this.saveLoading = false
})
} else {
enterCodeWeb(tQuery).then((response) => {
if (response.code === 20000) {
@ -1576,6 +1603,9 @@ export default {
this.scanStatus = null
this.scanTip = "扫码录入:"
this.placeholder = '请点击输入框进行选扫码'
this.scanSplit = false;
this.warnVisible = false;
this.warnResult = "";
},
},
mounted() {

Loading…
Cancel
Save