From 063434949e7ebd21524356ed87bd38de6e86eaac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Tue, 16 May 2023 14:22:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=93=E5=AD=98=E6=98=8E=E7=BB=86=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/InvoiceCkeck.vue | 1 - src/views/inventory/InvOrderPlaceModify.vue | 1 - src/views/inventory/InvProducts.vue | 4 +++- src/views/inventory/InvProductsDetail.vue | 4 ++++ 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue index ff8b4e0b..a0e4a078 100644 --- a/src/views/inout/InvoiceCkeck.vue +++ b/src/views/inout/InvoiceCkeck.vue @@ -521,7 +521,6 @@ export default { uploadHandleError() { }, uploadHandleSuccess(response, file, fileList) { - debugger; if (response.code === 20000) { this.inputQuery.licenseUrl = response.data.name; // this.onSubmit(); diff --git a/src/views/inventory/InvOrderPlaceModify.vue b/src/views/inventory/InvOrderPlaceModify.vue index ef421115..32be9521 100644 --- a/src/views/inventory/InvOrderPlaceModify.vue +++ b/src/views/inventory/InvOrderPlaceModify.vue @@ -366,7 +366,6 @@ export default { oId: this.currentOrderId, }; getInvProductOrderInfo(params).then((res) => { - debugger; if (res.code == 20000) { this.orderId = res.data; getInvPlaceOrderDetailList({ orderId: this.orderId }).then((res) => { diff --git a/src/views/inventory/InvProducts.vue b/src/views/inventory/InvProducts.vue index deaae103..d8caacec 100644 --- a/src/views/inventory/InvProducts.vue +++ b/src/views/inventory/InvProducts.vue @@ -392,6 +392,7 @@ export default { detailDialog(row) { this.detailDialogVisible = true; this.inputQuery = { + code: row.code, relId: row.relIdFk, cpmctymc: row.cpmctymc, nameCode: row.nameCode, @@ -401,7 +402,8 @@ export default { expireDate: row.expireDate, supId: row.supId, deptCode: row.deptCode, - invCode: row.invCode + invCode: row.invCode, + invSpaceCode: row.invSpaceCode } }, closeDetailDialog() { diff --git a/src/views/inventory/InvProductsDetail.vue b/src/views/inventory/InvProductsDetail.vue index b639c6a8..14ed1419 100644 --- a/src/views/inventory/InvProductsDetail.vue +++ b/src/views/inventory/InvProductsDetail.vue @@ -177,9 +177,13 @@ export default { this.loading = true; this.invProductDetailQuery.relId = this.inputQuery.relId; this.invProductDetailQuery.supId = this.inputQuery.supId; + this.invProductDetailQuery.invSpaceCode = this.inputQuery.invSpaceCode; this.invProductDetailQuery.batchNo = this.inputQuery.batchNo; this.invProductDetailQuery.deptCode = this.inputQuery.deptCode; this.invProductDetailQuery.invCode = this.inputQuery.invCode; + if(!isBlank(this.invProductDetailQuery.invSpaceCode)){ + this.invProductDetailQuery.code=this.inputQuery.code + } getInvProductDetail(this.invProductDetailQuery).then((res) => { this.loading = false; if (res.code === 20000) {