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

dev
薛宇 2 years ago
parent aa8d1ca4f8
commit d276659287

@ -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;

Loading…
Cancel
Save