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,