From e0f3bb60dd96d2ee8d4294100d02fcec7dfec1f5 Mon Sep 17 00:00:00 2001
From: wangwei <1610949092@qq.com>
Date: Sat, 25 Mar 2023 11:27:50 +0800
Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E7=A5=A8=E7=99=BB=E8=AE=B0=20?=
=?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8D=95=E6=8D=AE=E8=AF=A6=E6=83=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/inout/InvoiceRegistration.vue | 136 +++++++++++++++++++++++-
1 file changed, 134 insertions(+), 2 deletions(-)
diff --git a/src/views/inout/InvoiceRegistration.vue b/src/views/inout/InvoiceRegistration.vue
index e52572f..55cf7fc 100644
--- a/src/views/inout/InvoiceRegistration.vue
+++ b/src/views/inout/InvoiceRegistration.vue
@@ -194,7 +194,6 @@
-
订单 {{ currentRow.billNo }}-发票信息
@@ -253,7 +252,7 @@
prop="remark"
show-overflow-tooltip
>
-
+
+
+
+
+ 单据 {{ currentRow.billNo }}-单据详情
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{
+ this.resultDetailLoading = false;
+ if (res.code === 20000) {
+ this.resultDetailList = res.data.list || [];
+ this.resultTotal = res.data.total || 0;
+ } else {
+ this.$message.error(res.message);
+ this.resultDetailList = [];
+ this.resultTotal = 0;
+ }
+ }).catch((error) => {
+ this.resultDetailLoading = false;
+ this.$message.error(error.message);
+ this.resultDetailList = [];
+ this.resultTotal = 0;
+ });
+ },
+
+ getCodeDetailList() {
+ if (isBlank(this.currentRow.billNo)) {
+ this.$message.error("请先选择需要查询的单据!")
+ return;
+ }
+
+ this.codeQuery.orderIdFk = this.currentRow.billNo;
+ this.codeDetailLoading = true;
+ getCodeDetailList(this.codeQuery).then((res) => {
+ this.codeDetailLoading = false;
+ if (res.code === 20000) {
+ this.codeDetailList = res.data.list || [];
+ this.codeTotal = res.data.total || 0;
+ } else {
+ this.$message.error(res.message);
+ this.codeDetailList = [];
+ this.codeTotal = 0;
+ }
+ }).catch((error) => {
+ this.codeDetailLoading = true;
+ this.$message.error(error.message);
+ this.codeDetailList = [];
+ this.codeTotal = 0;
+ })
+ },
onBizReset() {
this.bizQuery = {
productName: null,