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;