Browse Source

【品番拉动配置表】中拉动方式改为多选,进入消耗表的条件变更

intex_online20250725
叶佳兴 4 days ago
parent
commit
88539ebf9c
  1. 48
      src/views/wms/basicDataManage/itemPull/itemPull.data.ts

48
src/views/wms/basicDataManage/itemPull/itemPull.data.ts

@ -11,7 +11,9 @@ import { Area } from '@/views/wms/basicDataManage/factoryModeling/areabasic/area
export const ItemPullRules = reactive({
defaultErpLocationCode: [required],
replenishType: [required],
pullType: [required]
pullTypeList: [
{ required: true, message: '请选择拉动方式', trigger: 'change' }
],
})
export const ItemPull = useCrudSchemas(
@ -181,18 +183,40 @@ export const ItemPull = useCrudSchemas(
width: 120
}
},
{
label: '拉动方式',
field: 'pullType',
sort: 'custom',
dictType: DICT_TYPE.PULL_TYPE,
dictClass: 'string',
isSearch: true,
isTable: true,
table: {
width: 120
}
// {
// label: '拉动方式',
// field: 'pullType',
// sort: 'custom',
// dictType: DICT_TYPE.PULL_TYPE,
// dictClass: 'string',
// isSearch: true,
// isTable: true,
// multiple: true,
// table: {
// width: 120,
// }
// },
{
label: '拉动方式',
field: 'pullTypeList',
dictType: DICT_TYPE.PULL_TYPE,
dictClass: 'string',
// dictAllOption:true,// 全选按钮
// dictAllValue:'全选',
isTable: true,
sort: 'custom',
table: {
width: 180
},
form: {
component:'Select',
componentProps: {
multiple: true,
},
}
},
{
label: '创建者',
field: 'creator',

Loading…
Cancel
Save