|
|
|
@ -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() {
|
|
|
|
|