diff --git a/src/plugin/KeyScaner.js b/src/plugin/KeyScaner.js
index 0b8024d..ee57b6c 100644
--- a/src/plugin/KeyScaner.js
+++ b/src/plugin/KeyScaner.js
@@ -41,17 +41,16 @@ const KeyScaner = /** @class */ (function () {
if (ev.shiftKey || ev.altKey || ev.ctrlKey || ev.metaKey) {
return;
}
- console.log("监听到回车键。。。。。。。。。。。。。。。。。。。");
this.appendChar("\r");
this.completeInput(); //立即完成输入
} else if (ev.key == "Delete" || ev.key == "Backspace") {
- console.log("监听到删除键。。。。。。。。。。。。。。。。。。。");
this.dom.innerTex = "";
this.appendChar("delete");
this.completeInput(); //立即完成输入
} else {
if (ev.key.length == 1) {
var charCode = ev.key.charCodeAt(0);
+ console.log("key="+charCode);
if (charCode >= 48 && charCode <= 57) {
if (ev.altKey) {
this.altBuf.push(ev.key);
diff --git a/src/views/basic/BasicEntrutsReceModify.vue b/src/views/basic/BasicEntrutsReceModify.vue
index 5eb5392..8e8f170 100644
--- a/src/views/basic/BasicEntrutsReceModify.vue
+++ b/src/views/basic/BasicEntrutsReceModify.vue
@@ -209,7 +209,6 @@ export default {
});
},
getOrderType(code) {
-
let query = {
locInvCode: code
}
diff --git a/src/views/thrsys/SysUdimsConfig.vue b/src/views/thrsys/SysUdimsConfig.vue
index ec78e00..23eeff7 100644
--- a/src/views/thrsys/SysUdimsConfig.vue
+++ b/src/views/thrsys/SysUdimsConfig.vue
@@ -209,7 +209,11 @@
prop="action"
show-overflow-tooltip
>
-
+
+
+ 缺量补单
+
+
{
- if (response.code == 20000) {
- this.configQuery = response.data;
- this.checkedBusTypes = [];
- if (this.configQuery.busTypes != null) {
- for (let i = 0; i < this.configQuery.busTypes.length; i++) {
-
- for (let k = 0; k < this.busTypes.length; k++) {
- if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
- this.checkedBusTypes.push(this.busTypes[k]);
- this.busTypes[k].isSelect = true;
- }
- }
- }
- }
+ this.configQuery = response.data;
+ this.checkedBusTypes = this.configQuery.busTypes;
+ if (this.configQuery.busTypes != null) {
+ // for (let i = 0; i < this.configQuery.busTypes.length; i++) {
+ //
+ // for (let k = 0; k < this.busTypes.length; k++) {
+ // if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
+ // this.checkedBusTypes.push(this.busTypes[k]);
+ // this.busTypes[k].isSelect = true;
+ // }
+ // }
+ // }
} else {
this.$message.error(response.message);
}
@@ -353,17 +355,19 @@ export default {
center: true,
}).then(() => {
if (this.checkedBusTypes != null) {
- this.configQuery.busTypes = [];
- for (let i = 0; i < this.checkedBusTypes.length; i++) {
- this.configQuery.busTypes.push(this.checkedBusTypes[i].action);
- }
+ this.configQuery.busTypes = this.checkedBusTypes;
+ // for (let i = 0; i < this.checkedBusTypes.length; i++) {
+ // this.configQuery.busTypes.push(this.checkedBusTypes);
+ // }
}
updateConfig(this.configQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
- this.$message.success("更新成功!");
+ this.$message.success("修改成功!");
this.getConfig();
+ } else {
+ this.$message.error(response.message);
}
})
.catch(() => {
@@ -414,6 +418,7 @@ export default {
addBusType() {
var selectData = this.multipleSelection;
selectData.forEach((obj) => {
+ obj.outChange = false;
this.checkedBusTypes.push(obj);
});
this.addBusDialogVisible = false;