diff --git a/src/views/wms/inventoryManage/package/package.data.ts b/src/views/wms/inventoryManage/package/package.data.ts index b48aba3c8..32354a39e 100644 --- a/src/views/wms/inventoryManage/package/package.data.ts +++ b/src/views/wms/inventoryManage/package/package.data.ts @@ -18,6 +18,15 @@ export const Package = useCrudSchemas(reactive([ fixed: 'left' }, }, + { + label: '父包装号', + field: 'parentNumber', + sort: 'custom', + isSearch: true, + table: { + width: 180, + }, + }, { label: '物料代码', field: 'itemCode', diff --git a/src/views/wms/inventoryManage/transaction/transaction.data.ts b/src/views/wms/inventoryManage/transaction/transaction.data.ts index bb93b67cd..257911870 100644 --- a/src/views/wms/inventoryManage/transaction/transaction.data.ts +++ b/src/views/wms/inventoryManage/transaction/transaction.data.ts @@ -33,14 +33,7 @@ export const Transaction = useCrudSchemas(reactive([ width: 150 }, }, - { - label: '操作员', - field: 'worker', - sort: 'custom', - table: { - width: 150 - }, - }, + { label: '业务类型', field: 'businessType', @@ -53,8 +46,10 @@ export const Transaction = useCrudSchemas(reactive([ label: '记录号', field: 'recordNumber', sort: 'custom', + isTable: true, + isSearch: true, table: { - width: 150 + width: 180 }, }, { @@ -312,6 +307,14 @@ export const Transaction = useCrudSchemas(reactive([ width: 150 }, }, + { + label: '操作员', + field: 'worker', + sort: 'custom', + table: { + width: 150 + }, + }, ])) // 表单校验