diff --git a/src/views/basic/BussinessType.vue b/src/views/basic/BussinessType.vue index 4f4243e..ed29533 100644 --- a/src/views/basic/BussinessType.vue +++ b/src/views/basic/BussinessType.vue @@ -211,6 +211,7 @@ export default { scanPreIn: null, vailInv: null, codeFillCheck: null, + defaultInv:null, defaultSubInv: null, }, enableMap: { @@ -357,7 +358,8 @@ export default { vailInv: row.vailInv, codeFillCheck: row.codeFillCheck, changeEnable: row.changeEnable, - defaultSubInv: row.defaultSubInv + defaultSubInv: row.defaultSubInv, + defaultInv:row.defaultInv, }; this.modifyDialogVisible = true; diff --git a/src/views/basic/BussinessTypeModify.vue b/src/views/basic/BussinessTypeModify.vue index 1c92c85..091b395 100644 --- a/src/views/basic/BussinessTypeModify.vue +++ b/src/views/basic/BussinessTypeModify.vue @@ -153,9 +153,22 @@
- 补单默认分库:  + 补单默认仓库: 
- + + {{ item.name }} + + + { this.storageList = response.data || []; + this.findDefaultSubInv(); }) .catch(() => { }); }, + + invChange() { + if (this.$isNotBlank(this.inputQuery.defaultSubInv)) + this.inputQuery.defaultSubInv = null; + this.findDefaultSubInv(); + }, findSpecialMethod() { let query = { corpType: 4, @@ -473,7 +493,7 @@ export default { findDefaultSubInv() { this.subInvList = []; let query = { - pcode: "1000" + pcode: this.inputQuery.defaultInv }; filterSubByInv(query) .then((response) => { @@ -507,7 +527,6 @@ export default { this.getList(); this.getStorage(); this.findSpecialMethod(); - this.findDefaultSubInv(); }, }; diff --git a/src/views/home/index.vue b/src/views/home/index.vue index ec6e7b4..0cbeb13 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -408,7 +408,7 @@ export default { locCHange() { - if(this.$isNotBlank(this.userInfo.locSubInvCode)){ + if (this.$isNotBlank(this.userInfo.locSubInvCode)) { this.userInfo.locSubInvCode = ""; } this.findSubInvByInv();