From fb0bacf0db3191a8dcafb15f8b270fc20bacc3ad Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Tue, 7 Mar 2023 16:09:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/InvCountCodes.vue | 4 +-- src/views/inventory/InvCountOrderModify.vue | 27 +++++++++++---------- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/src/views/inventory/InvCountCodes.vue b/src/views/inventory/InvCountCodes.vue index 7034e528..554200ce 100644 --- a/src/views/inventory/InvCountCodes.vue +++ b/src/views/inventory/InvCountCodes.vue @@ -47,7 +47,7 @@ import {getCountCodesList, deleteCode} from "@/api/inventory/invCountCodes"; export default { name: "InvCountCodes", props: { - countQuery: { + codeQuery: { type: Object, required: true, }, @@ -89,7 +89,7 @@ export default { this.getCodeList(); }, getCodeList() { - this.loading = true; + this.loading = true; this.query.relId = this.codeQuery.relId; this.query.orderIdFk = this.codeQuery.orderIdFk; this.query.batchNo = this.codeQuery.batchNo; diff --git a/src/views/inventory/InvCountOrderModify.vue b/src/views/inventory/InvCountOrderModify.vue index a3fdd29d..70c94a84 100644 --- a/src/views/inventory/InvCountOrderModify.vue +++ b/src/views/inventory/InvCountOrderModify.vue @@ -541,19 +541,20 @@ export default { this.$message.warning("请先选择盘点仓库和货位"); return; } - let params = { - invCode: this.formData.invCode, - invSpaceCode: this.formData.invSpaceCode - }; - getCountInvProductProduct(params).then((res) => { - if (res.data.total !== 0) { - let invProductList = res.data.list; - for (let product of invProductList) { - this.countProductList.push(product); - } - this.saveOrder(1); - } - }); + this.selectInvProductVisible = true; + // let params = { + // invCode: this.formData.invCode, + // invSpaceCode: this.formData.invSpaceCode + // }; + // getCountInvProductProduct(params).then((res) => { + // if (res.data.total !== 0) { + // let invProductList = res.data.list; + // for (let product of invProductList) { + // this.countProductList.push(product); + // } + // this.saveOrder(1); + // } + // }); } else if (this.countType === 2) { if (isBlank(this.formData.invCode) || isBlank(this.formData.invSpaceCode)) { this.$message.warning("请先选盘点仓库");