From 2271982de09628a04da06630c4ab690ef64fbfab Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期三, 19 八月 2026 10:55:06 +0800
Subject: [PATCH] refactor(mdm): 将物料相关字段统一改为品种并优化下拉菜单确认逻辑

---
 src/api/hrm/attendance/exception/index.ts |   23 ++++++++++++++++++++---
 1 files changed, 20 insertions(+), 3 deletions(-)

diff --git a/src/api/hrm/attendance/exception/index.ts b/src/api/hrm/attendance/exception/index.ts
index 5bb1014..1adeb2a 100644
--- a/src/api/hrm/attendance/exception/index.ts
+++ b/src/api/hrm/attendance/exception/index.ts
@@ -1,6 +1,7 @@
 import type { PageParam, PageResult } from '#/packages/effects/request/src';
 
 import { requestClient } from '#/api/request';
+import type { SystemStorageApi } from '#/api/system/storage';
 
 export namespace HrmAttendanceExceptionApi {
   /** 鑰冨嫟寮傚父鐢宠 */
@@ -13,11 +14,18 @@
     exceptionType?: number;
     exceptionTypeName?: string;
     reason?: string;
-    fileUrl?: string;
+    blobIds?: number[];
+    attachmentList?: SystemStorageApi.StorageBlob[];
     status?: number;
     processInstanceId?: string;
     remark?: string;
     createTime?: string;
+  }
+
+  /** 瀹℃壒娴佺▼ */
+  export interface ApproveProcess {
+    key: string;
+    name: string;
   }
 }
 
@@ -44,6 +52,15 @@
 }
 
 /** 鎻愪氦鑰冨嫟寮傚父鐢宠 */
-export function submitAttendanceException(id: number) {
-  return requestClient.post(`/hrm/attendance/exception/submit?id=${id}`);
+export function submitAttendanceException(id: number, processDefinitionKey: string) {
+  return requestClient.post('/hrm/attendance/exception/submit', null, {
+    params: { id, processDefinitionKey },
+  });
+}
+
+/** 鑾峰彇鑰冨嫟寮傚父瀹℃壒娴佺▼鍒楄〃 */
+export function getAttendanceExceptionApproveProcessList() {
+  return requestClient.get<HrmAttendanceExceptionApi.ApproveProcess[]>(
+    '/hrm/attendance/exception/approve-process-list',
+  );
 }
\ No newline at end of file

--
Gitblit v1.9.3