gaoluyang
8 天以前 696e85cf6422c703fbba63df097320bd813d9926
Merge remote-tracking branch 'origin/dev_pro2.0' into dev_pro2.0

# Conflicts:
# src/views/basicData/mdm/data.ts
# src/views/basicData/mdm/modules/form.vue
已修改5个文件
908 ■■■■ 文件已修改
src/api/mes/pro/route/process/index.ts 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/basicData/mdm/data.ts 379 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/basicData/mdm/modules/form.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mes/process-design/route/data.ts 478 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
vite.config.ts 44 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/mes/pro/route/process/index.ts
@@ -17,6 +17,7 @@
    colorCode?: string;
    keyFlag?: boolean;
    checkFlag?: boolean;
    backflushFlag?: boolean;
    remark?: string;
    createTime?: Date;
  }
src/views/basicData/mdm/data.ts
@@ -1,155 +1,155 @@
import type { VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { VbenFormSchema } from "#/adapter/form";
import type { VxeTableGridOptions } from "#/adapter/vxe-table";
import { CommonStatusEnum, DICT_TYPE } from '#/packages/constants/src';
import { getDictOptions } from '#/packages/effects/hooks/src';
import { CommonStatusEnum, DICT_TYPE } from "#/packages/constants/src";
import { getDictOptions } from "#/packages/effects/hooks/src";
import { z } from '#/adapter/form';
import { getUnitPage } from '#/api/mdm/unit';
/** 物料类型选项 */
export const ITEM_TYPE_OPTIONS = [
  { label: '原料', value: 1 },
  { label: '半成品', value: 2 },
  { label: '成品', value: 3 },
  { label: '辅料', value: 4 },
  { label: "原料", value: 1 },
  { label: "半成品", value: 2 },
  { label: "成品", value: 3 },
  { label: "辅料", value: 4 },
];
/** 物料类型映射 */
export const ITEM_TYPE_MAP: Record<number, string> = {
  1: '原料',
  2: '半成品',
  3: '成品',
  4: '辅料',
  1: "原料",
  2: "半成品",
  3: "成品",
  4: "辅料",
};
/** 物料类型颜色映射 */
export const ITEM_TYPE_COLOR_MAP: Record<number, string> = {
  1: 'green',
  2: 'orange',
  3: 'blue',
  4: 'purple',
  1: "green",
  2: "orange",
  3: "blue",
  4: "purple",
};
/** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] {
  return [
    {
      component: 'Input',
      fieldName: 'id',
      component: "Input",
      fieldName: "id",
      dependencies: {
        triggerFields: [''],
        triggerFields: [""],
        show: () => false,
      },
    },
    {
      component: 'Input',
      fieldName: 'code',
      label: '物料编码',
      component: "Input",
      fieldName: "code",
      label: "物料编码",
      componentProps: {
        placeholder: '请输入物料编码',
        placeholder: "请输入物料编码",
      },
      rules: 'required',
      rules: "required",
    },
    {
      component: 'Input',
      fieldName: 'name',
      label: '物料名称',
      component: "Input",
      fieldName: "name",
      label: "物料名称",
      componentProps: {
        placeholder: '请输入物料名称',
        placeholder: "请输入物料名称",
      },
      rules: 'required',
      rules: "required",
    },
    {
      component: 'RadioGroup',
      fieldName: 'itemType',
      label: '物料类型',
      component: "RadioGroup",
      fieldName: "itemType",
      label: "物料类型",
      componentProps: {
        options: ITEM_TYPE_OPTIONS,
        buttonStyle: 'solid',
        optionType: 'button',
        buttonStyle: "solid",
        optionType: "button",
      },
      rules: 'required',
      rules: "required",
    },
    {
      component: 'Input',
      fieldName: 'specification',
      label: '规格型号',
      component: "Input",
      fieldName: "specification",
      label: "规格型号",
      componentProps: {
        placeholder: '请输入规格型号',
        placeholder: "请输入规格型号",
      },
    },
    {
      component: 'ApiSelect',
      fieldName: 'unitMeasureId',
      label: '计量单位',
      rules: 'required',
      formItemClass: 'col-span-1',
      component: "ApiSelect",
      fieldName: "unitMeasureId",
      label: "计量单位",
      rules: "required",
      formItemClass: "col-span-1",
      componentProps: {
        placeholder: '请选择计量单位',
        placeholder: "请选择计量单位",
        allowClear: true,
        api: async () => {
          const res = await getUnitPage({ pageNo: 1, pageSize: 100, status: 0 });
          return res.list || [];
        },
        labelField: 'name',
        valueField: 'id',
        labelField: "name",
        valueField: "id",
      },
    },
    {
      component: 'ApiSelect',
      fieldName: 'unitMeasureId2',
      label: '辅单位1',
      formItemClass: 'col-span-1',
      component: "ApiSelect",
      fieldName: "unitMeasureId2",
      label: "辅单位1",
      formItemClass: "col-span-1",
      componentProps: {
        placeholder: '请选择辅单位1',
        placeholder: "请选择辅单位1",
        allowClear: true,
        api: async () => {
          const res = await getUnitPage({ pageNo: 1, pageSize: 100, status: 0 });
          return res.list || [];
        },
        labelField: 'name',
        valueField: 'id',
        labelField: "name",
        valueField: "id",
      },
    },
    {
      component: 'InputNumber',
      fieldName: 'unitMeasureRate1',
      label: '辅单位1换算比率',
      formItemClass: 'col-span-1',
      component: "InputNumber",
      fieldName: "unitMeasureRate1",
      label: "辅单位1换算比率",
      formItemClass: "col-span-1",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 6,
        placeholder: '请输入换算比率',
        placeholder: "请输入换算比率",
      },
    },
    {
      component: 'ApiSelect',
      fieldName: 'unitMeasureId3',
      label: '辅单位2',
      formItemClass: 'col-span-1',
      component: "ApiSelect",
      fieldName: "unitMeasureId3",
      label: "辅单位2",
      formItemClass: "col-span-1",
      componentProps: {
        placeholder: '请选择辅单位2',
        placeholder: "请选择辅单位2",
        allowClear: true,
        api: async () => {
          const res = await getUnitPage({ pageNo: 1, pageSize: 100, status: 0 });
          return res.list || [];
        },
        labelField: 'name',
        valueField: 'id',
        labelField: "name",
        valueField: "id",
      },
    },
    {
      component: 'InputNumber',
      fieldName: 'unitMeasureRate2',
      label: '辅单位2换算比率',
      formItemClass: 'col-span-1',
      component: "InputNumber",
      fieldName: "unitMeasureRate2",
      label: "辅单位2换算比率",
      formItemClass: "col-span-1",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 6,
        placeholder: '请输入换算比率',
        placeholder: "请输入换算比率",
      },
    },
    {
@@ -161,77 +161,77 @@
      },
    },
    {
      component: 'Input',
      fieldName: 'barCode',
      label: '条码',
      component: "Input",
      fieldName: "barCode",
      label: "条码",
      componentProps: {
        placeholder: '请输入条码',
        placeholder: "请输入条码",
      },
    },
    {
      component: 'InputNumber',
      fieldName: 'purchasePrice',
      label: '采购价',
      component: "InputNumber",
      fieldName: "purchasePrice",
      label: "采购价",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 2,
        placeholder: '请输入采购价',
        placeholder: "请输入采购价",
      },
    },
    {
      component: 'InputNumber',
      fieldName: 'salesPrice',
      label: '销售价',
      component: "InputNumber",
      fieldName: "salesPrice",
      label: "销售价",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 2,
        placeholder: '请输入销售价',
        placeholder: "请输入销售价",
      },
    },
    {
      component: 'InputNumber',
      fieldName: 'costPrice',
      label: '成本价',
      component: "InputNumber",
      fieldName: "costPrice",
      label: "成本价",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 2,
        placeholder: '请输入成本价',
        placeholder: "请输入成本价",
      },
    },
    {
      component: 'InputNumber',
      fieldName: 'safetyStock',
      label: '安全库存',
      component: "InputNumber",
      fieldName: "safetyStock",
      label: "安全库存",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 2,
        placeholder: '请输入安全库存',
        placeholder: "请输入安全库存",
      },
    },
    {
      component: 'InputNumber',
      fieldName: 'minStock',
      label: '最低库存',
      component: "InputNumber",
      fieldName: "minStock",
      label: "最低库存",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 2,
        placeholder: '请输入最低库存',
        placeholder: "请输入最低库存",
      },
    },
    {
      component: 'InputNumber',
      fieldName: 'maxStock',
      label: '最高库存',
      component: "InputNumber",
      fieldName: "maxStock",
      label: "最高库存",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 2,
        placeholder: '请输入最高库存',
        placeholder: "请输入最高库存",
      },
    },
    {
@@ -240,40 +240,51 @@
      label: '批次管理',
      defaultValue: true,
      componentProps: {
        class: 'w-auto',
        checkedChildren: '是',
        unCheckedChildren: '否',
        class: "w-auto",
        checkedChildren: "是",
        unCheckedChildren: "否",
      },
      rules: z.boolean().default(true),
    },
    {
      component: 'InputNumber',
      fieldName: 'expiryDay',
      label: '有效期(天)',
      component: "Switch",
      fieldName: "syncMes",
      label: "同步到 MES",
      componentProps: {
        class: '!w-full',
        class: "w-auto",
        checkedChildren: "是",
        unCheckedChildren: "否",
      },
      rules: z.boolean().default(false),
    },
    {
      component: "InputNumber",
      fieldName: "expiryDay",
      label: "有效期(天)",
      componentProps: {
        class: "!w-full",
        min: 0,
        placeholder: '请输入有效期',
        placeholder: "请输入有效期",
      },
    },
    {
      component: 'RadioGroup',
      fieldName: 'status',
      label: '状态',
      component: "RadioGroup",
      fieldName: "status",
      label: "状态",
      componentProps: {
        options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
        buttonStyle: 'solid',
        optionType: 'button',
        options: getDictOptions(DICT_TYPE.COMMON_STATUS, "number"),
        buttonStyle: "solid",
        optionType: "button",
      },
      rules: z.number().default(CommonStatusEnum.ENABLE),
    },
    {
      component: 'Textarea',
      fieldName: 'remark',
      label: '备注',
      formItemClass: 'col-span-2',
      component: "Textarea",
      fieldName: "remark",
      label: "备注",
      formItemClass: "col-span-2",
      componentProps: {
        placeholder: '请输入备注',
        placeholder: "请输入备注",
        rows: 3,
      },
    },
@@ -284,143 +295,143 @@
export function useGridFormSchema(): VbenFormSchema[] {
  return [
    {
      fieldName: 'code',
      label: '物料编码',
      component: 'Input',
      fieldName: "code",
      label: "物料编码",
      component: "Input",
      componentProps: {
        placeholder: '请输入物料编码',
        placeholder: "请输入物料编码",
        allowClear: true,
      },
    },
    {
      fieldName: 'name',
      label: '物料名称',
      component: 'Input',
      fieldName: "name",
      label: "物料名称",
      component: "Input",
      componentProps: {
        placeholder: '请输入物料名称',
        placeholder: "请输入物料名称",
        allowClear: true,
      },
    },
    {
      fieldName: 'itemType',
      label: '物料类型',
      component: 'Select',
      fieldName: "itemType",
      label: "物料类型",
      component: "Select",
      componentProps: {
        placeholder: '请选择物料类型',
        placeholder: "请选择物料类型",
        allowClear: true,
        options: ITEM_TYPE_OPTIONS,
      },
    },
    {
      fieldName: 'status',
      label: '状态',
      component: 'Select',
      fieldName: "status",
      label: "状态",
      component: "Select",
      componentProps: {
        placeholder: '请选择状态',
        placeholder: "请选择状态",
        allowClear: true,
        options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
        options: getDictOptions(DICT_TYPE.COMMON_STATUS, "number"),
      },
    },
  ];
}
/** 列表的字段 */
export function useGridColumns(): VxeTableGridOptions['columns'] {
export function useGridColumns(): VxeTableGridOptions["columns"] {
  return [
    { type: 'checkbox', width: 40 },
    { type: "checkbox", width: 40 },
    {
      field: 'code',
      title: '物料编码',
      field: "code",
      title: "物料编码",
      minWidth: 120,
    },
    {
      field: 'name',
      title: '物料名称',
      field: "name",
      title: "物料名称",
      minWidth: 180,
    },
    {
      field: 'specification',
      title: '规格型号',
      field: "specification",
      title: "规格型号",
      minWidth: 150,
    },
    {
      field: 'unitMeasureName',
      title: '单位',
      field: "unitMeasureName",
      title: "单位",
      minWidth: 80,
    },
    {
      field: 'unitMeasureName2',
      title: '辅单位1',
      field: "unitMeasureName2",
      title: "辅单位1",
      minWidth: 80,
    },
    {
      field: 'unitMeasureRate1',
      title: '辅单位1换算比率',
      field: "unitMeasureRate1",
      title: "辅单位1换算比率",
      minWidth: 130,
    },
    {
      field: 'unitMeasureName3',
      title: '辅单位2',
      field: "unitMeasureName3",
      title: "辅单位2",
      minWidth: 80,
    },
    {
      field: 'unitMeasureRate2',
      title: '辅单位2换算比率',
      field: "unitMeasureRate2",
      title: "辅单位2换算比率",
      minWidth: 130,
    },
    {
      field: 'warehouseName',
      title: '默认仓库',
      field: "warehouseName",
      title: "默认仓库",
      minWidth: 100,
    },
    {
      field: 'itemType',
      title: '物料类型',
      field: "itemType",
      title: "物料类型",
      minWidth: 100,
      slots: { default: 'itemType' },
      slots: { default: "itemType" },
    },
    {
      field: 'purchasePrice',
      title: '采购价',
      field: "purchasePrice",
      title: "采购价",
      minWidth: 100,
      formatter: ({ cellValue }) => {
        return cellValue != null ? `¥${Number(cellValue).toFixed(2)}` : '';
        return cellValue != null ? `¥${Number(cellValue).toFixed(2)}` : "";
      },
    },
    {
      field: 'salesPrice',
      title: '销售价',
      field: "salesPrice",
      title: "销售价",
      minWidth: 100,
      formatter: ({ cellValue }) => {
        return cellValue != null ? `¥${Number(cellValue).toFixed(2)}` : '';
        return cellValue != null ? `¥${Number(cellValue).toFixed(2)}` : "";
      },
    },
    {
      field: 'isBatchManaged',
      title: '批次管理',
      field: "isBatchManaged",
      title: "批次管理",
      minWidth: 80,
      slots: { default: 'isBatchManaged' },
      slots: { default: "isBatchManaged" },
    },
    {
      field: 'status',
      title: '状态',
      field: "status",
      title: "状态",
      minWidth: 80,
      cellRender: {
        name: 'CellDict',
        name: "CellDict",
        props: { type: DICT_TYPE.COMMON_STATUS },
      },
    },
    {
      field: 'createTime',
      title: '创建时间',
      field: "createTime",
      title: "创建时间",
      minWidth: 180,
      formatter: 'formatDateTime',
      formatter: "formatDateTime",
    },
    {
      title: '操作',
      title: "操作",
      width: 180,
      fixed: 'right',
      slots: { default: 'actions' },
      fixed: "right",
      slots: { default: "actions" },
    },
  ];
}
src/views/basicData/mdm/modules/form.vue
@@ -5,9 +5,9 @@
import { computed, ref, watch } from 'vue';
import { useVbenModal } from '#/packages/effects/common-ui/src';
  import { useVbenModal } from "#/packages/effects/common-ui/src";
import { message } from 'ant-design-vue';
  import { message } from "ant-design-vue";
import { useVbenForm } from '#/adapter/form';
import { createItem, getItem, updateItem } from '#/api/mdm/item';
@@ -17,7 +17,7 @@
import { useFormSchema } from '../data';
import ItemBatchConfig from '../components/batch-config.vue';
defineOptions({ name: 'ItemForm' });
  defineOptions({ name: "ItemForm" });
const emit = defineEmits(['success']);
const formData = ref<MdmItemApi.Item>();
src/views/mes/process-design/route/data.ts
@@ -1,94 +1,85 @@
import type { VbenFormApi, VbenFormSchema } from '#/adapter/form';
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { MesProRouteApi } from '#/api/mes/pro/route';
import type { MesProRouteProcessApi } from '#/api/mes/pro/route/process';
import type { MesProRouteProductApi } from '#/api/mes/pro/route/product';
import type { MesProRouteProductBomApi } from '#/api/mes/pro/route/productbom';
import type { VbenFormApi, VbenFormSchema } from "#/adapter/form";
import type { VxeTableGridOptions } from "#/adapter/vxe-table";
import type { MesProRouteApi } from "#/api/mes/pro/route";
import type { MesProRouteProcessApi } from "#/api/mes/pro/route/process";
import type { MesProRouteProductApi } from "#/api/mes/pro/route/product";
import type { MesProRouteProductBomApi } from "#/api/mes/pro/route/productbom";
import { h, markRaw } from 'vue';
import { h, markRaw } from "vue";
import {
  CommonStatusEnum,
  DICT_TYPE,
  MesAutoCodeRuleCode,
} from '@vben/constants';
import { getDictOptions } from '@vben/hooks';
import { CommonStatusEnum, DICT_TYPE, MesAutoCodeRuleCode } from "@vben/constants";
import { getDictOptions } from "@vben/hooks";
import { Button } from 'ant-design-vue';
import { Button } from "ant-design-vue";
import { z } from '#/adapter/form';
import { generateAutoCode } from '#/api/mes/md/autocode/record';
import {
  MdItemSelect,
  MdProductBomSelect,
} from '#/views/mes/md/item/components';
import { z } from "#/adapter/form";
import { generateAutoCode } from "#/api/mes/md/autocode/record";
import { MdItemSelect, MdProductBomSelect } from "#/views/mes/md/item/components";
import { RouteColorPicker } from './components';
import { RouteColorPicker } from "./components";
/** 表单类型 */
export type FormType = 'create' | 'detail' | 'update';
export type FormType = "create" | "detail" | "update";
/** 工艺路线表单 */
export function useFormSchema(formApi?: VbenFormApi): VbenFormSchema[] {
  return [
    {
      fieldName: 'id',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "id",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    {
      fieldName: 'code',
      label: '路线编码',
      component: 'Input',
      fieldName: "code",
      label: "路线编码",
      component: "Input",
      componentProps: {
        maxLength: 64,
        placeholder: '请输入工艺路线编码',
        placeholder: "请输入工艺路线编码",
      },
      rules: z.string().min(1, '路线编码不能为空').max(64),
      rules: z.string().min(1, "路线编码不能为空").max(64),
      suffix: () =>
        h(
          Button,
          {
            type: 'default',
            type: "default",
            onClick: async () => {
              const code = await generateAutoCode(
                MesAutoCodeRuleCode.PRO_ROUTE_CODE,
              );
              await formApi?.setFieldValue('code', code);
              const code = await generateAutoCode(MesAutoCodeRuleCode.PRO_ROUTE_CODE);
              await formApi?.setFieldValue("code", code);
            },
          },
          { default: () => '生成' },
          { default: () => "生成" },
        ),
    },
    {
      fieldName: 'name',
      label: '路线名称',
      component: 'Input',
      fieldName: "name",
      label: "路线名称",
      component: "Input",
      componentProps: {
        maxLength: 100,
        placeholder: '请输入工艺路线名称',
        placeholder: "请输入工艺路线名称",
      },
      rules: z.string().min(1, '路线名称不能为空').max(100),
      rules: z.string().min(1, "路线名称不能为空").max(100),
    },
    {
      fieldName: 'description',
      label: '路线说明',
      component: 'Textarea',
      formItemClass: 'col-span-2',
      fieldName: "description",
      label: "路线说明",
      component: "Textarea",
      formItemClass: "col-span-2",
      componentProps: {
        maxLength: 500,
        placeholder: '请输入工艺路线说明',
        placeholder: "请输入工艺路线说明",
        rows: 3,
      },
    },
    {
      fieldName: 'remark',
      label: '备注',
      component: 'Textarea',
      formItemClass: 'col-span-2',
      fieldName: "remark",
      label: "备注",
      component: "Textarea",
      formItemClass: "col-span-2",
      componentProps: {
        maxLength: 250,
        placeholder: '请输入备注',
        placeholder: "请输入备注",
        rows: 2,
      },
    },
@@ -99,31 +90,31 @@
export function useGridFormSchema(): VbenFormSchema[] {
  return [
    {
      fieldName: 'code',
      label: '路线编码',
      component: 'Input',
      fieldName: "code",
      label: "路线编码",
      component: "Input",
      componentProps: {
        allowClear: true,
        placeholder: '请输入路线编码',
        placeholder: "请输入路线编码",
      },
    },
    {
      fieldName: 'name',
      label: '路线名称',
      component: 'Input',
      fieldName: "name",
      label: "路线名称",
      component: "Input",
      componentProps: {
        allowClear: true,
        placeholder: '请输入路线名称',
        placeholder: "请输入路线名称",
      },
    },
    {
      fieldName: 'status',
      label: '状态',
      component: 'Select',
      fieldName: "status",
      label: "状态",
      component: "Select",
      componentProps: {
        allowClear: true,
        options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
        placeholder: '请选择状态',
        options: getDictOptions(DICT_TYPE.COMMON_STATUS, "number"),
        placeholder: "请选择状态",
      },
    },
  ];
@@ -131,29 +122,26 @@
/** 列表字段 */
export function useGridColumns(
  onStatusChange?: (
    newStatus: number,
    row: MesProRouteApi.Route,
  ) => PromiseLike<boolean | undefined>,
  onStatusChange?: (newStatus: number, row: MesProRouteApi.Route) => PromiseLike<boolean | undefined>,
  statusEditable = true,
): VxeTableGridOptions<MesProRouteApi.Route>['columns'] {
): VxeTableGridOptions<MesProRouteApi.Route>["columns"] {
  return [
    {
      field: 'code',
      title: '路线编码',
      field: "code",
      title: "路线编码",
      minWidth: 160,
      slots: { default: 'code' },
      slots: { default: "code" },
    },
    { field: 'name', title: '路线名称', minWidth: 180 },
    { field: 'description', title: '路线说明', minWidth: 200 },
    { field: "name", title: "路线名称", minWidth: 180 },
    { field: "description", title: "路线说明", minWidth: 200 },
    {
      field: 'status',
      title: '状态',
      field: "status",
      title: "状态",
      width: 110,
      align: 'center',
      align: "center",
      cellRender: {
        attrs: { beforeChange: onStatusChange },
        name: 'CellSwitch',
        name: "CellSwitch",
        props: {
          checkedValue: CommonStatusEnum.ENABLE,
          disabled: !statusEditable,
@@ -161,126 +149,134 @@
        },
      },
    },
    { field: 'remark', title: '备注', minWidth: 160 },
    { field: "remark", title: "备注", minWidth: 160 },
    {
      field: 'createTime',
      title: '创建时间',
      field: "createTime",
      title: "创建时间",
      width: 180,
      formatter: 'formatDateTime',
      formatter: "formatDateTime",
    },
    {
      title: '操作',
      title: "操作",
      width: 160,
      fixed: 'right',
      slots: { default: 'actions' },
      fixed: "right",
      slots: { default: "actions" },
    },
  ];
}
/** 工艺路线工序明细表单 */
export function useRouteProcessFormSchema(
  processOptions: Array<{ label: string; value: number }>,
): VbenFormSchema[] {
export function useRouteProcessFormSchema(processOptions: Array<{ label: string; value: number }>): VbenFormSchema[] {
  return [
    {
      fieldName: 'id',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "id",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    {
      fieldName: 'routeId',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "routeId",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    {
      fieldName: 'sort',
      label: '序号',
      component: 'InputNumber',
      fieldName: "sort",
      label: "序号",
      component: "InputNumber",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 1,
        precision: 0,
      },
      rules: z.number().default(1),
    },
    {
      fieldName: 'processId',
      label: '工序',
      component: 'Select',
      fieldName: "processId",
      label: "工序",
      component: "Select",
      componentProps: {
        allowClear: true,
        options: processOptions,
        placeholder: '请选择工序',
        placeholder: "请选择工序",
        showSearch: true,
      },
      rules: 'selectRequired',
      rules: "selectRequired",
    },
    {
      fieldName: 'linkType',
      label: '与下道工序关系',
      component: 'Select',
      fieldName: "linkType",
      label: "与下道工序关系",
      component: "Select",
      componentProps: {
        allowClear: true,
        options: getDictOptions(DICT_TYPE.MES_PRO_LINK_TYPE, 'number'),
        placeholder: '请选择',
        options: getDictOptions(DICT_TYPE.MES_PRO_LINK_TYPE, "number"),
        placeholder: "请选择",
      },
      rules: z.number().default(3),
    },
    {
      fieldName: 'colorCode',
      label: '甘特图颜色',
      fieldName: "colorCode",
      label: "甘特图颜色",
      component: RouteColorPicker,
    },
    {
      fieldName: 'keyFlag',
      label: '是否关键工序',
      component: 'Switch',
      fieldName: "keyFlag",
      label: "是否关键工序",
      component: "Switch",
      componentProps: {
        checkedChildren: '是',
        unCheckedChildren: '否',
        checkedChildren: "是",
        unCheckedChildren: "否",
      },
      rules: z.boolean().default(false),
    },
    {
      fieldName: 'checkFlag',
      label: '是否质检确认',
      component: 'Switch',
      fieldName: "checkFlag",
      label: "是否质检确认",
      component: "Switch",
      componentProps: {
        checkedChildren: '是',
        unCheckedChildren: '否',
        checkedChildren: "是",
        unCheckedChildren: "否",
      },
      rules: z.boolean().default(false),
    },
    {
      fieldName: 'prepareTime',
      label: '准备时间(分)',
      component: 'InputNumber',
      fieldName: "backflushFlag",
      label: "是否倒冲",
      component: "Switch",
      componentProps: {
        class: '!w-full',
        checkedChildren: "是",
        unCheckedChildren: "否",
      },
      rules: z.boolean().default(true),
    },
    {
      fieldName: "prepareTime",
      label: "准备时间(分)",
      component: "InputNumber",
      componentProps: {
        class: "!w-full",
        min: 0,
        precision: 0,
      },
      rules: z.number().default(0),
    },
    {
      fieldName: 'waitTime',
      label: '等待时间(分)',
      component: 'InputNumber',
      fieldName: "waitTime",
      label: "等待时间(分)",
      component: "InputNumber",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 0,
      },
      rules: z.number().default(0),
    },
    {
      fieldName: 'remark',
      label: '备注',
      component: 'Textarea',
      formItemClass: 'col-span-2',
      fieldName: "remark",
      label: "备注",
      component: "Textarea",
      formItemClass: "col-span-2",
      componentProps: {
        maxLength: 250,
        placeholder: '请输入备注',
        placeholder: "请输入备注",
        rows: 2,
      },
    },
@@ -288,166 +284,173 @@
}
/** 工艺路线工序列表字段 */
export function useRouteProcessGridColumns(): VxeTableGridOptions<MesProRouteProcessApi.RouteProcess>['columns'] {
export function useRouteProcessGridColumns(): VxeTableGridOptions<MesProRouteProcessApi.RouteProcess>["columns"] {
  return [
    { field: 'sort', title: '序号', width: 70, align: 'center', fixed: 'left' },
    { field: 'processCode', title: '工序编码', width: 140, fixed: 'left' },
    { field: 'processName', title: '工序名称', width: 140, fixed: 'left' },
    { field: 'nextProcessName', title: '下一道工序', width: 140 },
    { field: "sort", title: "序号", width: 70, align: "center", fixed: "left" },
    { field: "processCode", title: "工序编码", width: 140, fixed: "left" },
    { field: "processName", title: "工序名称", width: 140, fixed: "left" },
    { field: "nextProcessName", title: "下一道工序", width: 140 },
    {
      field: 'linkType',
      title: '与下一道工序关系',
      field: "linkType",
      title: "与下一道工序关系",
      width: 160,
      cellRender: {
        name: 'CellDict',
        name: "CellDict",
        props: { type: DICT_TYPE.MES_PRO_LINK_TYPE },
      },
    },
    {
      field: 'keyFlag',
      title: '关键工序',
      field: "keyFlag",
      title: "关键工序",
      width: 90,
      cellRender: {
        name: 'CellDict',
        name: "CellDict",
        props: { type: DICT_TYPE.INFRA_BOOLEAN_STRING },
      },
    },
    {
      field: 'checkFlag',
      title: '质检确认',
      field: "checkFlag",
      title: "质检确认",
      width: 100,
      cellRender: {
        name: 'CellDict',
        name: "CellDict",
        props: { type: DICT_TYPE.INFRA_BOOLEAN_STRING },
      },
    },
    { field: 'prepareTime', title: '准备时间(分)', width: 110 },
    { field: 'waitTime', title: '等待时间(分)', width: 110 },
    {
      field: 'colorCode',
      title: '甘特图颜色',
      width: 130,
      slots: { default: 'colorCode' },
      field: "backflushFlag",
      title: "是否倒冲",
      width: 100,
      cellRender: {
        name: "CellDict",
        props: { type: DICT_TYPE.INFRA_BOOLEAN_STRING },
    },
    { field: 'remark', title: '备注', minWidth: 160 },
    },
    { field: "prepareTime", title: "准备时间(分)", width: 110 },
    { field: "waitTime", title: "等待时间(分)", width: 110 },
    {
      title: '操作',
      field: "colorCode",
      title: "甘特图颜色",
      width: 130,
      fixed: 'right',
      slots: { default: 'actions' },
      slots: { default: "colorCode" },
    },
    { field: "remark", title: "备注", minWidth: 160 },
    {
      title: "操作",
      width: 130,
      fixed: "right",
      slots: { default: "actions" },
    },
  ];
}
/** 工艺路线产品列表字段 */
export function useRouteProductGridColumns(): VxeTableGridOptions<MesProRouteProductApi.RouteProduct>['columns'] {
export function useRouteProductGridColumns(): VxeTableGridOptions<MesProRouteProductApi.RouteProduct>["columns"] {
  return [
    { field: 'itemCode', title: '产品物料编码', width: 150 },
    { field: 'itemName', title: '产品物料名称', width: 150 },
    { field: 'specification', title: '规格型号', width: 150 },
    { field: 'unitName', title: '单位', width: 80 },
    { field: 'quantity', title: '生产数量', width: 100 },
    { field: "itemCode", title: "产品物料编码", width: 150 },
    { field: "itemName", title: "产品物料名称", width: 150 },
    { field: "specification", title: "规格型号", width: 150 },
    { field: "unitName", title: "单位", width: 80 },
    { field: "quantity", title: "生产数量", width: 100 },
    {
      field: 'productionTime',
      title: '生产用时',
      field: "productionTime",
      title: "生产用时",
      width: 130,
      slots: { default: 'productionTime' },
      slots: { default: "productionTime" },
    },
    { field: 'remark', title: '备注', minWidth: 160 },
    { field: "remark", title: "备注", minWidth: 160 },
    {
      title: '操作',
      title: "操作",
      width: 130,
      fixed: 'right',
      slots: { default: 'actions' },
      fixed: "right",
      slots: { default: "actions" },
    },
  ];
}
/** 工艺路线产品 BOM 列表字段 */
export function useRouteProductBomGridColumns(): VxeTableGridOptions<MesProRouteProductBomApi.RouteProductBom>['columns'] {
export function useRouteProductBomGridColumns(): VxeTableGridOptions<MesProRouteProductBomApi.RouteProductBom>["columns"] {
  return [
    { field: 'itemCode', title: 'BOM 物料编码', width: 150 },
    { field: 'itemName', title: 'BOM 物料名称', width: 150 },
    { field: 'specification', title: '规格型号', width: 150 },
    { field: 'unitName', title: '单位', width: 80 },
    { field: 'quantity', title: '用料比例', width: 100 },
    { field: 'remark', title: '备注', minWidth: 160 },
    { field: "itemCode", title: "BOM 物料编码", width: 150 },
    { field: "itemName", title: "BOM 物料名称", width: 150 },
    { field: "specification", title: "规格型号", width: 150 },
    { field: "unitName", title: "单位", width: 80 },
    { field: "quantity", title: "用料比例", width: 100 },
    { field: "remark", title: "备注", minWidth: 160 },
    {
      title: '操作',
      title: "操作",
      width: 130,
      fixed: 'right',
      slots: { default: 'actions' },
      fixed: "right",
      slots: { default: "actions" },
    },
  ];
}
/** 工艺路线产品表单 */
export function useRouteProductFormSchema(
  onItemChange?: (item: any) => void,
): VbenFormSchema[] {
export function useRouteProductFormSchema(onItemChange?: (item: any) => void): VbenFormSchema[] {
  return [
    {
      fieldName: 'id',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "id",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    {
      fieldName: 'routeId',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "routeId",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    // 产品物料:使用业务自定义选择器,change 回填编码/名称/规格/单位
    {
      fieldName: 'itemId',
      label: '产品',
      fieldName: "itemId",
      label: "产品",
      component: markRaw(MdItemSelect),
      componentProps: {
        onChange: onItemChange,
      },
      formItemClass: 'col-span-2',
      rules: 'selectRequired',
      formItemClass: "col-span-2",
      rules: "selectRequired",
    },
    {
      fieldName: 'quantity',
      label: '生产数量',
      component: 'InputNumber',
      fieldName: "quantity",
      label: "生产数量",
      component: "InputNumber",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 1,
        precision: 0,
      },
      rules: z.number().default(1),
    },
    {
      fieldName: 'productionTime',
      label: '生产用时',
      component: 'InputNumber',
      fieldName: "productionTime",
      label: "生产用时",
      component: "InputNumber",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 2,
      },
      rules: z.number().default(1),
    },
    {
      fieldName: 'timeUnitType',
      label: '时间单位',
      component: 'Select',
      fieldName: "timeUnitType",
      label: "时间单位",
      component: "Select",
      componentProps: {
        allowClear: true,
        options: getDictOptions(DICT_TYPE.MES_TIME_UNIT_TYPE),
        placeholder: '请选择',
        placeholder: "请选择",
      },
      rules: z.string().default('MINUTE'),
      rules: z.string().default("MINUTE"),
    },
    {
      fieldName: 'remark',
      label: '备注',
      component: 'Textarea',
      formItemClass: 'col-span-2',
      fieldName: "remark",
      label: "备注",
      component: "Textarea",
      formItemClass: "col-span-2",
      componentProps: {
        maxLength: 250,
        placeholder: '请输入备注',
        placeholder: "请输入备注",
        rows: 2,
      },
    },
@@ -455,61 +458,58 @@
}
/** 工艺路线产品 BOM 表单 */
export function useRouteProductBomFormSchema(
  itemId: () => number,
  onBomChange?: (bom: any) => void,
): VbenFormSchema[] {
export function useRouteProductBomFormSchema(itemId: () => number, onBomChange?: (bom: any) => void): VbenFormSchema[] {
  return [
    {
      fieldName: 'id',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "id",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    {
      fieldName: 'routeId',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "routeId",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    {
      fieldName: 'processId',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "processId",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    {
      fieldName: 'productId',
      component: 'Input',
      dependencies: { triggerFields: [''], show: () => false },
      fieldName: "productId",
      component: "Input",
      dependencies: { triggerFields: [""], show: () => false },
    },
    // BOM 物料:依赖产品物料,使用业务自定义选择器
    {
      fieldName: 'itemId',
      label: 'BOM 物料',
      fieldName: "itemId",
      label: "BOM 物料",
      component: markRaw(MdProductBomSelect),
      componentProps: () => ({
        itemId: itemId(),
        onChange: onBomChange,
        placeholder: '请选择 BOM 物料',
        placeholder: "请选择 BOM 物料",
      }),
      rules: 'selectRequired',
      rules: "selectRequired",
    },
    {
      fieldName: 'quantity',
      label: '用料比例',
      component: 'InputNumber',
      fieldName: "quantity",
      label: "用料比例",
      component: "InputNumber",
      componentProps: {
        class: '!w-full',
        class: "!w-full",
        min: 0,
        precision: 2,
      },
      rules: z.number().default(1),
    },
    {
      fieldName: 'remark',
      label: '备注',
      component: 'Textarea',
      fieldName: "remark",
      label: "备注",
      component: "Textarea",
      componentProps: {
        maxLength: 250,
        placeholder: '请输入备注',
        placeholder: "请输入备注",
        rows: 2,
      },
    },
vite.config.ts
@@ -8,39 +8,25 @@
        enable: false,
      },
      optimizeDeps: {
        include: [
          "vue",
          "vue-router",
          "pinia",
          "ant-design-vue",
          "dayjs",
          "@vueuse/core",
          "axios",
        ],
        exclude: [
          "dhtmlx-gantt",
          "tinymce",
          "bpmn-js",
          "bpmn-js-properties-panel",
          "video.js",
        ],
        include: ["vue", "vue-router", "pinia", "ant-design-vue", "dayjs", "@vueuse/core", "axios"],
        exclude: ["dhtmlx-gantt", "tinymce", "bpmn-js", "bpmn-js-properties-panel", "video.js"],
      },
      build: {
        rollupOptions: {
          output: {
            manualChunks: (id) => {
              if (id.includes('node_modules')) {
                if (['vue', 'vue-router', 'pinia'].some(dep => id.includes(dep))) {
                  return 'vendor-vue';
            manualChunks: id => {
              if (id.includes("node_modules")) {
                if (["vue", "vue-router", "pinia"].some(dep => id.includes(dep))) {
                  return "vendor-vue";
                }
                if (['ant-design-vue', '@vueuse/core'].some(dep => id.includes(dep))) {
                  return 'vendor-ui';
                if (["ant-design-vue", "@vueuse/core"].some(dep => id.includes(dep))) {
                  return "vendor-ui";
                }
                if (['dayjs', 'axios', '@vee-validate/zod', 'zod'].some(dep => id.includes(dep))) {
                  return 'vendor-utils';
                if (["dayjs", "axios", "@vee-validate/zod", "zod"].some(dep => id.includes(dep))) {
                  return "vendor-utils";
                }
                if (['tinymce', '@tinymce/tinymce-vue', '@form-create/ant-design-vue'].some(dep => id.includes(dep))) {
                  return 'vendor-editor';
                if (["tinymce", "@tinymce/tinymce-vue", "@form-create/ant-design-vue"].some(dep => id.includes(dep))) {
                  return "vendor-editor";
                }
              }
            },
@@ -50,13 +36,13 @@
      server: {
        allowedHosts: true,
        watch: {
          ignored: ['**/node_modules/**', '**/dist/**', '**/.git/**'],
          ignored: ["**/node_modules/**", "**/dist/**", "**/.git/**"],
        },
        proxy: {
          "/admin-api": {
            changeOrigin: true,
            rewrite: (path) => path.replace(/^\/admin-api/, ""),
            target: "http://192.168.0.226:48080/admin-api",
            rewrite: path => path.replace(/^\/admin-api/, ""),
            target: "http://192.168.0.244:48080/admin-api",
            ws: true,
          },
        },