import type { CrudSchema } from '@/hooks/web/useCrudSchemas' import { dateFormatter } from '@/utils/formatTime' // 表单校验 export const OnlinesettlementInfoRules = reactive({ poNumber: [required], poLine: [required], itemCode: [required], inventoryStatus: [required], concurrencyStamp: [required], }) export const OnlinesettlementInfo = useCrudSchemas(reactive([ { label: 'id', field: 'id', sort: 'custom', isForm: false, isTable:false, }, { label: '单据号', field: 'number', sort: 'custom', isSearch: true, table: { fixed: 'left', width: 180 }, }, { label: '收料记录单号', field: 'receiptRecordNumber', sort: 'custom', isSearch: true, table: { width: 180 }, }, { label: '收货日期', field: 'receiptDate', sort: 'custom', formatter: dateFormatter, table: { width: 180 }, 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')] } }, form: { component: 'DatePicker', componentProps: { type: 'datetime', valueFormat: 'x' } }, }, { label: '出库事务类型', field: 'outTransactionType', sort: 'custom', isSearch: false, isTable:false, table: { width: 180 }, }, { label: '入库事务类型', field: 'inTransactionType', sort: 'custom', isSearch: false, isTable:false, table: { width: 180 }, }, { label: '供应商代码', field: 'supplierCode', sort: 'custom', isSearch: true, table: { width: 180 }, }, { label: '供应商物料代码', field: 'supplierItemCode', sort: 'custom', isSearch: false, isTable:false, table: { width: 180 }, }, { label: '订单号', field: 'poNumber', sort: 'custom', isSearch: false, table: { width: 180 }, }, { label: '订单行', field: 'poLine', sort: 'custom', isSearch: false, table: { width: 180 }, }, { label: '物品代码', field: 'itemCode', sort: 'custom', isSearch: true, table: { width: 180 }, }, { label: '物品名称', field: 'itemName', sort: 'custom', isSearch: false, table: { width: 180 }, }, { label: '物品描述1', field: 'itemDesc1', sort: 'custom', isTable:false, table: { width: 180 }, }, { label: '物品描述2', field: 'itemDesc2', sort: 'custom', isTable:false, table: { width: 180 }, }, { label: '项目代码', field: 'projectCode', sort: 'custom', isSearch: false, isTable:false, table: { width: 180 }, }, { label: '数量', field: 'qty', sort: 'custom', isSearch: false, table: { width: 180 }, }, { label: '计量单位', field: 'uom', sort: 'custom', isSearch: false, isTable:false, table: { width: 180 }, }, { label: '包装号', field: 'packingNumber', sort: 'custom', isSearch: true, table: { width: 180 }, }, { label: '批次', field: 'batch', sort: 'custom', isSearch: true, table: { width: 180 }, }, { label: '库存状态', field: 'inventoryStatus', sort: 'custom', isSearch: false, isTable:false, form: { component: 'Radio' }, table: { width: 180 }, }, { label: '来源库位代码', field: 'fromLocationCode', sort: 'custom', isSearch: false, table: { width: 180 }, }, { label: '来源库位组代码', field: 'fromLocationGroupCode', sort: 'custom', isTable:false, table: { width: 180 }, }, { label: '来源库区代码', field: 'fromAreaCode', sort: 'custom', isTable:false, table: { width: 180 }, }, { label: '来源仓库', field: 'fromWarehouseCode', sort: 'custom', table: { width: 180 }, }, { label: '目标库位代码', field: 'toLocationCode', sort: 'custom', isSearch: true, table: { width: 180 }, }, { label: '目标库位组代码', field: 'toLocationGroupCode', sort: 'custom', isTable:false, table: { width: 180 }, }, { label: '目标库区代码', field: 'toAreaCode', sort: 'custom', isTable:false, table: { width: 180 }, }, { label: '目标仓库', field: 'toWarehouseCode', sort: 'custom', table: { width: 180 }, }, { label: '结算数量', field: 'settlementQty', sort: 'custom', table: { width: 180 }, }, { label: '结算记录单号', field: 'settlementRecordNumber', sort: 'custom', table: { width: 180 }, }, { label: '结算业务类型', field: 'settlementBusinessType', sort: 'custom', table: { width: 180 }, }, { label: '结算日期', field: 'settlementDatetime', sort: 'custom', formatter: dateFormatter, isSearch: true, table: { width: 180 }, 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')] } }, form: { component: 'DatePicker', componentProps: { type: 'datetime', valueFormat: 'x' } }, }, // { // label: '并发乐观锁', // field: 'concurrencyStamp', // sort: 'custom', // isSearch: false, // isTable:false, // form: { // component: 'InputNumber', // value: 0 // }, // }, { label: '备注', field: 'remark', sort: 'custom', isSearch: false, isTable:false, table: { width: 180 }, }, { label: '创建时间', field: 'createTime', sort: 'custom', formatter: dateFormatter, table: { width: 180 }, 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')] } }, isForm: false, }, // { // label: '操作', // field: 'action', // isForm: false, // table: { // width: 150, // fixed: 'right' // } // } ]))