供应商发票-单据发票信息无法分页

dev
薛宇 2 years ago
parent aa8d1ca4f8
commit d276659287

@ -1065,19 +1065,19 @@ export default {
this.bizQuery.page = 1; this.bizQuery.page = 1;
this.getBizDetailListInv(); this.getBizDetailListInv();
}, },
getBizDetailListInv(row) { getBizDetailListInv() {
if (isBlank(this.currentRow.billNo)) { if (isBlank(this.currentRow.billNo)) {
this.$message.error("请先选择需要查询的单据!") this.$message.error("请先选择需要查询的单据!")
return; return;
} }
this.invoiceLoading = true; this.invoiceLoading = true;
this.bizQuery.orderIdFk = this.currentRow.billNo; //this.bizQuery.orderIdFk = this.currentRow.billNo;
if (row != null) { // if (row != null) {
this.bizQuery.orderIdFk = row.orderIdFk; // this.bizQuery.orderIdFk = row.orderIdFk;
this.bizQuery.batchNo = row.batchNo; // this.bizQuery.batchNo = row.batchNo;
this.bizQuery.relId = row.bindRlFk; // this.bizQuery.relId = row.bindRlFk;
//this.bizQuery.bizIdFk = row.id; // //this.bizQuery.bizIdFk = row.id;
} // }
filterListInvoice(this.bizQuery).then((res) => { filterListInvoice(this.bizQuery).then((res) => {
this.invoiceLoading = false; this.invoiceLoading = false;
if (res.code === 20000) { if (res.code === 20000) {
@ -1101,7 +1101,10 @@ export default {
this.regId = row.id; this.regId = row.id;
this.bizQuery.page = 1; this.bizQuery.page = 1;
this.subRow = row; 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) { determine(row) {
this.determineData = row; this.determineData = row;

Loading…
Cancel
Save