import type { CrudSchema } from '@/hooks/web/useCrudSchemas' import { dateFormatter } from '@/utils/formatTime' import * as InspectionQ1Api from '@/api/qms/inspectionQ1' import { Q1 } from '@/views/qms/inspectionQ1/inspectionQ1.data' import * as ItembasicApi from '@/api/wms/itembasic' import { Itembasic } from '@/views/wms/basicDataManage/itemManage/itembasic/itembasic.data' import * as ProductionlineitemApi from '@/api/wms/productionlineitem' import { Productionlineitem } from '@/views/wms/basicDataManage/itemManage/productionlineitem/productionlineitem.data' import * as QadCostcentreApi from '@/api/wms/qadCostcentre' import { QadCostcentre } from '@/views/wms/basicDataManage/subject/qadCostcentre/qadCostcentre.data' const { t } = useI18n() // 国际化 // 获取自动提交自动通过自动执行,跳过任务直接删生成记录的默认值 const queryParams = { pageSize: 10, pageNo: 1, code: 'IssueRequest' } // 获取当前操作人的部门 import { useUserStore } from '@/store/modules/user' import { TableColumn } from '@/types/table' import { fa } from 'element-plus/es/locale' const userStore = useUserStore() const userDept = userStore.userSelfInfo.dept // id 转str 否则form回显匹配不到 userDept.id = userDept.id.toString() const userDeptArray: any = [userDept] /** * @returns {Array} 发料申请主表 */ export const InspectionQ3Main = useCrudSchemas( reactive([ { label: '通知单号', field: 'number', sort: 'custom', isSearch: true, isForm: false, table: { width: 150, fixed: 'left' } }, { label: 'Q1通知单号', field: 'q1Number', sort: 'custom', isSearch: true, table: { width: 150 }, form: { // labelMessage: '信息提示说明!!!', componentProps: { enterSearch: true, multiple: true, isSearchList: true, // 开启查询弹窗 searchListPlaceholder: '请选择Q1通知单', // 输入框占位文本 searchField: 'number', // 查询弹窗赋值字段 searchTitle: 'Q1通知单', // 查询弹窗标题 searchAllSchemas: Q1.allSchemas, // 查询弹窗所需类 searchPage: InspectionQ1Api.getQ1Page, // 查询弹窗所需分页方法 searchCondition: [ { key: 'available', value: 'TRUE', isMainValue: false }, { key: 'status', value: '0', isMainValue: false } ], verificationParams: [ { key: 'number', action: '==', value: '', isMainValue: false, isSearch: true, isFormModel: true } ] // 失去焦点校验参数 } } }, { label: '负责用户', field: 'responUser', sort: 'custom', isSearch: false, table: { width: 120 }, form: { componentProps: { value: userStore.getUser.nickname, disabled: true } } }, { label: '优先级', field: 'priority', sort: 'custom', dictType: DICT_TYPE.QUALITY_NOTIFICATION_PRIORITY, dictClass: 'string', isSearch: false, isTable: true, tableForm: { type: 'Select' } }, { label: '处理时间', field: 'handleTime', isSearch: false, table: { width: 180 }, formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, form: { component: 'DatePicker', componentProps: { style: { width: '100%' }, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x' } } }, { label: '汇总金额', field: 'summaryAmount', sort: 'custom', isSearch: false, table: { width: 150 }, form: { component: 'InputNumber', componentProps: { min: 0, precision: 6, disabled: true } } }, { label: '描述', field: 'desc', sort: 'custom', isSearch: false, table: { width: '150' }, form: { component: 'Input', componentProps: { type: 'textarea' } } }, { label: '状态', field: 'status', sort: 'custom', dictType: DICT_TYPE.PUBLISHE_STATUS, dictClass: 'string', isSearch: false, isForm: false, tableForm: { type: 'Select', disabled: true }, form: { componentProps: { disabled: true } } }, { label: '是否可用', field: 'available', sort: 'custom', isSearch: false, isForm: false, isTable: false, isDetail: false }, { label: '创建时间', field: 'createTime', isTable: true, isForm: false, table: { width: 180 }, formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, form: { component: 'DatePicker', componentProps: { style: { width: '100%' }, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x' } }, isSearch: true, search: { component: 'DatePicker', componentProps: { valueFormat: 'YYYY-MM-DD HH:mm:ss', type: 'daterange', defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] } } }, { label: '操作', field: 'action', isDetail: false, isForm: false, table: { width: 230, fixed: 'right' } } ]) ) export const InspectionQ3MainRules = reactive({ priority: [{ required: true, message: '请选择优先级', trigger: 'change' }], handleTime: [{ required: true, message: '请选择处理时间', trigger: 'change' }], desc: [{ max: 50, message: '不得超过50个字符', trigger: 'blur' }] }) /** * @returns {Array} 发料申请子表 */ export const InspectionQ3Detail = useCrudSchemas( reactive([ { label: '通知单号', field: 'number', sort: 'custom', isSearch: false, isTable: false, isTableForm: false }, { label: '物料号', field: 'itemCode', sort: 'custom', isTable: true, isDetail: true, isSearch: false, table: { width: 150 }, tableForm: { isInpuFocusShow: false, disabled: true, searchListPlaceholder: '请选择物料代码', // 输入框占位文本 searchField: 'code', // 查询弹窗赋值字段 searchTitle: '物料信息', // 查询弹窗标题 searchAllSchemas: Productionlineitem.allSchemas, // 查询弹窗所需类 searchPage: ProductionlineitemApi.getProductionlineitemPage, // 查询弹窗所需分页方法 searchCondition: [ { key: 'available', value: 'TRUE', isMainValue: false } ], isShowTableFormSearch: true, //tableForm下方是否出现输入框 isRepeat: true, //tableForm下方输入框是否可以重复添加该条数据 verificationParams: [ { key: 'code', action: '==', value: '', isMainValue: false, isSearch: true, isFormModel: true } ] // 失去焦点校验参数 }, form: { // labelMessage: '信息提示说明!!!', componentProps: { enterSearch: true, isSearchList: true, // 开启查询弹窗 searchListPlaceholder: '请选择物料代码', // 输入框占位文本 searchField: 'code', // 查询弹窗赋值字段 searchTitle: '物料基础信息', // 查询弹窗标题 searchAllSchemas: Itembasic.allSchemas, // 查询弹窗所需类 searchPage: ItembasicApi.getItembasicPage, // 查询弹窗所需分页方法 searchCondition: [ { key: 'available', value: 'TRUE', isMainValue: false } ], verificationParams: [ { key: 'code', action: '==', value: '', isMainValue: false, isSearch: true, isFormModel: true } ] // 失去焦点校验参数 } } }, { label: '数量', field: 'qty', sort: 'custom', isSearch: false, isTable: true, tableForm: { type: 'InputNumber', min: 0, precision: 2 } }, { label: '单位', field: 'uom', sort: 'custom', dictType: DICT_TYPE.UOM, dictClass: 'string', isSearch: false, isTable: true, tableForm: { type: 'Select', disabled: true }, form: { componentProps: { disabled: true } } }, { label: '单价', field: 'price', sort: 'custom', isTable: true, isSearch: false, tableForm: { disabled: true }, form: { componentProps: { disabled: true } } }, { label: '金额', field: 'amount', sort: 'custom', isSearch: false, isTable: true, isForm: false, tableForm: { disabled: true }, form: { componentProps: { disabled: true } } }, { label: '成本中心代码', field: 'costCode', sort: 'custom', isSearch: false, isTable: true, isForm: true, tableForm: { isInpuFocusShow: true, searchListPlaceholder: '请选择成本中心', // 输入框占位文本 searchField: 'costcentreCode', // 查询弹窗赋值字段 searchTitle: '成本中心信息', // 查询弹窗标题 searchAllSchemas: QadCostcentre.allSchemas, // 查询弹窗所需类 searchPage: QadCostcentreApi.getQadCostcentrePage, // 查询弹窗所需分页方法 searchCondition: [ { key: 'available', value: 'TRUE', isMainValue: false } ], verificationParams: [ { key: 'costcentreCode', action: '==', value: '', isMainValue: false, isSearch: true, isFormModel: true } ] // 失去焦点校验参数 } }, { label: '缺陷编码', field: 'defectCode', sort: 'custom', dictType: DICT_TYPE.QMS_Q3_CODE, dictClass: 'string', isSearch: true, isTable: true, tableForm: { type: 'Select' } }, { label: '缺陷位置', field: 'defectLocation', sort: 'custom', dictClass: 'string', isSearch: false, isTable: true, form: { component: 'Select', componentProps: { options: [], optionsAlias: { labelField: 'productionLineName', valueField: 'productionLineCode' }, filterable: true } }, tableForm: { type: 'Select', valueField: 'productionLineName', labelField: 'productionLineCode' } }, { label: '缺陷类型', field: 'defectType', sort: 'custom', isSearch: false, isTable: true, form: { component: 'Select' } }, { label: '问题原因', field: 'problemReason', hiddenInMain: true, sort: 'custom', isSearch: false, isTable: true, form: { component: 'Select' } }, { label: '操作', field: 'action', hiddenInMain: true, isDetail: false, isForm: false, table: { width: 200, fixed: 'right' }, isTableForm: false } ]) ) //表单校验 export const InspectionQ3DetailRules = reactive({ itemCode: [{ required: true, message: '请选择物料代码', trigger: 'change' }], qty: [{ required: true, message: '请输入数量', trigger: 'change' }], price: [{ required: true, message: '请选择单价', trigger: 'change' }], amount: [{ required: true, message: '请选择金额', trigger: 'change' }], costCode: [{ required: true, message: '请选择成本中心编码', trigger: 'change' }], defectLocation: [{ required: true, message: '请选择缺陷位置', trigger: 'change' }], defectType: [{ required: true, message: '请选择缺陷类型', trigger: 'change' }], problemReason: [{ required: true, message: '请选择问题原因', trigger: 'change' }], defectCode: [{ required: true, message: '请选择缺陷编码', trigger: 'change' }] })