import type { VbenFormApi, VbenFormSchema } from '#/adapter/form'; import type { VxeTableGridOptions } from '#/adapter/vxe-table'; import type { MesMdWorkstationApi } from '#/api/mes/md/workstation'; import { h, markRaw } from 'vue'; import { CommonStatusEnum, DICT_TYPE } from '@vben/constants'; import { getDictOptions } from '@vben/hooks'; import { ElButton } from 'element-plus'; import { z } from '#/adapter/form'; import { generateAutoCode } from '#/api/mes/md/autocode/record'; import { getWarehouseSimpleList } from '#/api/mes/wm/warehouse'; import { getWarehouseAreaSimpleList } from '#/api/mes/wm/warehouse/area'; import { getWarehouseLocationSimpleList } from '#/api/mes/wm/warehouse/location'; import { ProProcessSelect } from '#/views/mes/pro/process/components'; import { MesAutoCodeRuleCode } from '#/views/mes/utils/constants'; import { MdWorkshopSelect } from './components'; /** 新增/修改工作站的表单 */ export function useFormSchema(formApi?: VbenFormApi): VbenFormSchema[] { return [ { fieldName: 'id', component: 'Input', dependencies: { triggerFields: [''], show: () => false, }, }, { fieldName: 'code', label: '工作站编码', component: 'Input', componentProps: { placeholder: '请输入工作站编码', }, dependencies: { triggerFields: ['id'], componentProps: (values) => ({ disabled: !!values.id, }), }, rules: 'required', suffix: () => h( ElButton, { onClick: async () => { try { const code = await generateAutoCode( MesAutoCodeRuleCode.MD_WORKSTATION_CODE, ); await formApi?.setFieldValue('code', code); } catch (error) { console.error(error); } }, }, { default: () => '生成' }, ), }, { fieldName: 'name', label: '工作站名称', component: 'Input', componentProps: { placeholder: '请输入工作站名称', }, rules: 'required', }, { fieldName: 'workshopId', label: '所在车间', component: markRaw(MdWorkshopSelect), componentProps: { placeholder: '请选择车间', }, rules: 'selectRequired', }, { fieldName: 'address', label: '工作站地点', component: 'Input', componentProps: { placeholder: '请输入工作站地点', }, }, { fieldName: 'processId', label: '所属工序', component: markRaw(ProProcessSelect), componentProps: { placeholder: '请选择所属工序', }, rules: 'selectRequired', }, { fieldName: 'warehouseId', label: '仓库', component: 'ApiSelect', componentProps: { api: getWarehouseSimpleList, clearable: true, labelField: 'name', onChange: async () => { await formApi?.setFieldValue('locationId', undefined); await formApi?.setFieldValue('areaId', undefined); }, placeholder: '请选择仓库', valueField: 'id', }, }, { fieldName: 'locationId', label: '库区', component: 'Select', dependencies: { triggerFields: ['warehouseId'], disabled: (values) => !values.warehouseId, async componentProps(values) { const list = values.warehouseId ? await getWarehouseLocationSimpleList(values.warehouseId) : []; return { clearable: true, onChange: async () => { await formApi?.setFieldValue('areaId', undefined); }, options: list.map((item) => ({ label: item.name, value: item.id, })), placeholder: '请选择库区', }; }, }, }, { fieldName: 'areaId', label: '库位', component: 'Select', dependencies: { triggerFields: ['locationId'], disabled: (values) => !values.locationId, async componentProps(values) { const list = values.locationId ? await getWarehouseAreaSimpleList(values.locationId) : []; return { clearable: true, options: list.map((item) => ({ label: item.name, value: item.id, })), placeholder: '请选择库位', }; }, }, }, { fieldName: 'status', label: '状态', component: 'RadioGroup', componentProps: { options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'), }, rules: z.number().default(CommonStatusEnum.ENABLE), }, { fieldName: 'remark', label: '备注', component: 'Textarea', formItemClass: 'col-span-3', componentProps: { placeholder: '请输入备注', rows: 3, }, }, ]; } /** 列表的搜索表单 */ export function useGridFormSchema(): VbenFormSchema[] { return [ { fieldName: 'code', label: '工作站编码', component: 'Input', componentProps: { clearable: true, placeholder: '请输入工作站编码', }, }, { fieldName: 'name', label: '工作站名称', component: 'Input', componentProps: { clearable: true, placeholder: '请输入工作站名称', }, }, { fieldName: 'workshopId', label: '所在车间', component: markRaw(MdWorkshopSelect), componentProps: { clearable: true, placeholder: '请选择车间', }, }, { fieldName: 'processId', label: '所属工序', component: markRaw(ProProcessSelect), componentProps: { clearable: true, placeholder: '请选择工序', }, }, { fieldName: 'status', label: '状态', component: 'Select', componentProps: { clearable: true, options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'), placeholder: '请选择状态', }, }, ]; } /** 列表的字段 */ export function useGridColumns(): VxeTableGridOptions['columns'] { return [ { field: 'code', title: '工作站编码', minWidth: 150, slots: { default: 'code' }, }, { field: 'name', title: '工作站名称', minWidth: 150, }, { field: 'address', title: '工作站地点', minWidth: 150, }, { field: 'workshopName', title: '所在车间', width: 140, }, { field: 'processName', title: '所属工序', width: 140, }, { field: 'status', title: '状态', width: 120, cellRender: { name: 'CellDict', props: { type: DICT_TYPE.COMMON_STATUS }, }, }, { field: 'createTime', title: '创建时间', width: 180, formatter: 'formatDateTime', }, { title: '操作', width: 210, fixed: 'right', slots: { default: 'actions' }, }, ]; } /** 工作站选择弹窗的搜索表单 */ export function useWorkstationSelectGridFormSchema(): VbenFormSchema[] { return [ { fieldName: 'code', label: '工作站编码', component: 'Input', componentProps: { clearable: true, placeholder: '请输入工作站编码', }, }, { fieldName: 'processId', label: '所属工序', component: markRaw(ProProcessSelect), componentProps: { placeholder: '请选择工序', }, }, { fieldName: 'workshopId', label: '所在车间', component: markRaw(MdWorkshopSelect), componentProps: { placeholder: '请选择车间', }, }, ]; } /** 工作站选择弹窗的字段 */ export function useWorkstationSelectGridColumns(): VxeTableGridOptions['columns'] { return [ { type: 'checkbox', width: 50 }, { field: 'code', title: '工作站编码', width: 150, }, { field: 'name', title: '工作站名称', minWidth: 160, }, { field: 'address', title: '工作站地点', minWidth: 140, }, { field: 'workshopName', title: '所在车间', width: 130, }, { field: 'processName', title: '所属工序', width: 130, }, { field: 'remark', title: '备注', minWidth: 140, }, ]; }