From 46624ce480a3c14da21f39cc4ad5f7eecea2bb1e Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期四, 17 九月 2026 16:24:28 +0800
Subject: [PATCH] feat(mes): 优化生产批次和袋码管理功能

---
 src/views/basicData/mdm/data.ts |   59 +----------------------------------------------------------
 1 files changed, 1 insertions(+), 58 deletions(-)

diff --git a/src/views/basicData/mdm/data.ts b/src/views/basicData/mdm/data.ts
index 0ec3d1d..94837a7 100644
--- a/src/views/basicData/mdm/data.ts
+++ b/src/views/basicData/mdm/data.ts
@@ -9,7 +9,6 @@
 import { z } from '#/adapter/form';
 import { generateAutoCode } from '#/api/mes/md/autocode/record';
 import { MesAutoCodeRuleCode } from '@vben/constants';
-import { getItemTypeSimpleList } from '#/api/mes/md/item/type';
 import { getUnitPage } from '#/api/mdm/unit';
 import { getWarehouseSimpleList } from '#/api/mes/wm/warehouse';
 
@@ -22,24 +21,6 @@
 // 缂撳瓨浠撳簱鍒楄〃
 let warehouseListCache: any[] | null = null;
 let warehouseListPromise: Promise<any[]> | null = null;
-
-/** 灏嗘墎骞冲垎绫诲垪琛ㄨ浆涓� TreeSelect 鎵�闇�鐨勬爲褰㈢粨鏋� */
-export function buildCategoryTree(list: any[]): any[] {
-  const map = new Map<number, any>();
-  const roots: any[] = [];
-  for (const item of list) {
-    map.set(item.id, { label: item.name, value: item.id, children: [] });
-  }
-  for (const item of list) {
-    const node = map.get(item.id)!;
-    if (item.parentId && map.has(item.parentId)) {
-      map.get(item.parentId)!.children.push(node);
-    } else {
-      roots.push(node);
-    }
-  }
-  return roots;
-}
 
 /** 鑾峰彇鍗曚綅鍒楄〃锛堝甫缂撳瓨锛� */
 async function getUnitListCached() {
@@ -82,7 +63,7 @@
 }
 
 /** 鏂板/淇敼鐨勮〃鍗� */
-export function useFormSchema(formApi?: VbenFormApi, categoryTreeData: any[] = []): VbenFormSchema[] {
+export function useFormSchema(formApi?: VbenFormApi): VbenFormSchema[] {
   return [
     {
       component: "Input",
@@ -124,19 +105,6 @@
         placeholder: "璇疯緭鍏ュ搧绉嶅悕绉�",
       },
       rules: "required",
-    },
-    {
-      component: "TreeSelect",
-      fieldName: "categoryId",
-      label: "鍝佺鍒嗙被",
-      rules: "selectRequired",
-      componentProps: {
-        placeholder: "璇烽�夋嫨鍝佺鍒嗙被",
-        allowClear: true,
-        treeDefaultExpandAll: true,
-        treeData: categoryTreeData,
-        fieldNames: { label: 'label', value: 'value', children: 'children' },
-      },
     },
     {
       component: "Input",
@@ -242,17 +210,6 @@
       label: "鏉$爜",
       componentProps: {
         placeholder: "璇疯緭鍏ユ潯鐮�",
-      },
-    },
-    {
-      component: "InputNumber",
-      fieldName: "purchasePrice",
-      label: "閲囪喘浠�",
-      componentProps: {
-        class: "!w-full",
-        min: 0,
-        precision: 2,
-        placeholder: "璇疯緭鍏ラ噰璐环",
       },
     },
     {
@@ -541,12 +498,6 @@
       minWidth: 150,
     },
     {
-      field: "categoryName",
-      title: "鍝佺鍒嗙被",
-      minWidth: 120,
-      slots: { default: "categoryName" },
-    },
-    {
       field: "unitMeasureName",
       title: "鍗曚綅",
       minWidth: 80,
@@ -575,14 +526,6 @@
       field: "warehouseName",
       title: "榛樿浠撳簱",
       minWidth: 100,
-    },
-    {
-      field: "purchasePrice",
-      title: "閲囪喘浠�",
-      minWidth: 100,
-      formatter: ({ cellValue }) => {
-        return cellValue != null ? `楼${Number(cellValue).toFixed(2)}` : "";
-      },
     },
     {
       field: "salesPrice",

--
Gitblit v1.9.3