扫码校验,同步设置

master
anthonywj 3 years ago
parent ef12dcbcb4
commit 34f3c2b782

@ -87,7 +87,10 @@ const KeyScaner = /** @class */ (function () {
} }
}; };
KeyScaner.prototype.completeInput = function () { KeyScaner.prototype.completeInput = function () {
var text = this.keybufs.join(""); var text ="";//= this.keybufs.toString()
for(let i = 0;i<this.keybufs.length;i++){
text = text+this.keybufs[i];
}
this.keybufs = []; this.keybufs = [];
if (this.onInput) { if (this.onInput) {
this.onInput.bind(this)(text); this.onInput.bind(this)(text);

@ -208,17 +208,18 @@ export default {
.catch(() => { .catch(() => {
}); });
}, },
getOrderType() { getOrderType(code) {
filterNoUseBusType().then((response) => { let query = {
locInvCode: code
}
filterNoUseBusType(query).then((response) => {
this.busTypes = response.data || []; this.busTypes = response.data || [];
}).catch(() => { }).catch(() => {
}) })
}, },
invChange(code) { invChange(code) {
let query = { this.getOrderType(code);
code: code
}
this.$set(this.inputQuery, "entrustUser", ""); this.$set(this.inputQuery, "entrustUser", "");
this.$set(this.inputQuery, "entrustInv", ""); this.$set(this.inputQuery, "entrustInv", "");
this.getEntrustStorage(); this.getEntrustStorage();
@ -249,7 +250,6 @@ export default {
}); });
}, },
}, },
@ -261,7 +261,7 @@ export default {
created() { created() {
this.getOrderType(); this.getOrderType(null);
this.getList(); this.getList();
this.getStorage(); this.getStorage();
this.getEntrustStorage(); this.getEntrustStorage();

@ -67,7 +67,8 @@
<template slot="label"> <template slot="label">
运行参数 运行参数
</template> </template>
<el-checkbox v-model="configQuery.entrustAction" :disabled="configQuery.downstreamEnable"></el-checkbox> <el-checkbox v-model="configQuery.entrustAction" :disabled="configQuery.downstreamEnable">
</el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
@ -181,6 +182,11 @@
prop="action" prop="action"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column width="180" label="允许缺量补单">
<template slot-scope="scope">
<el-checkbox v-model="scope.row.outChange"></el-checkbox>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
@ -197,17 +203,6 @@
</el-descriptions-item> </el-descriptions-item>
<!-- <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">-->
<!-- <el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange">-->
<!-- <el-checkbox-->
<!-- style="padding-top: 10px"-->
<!-- v-for="busType in busTypes" :label="busType" :key="busType.action"-->
<!-- :value="busType.action">{{ busType.name }}-->
<!-- </el-checkbox>-->
<!-- </el-checkbox-group>-->
<!-- </el-descriptions-item>-->
</el-descriptions> </el-descriptions>
<el-dialog <el-dialog
@ -304,17 +299,17 @@ export default {
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.configQuery = response.data; this.configQuery = response.data;
this.checkedBusTypes = []; this.checkedBusTypes = this.configQuery.busTypes;
if (this.configQuery.busTypes != null) { if (this.configQuery.busTypes != null) {
for (let i = 0; i < this.configQuery.busTypes.length; i++) { // for (let i = 0; i < this.configQuery.busTypes.length; i++) {
//
for (let k = 0; k < this.busTypes.length; k++) { // for (let k = 0; k < this.busTypes.length; k++) {
if (this.busTypes[k].action == this.configQuery.busTypes[i]) { // if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
this.checkedBusTypes.push(this.busTypes[k]); // this.checkedBusTypes.push(this.busTypes[k]);
this.busTypes[k].isSelect = true; // this.busTypes[k].isSelect = true;
} // }
} // }
} // }
} }
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
@ -327,23 +322,34 @@ export default {
}); });
}, },
saveConfig() { saveConfig() {
this.$confirm('是否确认修改?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
center: true,
}).then(() => {
if (this.checkedBusTypes != null) { if (this.checkedBusTypes != null) {
this.configQuery.busTypes = []; this.configQuery.busTypes = this.checkedBusTypes;
for (let i = 0; i < this.checkedBusTypes.length; i++) { // for (let i = 0; i < this.checkedBusTypes.length; i++) {
this.configQuery.busTypes.push(this.checkedBusTypes[i].action); // this.configQuery.busTypes.push(this.checkedBusTypes);
} // }
} }
updateConfig(this.configQuery) updateConfig(this.configQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("更新成功!"); this.$message.success("修改成功!");
this.getConfig(); this.getConfig();
} else {
this.$message.error(response.message);
} }
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
}); });
}).catch(() => {
});
}, },
handleCheckedChange(val) { handleCheckedChange(val) {
@ -369,6 +375,7 @@ export default {
addBusType() { addBusType() {
var selectData = this.multipleSelection; var selectData = this.multipleSelection;
selectData.forEach((obj) => { selectData.forEach((obj) => {
obj.outChange = false;
this.checkedBusTypes.push(obj); this.checkedBusTypes.push(obj);
}); });
this.addBusDialogVisible = false; this.addBusDialogVisible = false;

@ -554,6 +554,7 @@ export default {
} }
}, },
enterKey(event) { enterKey(event) {
console.log("开始回车");
this.checkSuccess = true; this.checkSuccess = true;
let tQuery = { let tQuery = {
originCode: this.originCode, originCode: this.originCode,
@ -608,6 +609,7 @@ export default {
}); });
}, },
addCode(event) { addCode(event) {
console.log("开始添加");
this.originCode = ""; this.originCode = "";
this.sictomText = ""; this.sictomText = "";
this.formData.corpOrderId = this.formData.corpOrderId.trim(); this.formData.corpOrderId = this.formData.corpOrderId.trim();
@ -1025,7 +1027,12 @@ export default {
that.sictomText = that.sictomText + str; that.sictomText = that.sictomText + str;
that.formData.code = that.sictomText; that.formData.code = that.sictomText;
} else { } else {
that.formData.code = text; that.formData.code = text;
console.log(" that.formData.code = " + that.formData.code);
// setTimeout(function(){ that.formData.code = text; }, 3000);
} }
}; };
inputer.focus(); inputer.focus();

Loading…
Cancel
Save