From 1deae1d89a7039ef0b943be291f6c1b9aaa5ad2c Mon Sep 17 00:00:00 2001
From: hsy <1029150275@qq.com>
Date: 星期一, 17 八月 2026 10:30:33 +0800
Subject: [PATCH] feat(mes): 生产报工新增「可报工数量」展示 - `src/api/mes/pro/task/index.ts`: `MesProTaskApi.Task` 接口新增 `reportableQuantity` (可报工数量) 字段定义 - `src/views/mes/pro/feedback/data.ts`: - 生产报工弹框表单中新增「可报工数量」字段展示,设置为不可编辑,且仅在新建/编辑模式下显示 - 在生产任务选择弹框 (`ProTaskSelect`) 的 `onChange` 事件中,自动从选中的任务对象中提取并带入 `reportableQuantity` - 完善了表单联动的重置逻辑,确保更换工单等操作时正确清空此字段
---
src/api/crm/business/status/index.ts | 27 ++-------------------------
1 files changed, 2 insertions(+), 25 deletions(-)
diff --git a/src/api/crm/business/status/index.ts b/src/api/crm/business/status/index.ts
index 0446782..b650079 100644
--- a/src/api/crm/business/status/index.ts
+++ b/src/api/crm/business/status/index.ts
@@ -1,4 +1,4 @@
-import type { PageParam, PageResult } from '..\..\..\..\packages\effects\request\src';
+import type { PageParam, PageResult } from '@vben/request';
import { requestClient } from '#/api/request';
@@ -19,32 +19,9 @@
id?: number;
name: string;
percent?: number;
- endStatus?: number;
- key?: string;
+ sort?: number;
}
}
-
-/** 榛樿鍟嗘満鐘舵�� */
-export const DEFAULT_STATUSES = [
- {
- endStatus: 1,
- key: '缁撴潫',
- name: '璧㈠崟',
- percent: 100,
- },
- {
- endStatus: 2,
- key: '缁撴潫',
- name: '杈撳崟',
- percent: 0,
- },
- {
- endStatus: 3,
- key: '缁撴潫',
- name: '鏃犳晥',
- percent: 0,
- },
-] satisfies CrmBusinessStatusApi.BusinessStatusType[];
/** 鏌ヨ鍟嗘満鐘舵�佺粍鍒楄〃 */
export function getBusinessStatusPage(params: PageParam) {
--
Gitblit v1.9.3