Browse Source

YT-1662:wms物料清单添加背番

intex_online20241224
songguoqiang 2 months ago
parent
commit
a51a283f35
  1. 30
      src/views/wms/basicDataManage/itemManage/bom/bom.data.ts

30
src/views/wms/basicDataManage/itemManage/bom/bom.data.ts

@ -43,6 +43,21 @@ export const Bom = useCrudSchemas(reactive<CrudSchema[]>([
} }
} }
}, },
{
label: '父背番',
field: 'productBackNumber',
sort: 'custom',
isSearch: true,
hiddenSearchHigh:true,
table: {
width: 150
},
form:{
componentProps:{
disabled: true,
}
}
},
{ {
label: '子物料代码', label: '子物料代码',
field: 'componentItemCode', field: 'componentItemCode',
@ -72,6 +87,21 @@ export const Bom = useCrudSchemas(reactive<CrudSchema[]>([
} }
} }
}, },
{
label: '子背番',
field: 'componentBackNumber',
sort: 'custom',
isSearch: true,
hiddenSearchHigh:true,
table: {
width: 150
},
form:{
componentProps:{
disabled: true,
}
}
},
{ {
label: '子物料计量单位', label: '子物料计量单位',
field: 'componentUom', field: 'componentUom',

Loading…
Cancel
Save