From d276659287dc284a93f2870902275c55f8de6a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=9B=E5=AE=87?= <2433098676@qq.com> Date: Tue, 25 Jul 2023 16:12:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BE=9B=E5=BA=94=E5=95=86=E5=8F=91=E7=A5=A8-?= =?UTF-8?q?=E5=8D=95=E6=8D=AE=E5=8F=91=E7=A5=A8=E4=BF=A1=E6=81=AF=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E5=88=86=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/InvoiceRegByOrder.vue | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/views/inout/InvoiceRegByOrder.vue b/src/views/inout/InvoiceRegByOrder.vue index 56aedab..44939a1 100644 --- a/src/views/inout/InvoiceRegByOrder.vue +++ b/src/views/inout/InvoiceRegByOrder.vue @@ -1065,19 +1065,19 @@ export default { this.bizQuery.page = 1; this.getBizDetailListInv(); }, - getBizDetailListInv(row) { + getBizDetailListInv() { if (isBlank(this.currentRow.billNo)) { this.$message.error("请先选择需要查询的单据!") return; } this.invoiceLoading = true; - this.bizQuery.orderIdFk = this.currentRow.billNo; - if (row != null) { - this.bizQuery.orderIdFk = row.orderIdFk; - this.bizQuery.batchNo = row.batchNo; - this.bizQuery.relId = row.bindRlFk; - //this.bizQuery.bizIdFk = row.id; - } + //this.bizQuery.orderIdFk = this.currentRow.billNo; + // if (row != null) { + // this.bizQuery.orderIdFk = row.orderIdFk; + // this.bizQuery.batchNo = row.batchNo; + // this.bizQuery.relId = row.bindRlFk; + // //this.bizQuery.bizIdFk = row.id; + // } filterListInvoice(this.bizQuery).then((res) => { this.invoiceLoading = false; if (res.code === 20000) { @@ -1101,7 +1101,10 @@ export default { this.regId = row.id; this.bizQuery.page = 1; this.subRow = row; - this.getBizDetailListInv(row); + this.bizQuery.orderIdFk = row.orderIdFk; + this.bizQuery.batchNo = row.batchNo; + this.bizQuery.relId = row.bindRlFk; + this.getBizDetailListInv(); }, determine(row) { this.determineData = row;