Merge remote-tracking branch 'origin/dev_ksck_z' into dev_ksck_z

20240912_adapter_z
chenhc 8 months ago
commit 7b5549675c

@ -155,7 +155,7 @@
</el-col> </el-col>
<el-col :span="8" v-if="splitType=='out'"> <el-col :span="8" v-if="splitType=='out'">
<el-form-item prop="fifoSplit" class="query-form-item" label="上货方式:"> <el-form-item prop="fifoSplit" class="query-form-item" label="上货方式:">
<el-radio-group v-model="orderFormData.fifoSplit" :disabled="fifoSplitEnable"> <el-radio-group v-model="orderFormData.fifoSplit" :disabled="fifoSplitEnable" @change="splitChange">
<el-radio :label="1">拆零上货</el-radio> <el-radio :label="1">拆零上货</el-radio>
<el-radio :label="2">整取上货</el-radio> <el-radio :label="2">整取上货</el-radio>
</el-radio-group> </el-radio-group>
@ -538,9 +538,15 @@ export default {
findInvRemind(post).then((response) => { findInvRemind(post).then((response) => {
if (response.code === 20000) { if (response.code === 20000) {
this.msgTip = response.data this.msgTip = response.data
this.$refs.inputRef.focus();
} }
}).catch(() => { }).catch(() => {
}); });
},
splitChange() {
this.$refs.inputRef.focus();
}, },
successCloseData() { successCloseData() {
let workPlaceCode = this.orderFormData.workPlaceCode let workPlaceCode = this.orderFormData.workPlaceCode
@ -1548,6 +1554,7 @@ export default {
this.originCode = this.codeFormData.code; this.originCode = this.codeFormData.code;
} else if (response.code == 501) { } else if (response.code == 501) {
this.checkSuccess = false; this.checkSuccess = false;
this.scanCode = ""
this.$message.error(response.message); this.$message.error(response.message);
} else if (response.code == 503) { } else if (response.code == 503) {
this.checkSuccess = false; this.checkSuccess = false;

Loading…
Cancel
Save