diff --git a/src/views/inout/InvoiceCkeck.vue b/src/views/inout/InvoiceCkeck.vue index 3b1696f..f80a34f 100644 --- a/src/views/inout/InvoiceCkeck.vue +++ b/src/views/inout/InvoiceCkeck.vue @@ -294,7 +294,7 @@ export default { required: true, }, getOrderDetails: { - type: Object, + type: Function, required: true, }, invoiceRow: { @@ -519,6 +519,7 @@ export default { .then((response) => { if (response.code === 20000) { this.statusCode = response.code; + this.getOrderDetails(); } else { this.$message.error(response.message); } diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue index 648af73..f5875fe 100644 --- a/src/views/inout/InvoiceRegistration.vue +++ b/src/views/inout/InvoiceRegistration.vue @@ -460,6 +460,7 @@ @@ -835,6 +836,9 @@ export default { deleteById(row) .then((response) => { if (response.code == 20000) { + if(response.data.length == 0){ + this.getList(); + } this.getBizDetailListInv(this.subRow); this.$message({ type: "success", @@ -1015,7 +1019,7 @@ export default { } this.codeQuery.orderIdFk = this.currentRow.billNo; this.codeDetailLoading = true; - + this.codeDetailList=[]; filterBizOrderList(this.codeQuery).then((res) => { this.codeDetailLoading = false; if (res.code === 20000) {