From 76c9a49c3ded285857f0c252def2552469b85825 Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 10 八月 2026 17:12:26 +0800
Subject: [PATCH] feat(erp): 新增采购发票功能并优化付款流程

---
 src/views/erp/purchase/invoice/modules/purchase-order-select.vue |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/views/erp/purchase/invoice/modules/purchase-order-select.vue b/src/views/erp/purchase/invoice/modules/purchase-order-select.vue
index 1c6ca0b..a3e1109 100644
--- a/src/views/erp/purchase/invoice/modules/purchase-order-select.vue
+++ b/src/views/erp/purchase/invoice/modules/purchase-order-select.vue
@@ -7,7 +7,7 @@
 import { DICT_TYPE } from '@vben/constants';
 import { IconifyIcon } from '@vben/icons';
 
-import { Input, Modal } from 'ant-design-vue';
+import { Input, message, Modal } from 'ant-design-vue';
 
 import { useVbenVxeGrid } from '#/adapter/vxe-table';
 import {
@@ -76,6 +76,7 @@
   },
   gridOptions: {
     columns: [
+      { type: 'radio', width: 50, fixed: 'left' },
       { field: 'no', title: '璁㈠崟鍗曞彿', width: 200, fixed: 'left' },
       { field: 'supplierName', title: '渚涘簲鍟�', minWidth: 120 },
       {
@@ -147,6 +148,7 @@
 /** 纭閫夋嫨閲囪喘璁㈠崟 */
 function handleOk() {
   if (!order.value?.id) {
+    message.warning('璇烽�夋嫨閲囪喘璁㈠崟');
     return;
   }
   emit('update:modelValue', order.value.id);

--
Gitblit v1.9.3