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) {