import type { CrudSchema } from '@/hooks/web/useCrudSchemas' import { dateFormatter } from '@/utils/formatTime' // 表单校验 export const ProductredressJobMainRules = reactive({ }) export const ProductredressJobMain = useCrudSchemas(reactive([ { label: '单据号', field: 'number', sort: 'custom', table: { width: 180, fixed: 'left' }, isForm: false, isSearch: true, sortTableDefault:1 }, { label: '申请单号', field: 'requestNumber', sort: 'custom', isSearch: true, table: { width: 180, }, }, { label: '状态', field: 'status', dictType: DICT_TYPE.JOB_STATUS, dictClass: 'string', isSearch: true, isTable: true, sort: 'custom', table: { width: 150 }, form: { value: '1', componentProps: { disabled: true } } }, { label: '生产线代码', field: 'productionLineCode', sort: 'custom', table: { width: 150 }, isSearch: true, isTable:true, }, { label: '车间代码', field: 'workShopCode', sort: 'custom', table: { width: 150 }, isSearch: true, }, { label: '申请时间', field: 'requestTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:false, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false }, { label: '要求截止时间', field: 'requestDueTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:false, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false }, { label: '过期时间', field: 'expiredTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:false, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false }, { label: '优先级', field: 'priority', sort: 'custom', isForm:false, isTable:false, }, { label: '优先级增量', field: 'priorityIncrement', sort: 'custom', isForm:false, isTable:false, }, { label: '部门', field: 'departmentCode', sort: 'custom', table: { width: 150 }, isForm:false, isTable:false, }, { label: '承接人用户ID', field: 'acceptUserId', sort: 'custom', table: { width: 180 }, isForm:false, isTable:false, }, { label: '承接人用户名', field: 'acceptUserName', sort: 'custom', table: { width: 180 }, isTable:false, }, { label: '承接时间', field: 'acceptTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:false, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false }, { label: '完成人用户ID', field: 'completeUserId', sort: 'custom', table: { width: 180 }, isForm:false, isTable:false, }, { label: '完成人用户名', field: 'completeUserName', sort: 'custom', table: { width: 180 }, isTable:false, }, { label: '完成时间', field: 'completeTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:false, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false }, { label: '到仓库代码', field: 'toWarehouseCode', sort: 'custom', isForm:false, isTable:false, }, { label: '到库区代码范围', field: 'toAreaCodes', sort: 'custom', isForm:false, isTable:false, }, { label: '从库区类型范围', field: 'fromAreaTypes', dictType: DICT_TYPE.AREA_TYPE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '到库区类型范围', field: 'toAreaTypes', dictType: DICT_TYPE.AREA_TYPE, sort: 'custom', isForm:false, isTable:false, }, { label: '业务类型', field: 'businessType', sort: 'custom', isForm:false, isTable:false, }, { label: '备注', field: 'remark', sort: 'custom', isForm:false, isTable:false, }, { label: '自动完成', field: 'autoComplete', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许修改库位', field: 'allowModifyLocation', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许修改数量', field: 'allowModifyQty', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许大于推荐数量', field: 'allowBiggerQty', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许小于推荐数量', field: 'allowSmallerQty', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许修改库存状态', field: 'allowModifyInventoryStatus', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许连续扫描', field: 'allowContinuousScanning', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许部分完成', field: 'allowPartialComplete', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许修改批次', field: 'allowModifyBatch', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '允许修改箱码', field: 'allowModifyPackingNumber', dictType: DICT_TYPE.TRUE_FALSE, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '入库库存状态范围', field: 'inInventoryStatuses', dictType: DICT_TYPE.INVENTORY_STATUS, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '出库库存状态范围', field: 'outInventoryStatuses', dictType: DICT_TYPE.INVENTORY_STATUS, dictClass: 'string', sort: 'custom', isForm:false, isTable:false, }, { label: '创建者', field: 'creator', sort: 'custom', table: { width: 150 }, isTable:false, isForm: false, }, { label: '创建时间', field: 'createTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:false, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false, 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: 'updater', sort: 'custom', table: { width: 150 }, isTable:false, isForm: false, }, { label: '最后更新时间', field: 'updateTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:false, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false }, { label: '操作', field: 'action', isDetail: false, isForm: false, isTable:true, table: { width: 150, fixed: 'right' }, } ])) // 表单校验 export const ProductredressJobDetailRules = reactive({ }) export const ProductredressJobDetail = useCrudSchemas(reactive([ { label: '品番', field: 'itemCode', sort: 'custom', table: { width: 150 }, sortTableDefault:2 }, { label: '品名', field: 'itemName', sort: 'custom', table: { width: 150 }, sortTableDefault:5 }, { label: '背番', field: 'itemDesc1', sort: 'custom', isSearch:true, table: { width: 150 }, isTableForm: false, isForm: false, tableForm: { disabled: true }, form: { componentProps: { disabled: true } }, sortTableDefault:3 }, { label: '批次', field: 'batch', sort: 'custom', table: { width: 150 }, }, { label: '回收数量', field: 'qty', sort: 'custom', table: { width: 150 }, }, { label: '工位代码', field: 'workStationCode', sort: 'custom', table: { width: 150 }, }, { label: '包装号', field: 'packingNumber', sort: 'custom', table: { width: 180 }, }, { label: '包装规格', field: 'packUnit', sort: 'custom', table: { width: 150 }, }, { label: '包装数量', field: 'packQty', sort: 'custom', table: { width: 150 }, }, { label: '计量单位', field: 'uom', dictType: DICT_TYPE.UOM, dictClass: 'string', sort: 'custom', table: { width: 150 }, }, { label: '库存状态', field: 'inventoryStatus', dictType: DICT_TYPE.INVENTORY_STATUS, dictClass: 'string', sort: 'custom', table: { width: 150 }, }, { label: '来源库位代码', field: 'toLocationCode', sort: 'custom', table: { width: 150 }, }, // { // label: '生产日期', // field: 'produceDate', // sort: 'custom', // formatter: dateFormatter, // detail: { // dateFormat: 'YYYY-MM-DD HH:mm:ss' // }, // table: { // width: 180 // }, // form: { // component: 'DatePicker', // componentProps: { // style: {width: '100%'}, // type: 'datetime', // dateFormat: 'YYYY-MM-DD HH:mm:ss', // valueFormat: 'x', // } // }, // isForm: false // }, // { // label: '过期日期', // field: 'expireDate', // sort: 'custom', // formatter: dateFormatter, // detail: { // dateFormat: 'YYYY-MM-DD HH:mm:ss' // }, // table: { // width: 180 // }, // form: { // component: 'DatePicker', // componentProps: { // style: {width: '100%'}, // type: 'datetime', // dateFormat: 'YYYY-MM-DD HH:mm:ss', // valueFormat: 'x', // } // }, // isForm: false // }, { label: '背番', field: 'itemDesc1', sort: 'custom', table: { width: 150 }, isTable:false, hiddenInMain:true, }, { label: '描述', field: 'itemDesc2', sort: 'custom', table: { width: 150 }, isTable:false, hiddenInMain:true, }, { label: '项目代码', field: 'projectCode', sort: 'custom', table: { width: 150 }, isTable:false, hiddenInMain:true, }, // { // label: '单据号', // field: 'number', // sort: 'custom', // table: { // width: 150 // }, // }, { label: '订单号', field: 'woNumber', sort: 'custom', table: { width: 150 }, isTable:false, hiddenInMain:true, }, { label: '订单行', field: 'woLine', sort: 'custom', table: { width: 150 }, isTable:false, hiddenInMain:true, }, { label: '备注', field: 'remark', sort: 'custom', table: { width: 150 }, isTable:false, hiddenInMain:true, }, { label: '创建时间', field: 'createTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:true, hiddenInMain:false, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false }, { label: '创建者', field: 'creator', sort: 'custom', table: { width: 150 }, isTable:true, hiddenInMain:false, }, { label: '最后更新者', field: 'updater', sort: 'custom', isForm: false, table: { width: 150 }, isTable:false, hiddenInMain:true, }, { label: '最后更新时间', field: 'updateTime', sort: 'custom', formatter: dateFormatter, detail: { dateFormat: 'YYYY-MM-DD HH:mm:ss' }, table: { width: 180 }, isTable:false, hiddenInMain:true, form: { component: 'DatePicker', componentProps: { style: {width: '100%'}, type: 'datetime', dateFormat: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'x', } }, isForm: false } ]))