Browse Source

父包装与记录号

master_hella_20240701
赵雪冰 11 months ago
parent
commit
5d0e042f5c
  1. 9
      src/views/wms/inventoryManage/package/package.data.ts
  2. 21
      src/views/wms/inventoryManage/transaction/transaction.data.ts

9
src/views/wms/inventoryManage/package/package.data.ts

@ -18,6 +18,15 @@ export const Package = useCrudSchemas(reactive<CrudSchema[]>([
fixed: 'left' fixed: 'left'
}, },
}, },
{
label: '父包装号',
field: 'parentNumber',
sort: 'custom',
isSearch: true,
table: {
width: 180,
},
},
{ {
label: '物料代码', label: '物料代码',
field: 'itemCode', field: 'itemCode',

21
src/views/wms/inventoryManage/transaction/transaction.data.ts

@ -33,14 +33,7 @@ export const Transaction = useCrudSchemas(reactive<CrudSchema[]>([
width: 150 width: 150
}, },
}, },
{
label: '操作员',
field: 'worker',
sort: 'custom',
table: {
width: 150
},
},
{ {
label: '业务类型', label: '业务类型',
field: 'businessType', field: 'businessType',
@ -53,8 +46,10 @@ export const Transaction = useCrudSchemas(reactive<CrudSchema[]>([
label: '记录号', label: '记录号',
field: 'recordNumber', field: 'recordNumber',
sort: 'custom', sort: 'custom',
isTable: true,
isSearch: true,
table: { table: {
width: 150 width: 180
}, },
}, },
{ {
@ -312,6 +307,14 @@ export const Transaction = useCrudSchemas(reactive<CrudSchema[]>([
width: 150 width: 150
}, },
}, },
{
label: '操作员',
field: 'worker',
sort: 'custom',
table: {
width: 150
},
},
])) ]))
// 表单校验 // 表单校验

Loading…
Cancel
Save