From f9e6eb6fc2c2e0c2a2b17238b817fcbfcb6bab56 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 10 八月 2026 16:38:45 +0800
Subject: [PATCH] feat(erp): 添加采购来票管理和付款关联功能

---
 src/views/erp/finance/payment/index.vue |   21 ++++++++++-----------
 1 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/src/views/erp/finance/payment/index.vue b/src/views/erp/finance/payment/index.vue
index 36cd0aa..a2aa1bc 100644
--- a/src/views/erp/finance/payment/index.vue
+++ b/src/views/erp/finance/payment/index.vue
@@ -4,8 +4,8 @@
 
 import { ref } from 'vue';
 
-import { DocAlert, Page, useVbenModal } from '..\..\..\..\packages\effects\common-ui\src';
-import { downloadFileFromBlobPart, isEmpty } from '..\..\..\..\packages\utils\src';
+import { Page, useVbenModal } from '@vben/common-ui';
+import { downloadFileFromBlobPart, isEmpty } from '@vben/utils';
 
 import { message } from 'ant-design-vue';
 
@@ -133,15 +133,7 @@
 </script>
 
 <template>
-  <Page auto-content-height>
-    <template #doc>
-      <DocAlert
-        title="銆愯储鍔°�戦噰璐粯娆俱�侀攢鍞敹娆�"
-        url="https://doc.iocoder.cn/sale/finance-payment-receipt/"
-      />
-    </template>
-
-    <FormModal @success="handleRefresh" />
+  <Page auto-content-height><FormModal @success="handleRefresh" />
     <Grid table-title="浠樻鍗曞垪琛�">
       <template #toolbar-tools>
         <TableAction
@@ -175,6 +167,13 @@
           ]"
         />
       </template>
+      <template #invoice="{ row }">
+        <span v-if="row.invoice">
+          {{ row.invoice.no
+          }}{{ row.invoice.invoiceNo ? ` / ${row.invoice.invoiceNo}` : '' }}
+        </span>
+        <span v-else>--</span>
+      </template>
       <template #actions="{ row }">
         <TableAction
           :actions="[

--
Gitblit v1.9.3