Browse Source

bug修复 盘点主表增加是否明盘列显示

hella_online_20240829
bjang03 2 months ago
parent
commit
dc67251ca2
  1. 19
      src/views/wms/countManage/count/countJobMain/countJobMain.data.ts
  2. 19
      src/views/wms/countManage/count/countRecordMain/countRecordMain.data.ts
  3. 19
      src/views/wms/countManage/count/countRequestMain/countRequestMain.data.ts

19
src/views/wms/countManage/count/countJobMain/countJobMain.data.ts

@ -407,6 +407,25 @@ export const CountJobMain = useCrudSchemas(reactive<CrudSchema[]>([
width: 150 width: 150
}, },
}, },
{
label: '明盘',
field: 'isOpenCount',
dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string',
isTable: true,
form: {
component: 'Switch',
value: 'FALSE',
componentProps: {
inactiveValue: 'FALSE',
activeValue: 'TRUE'
}
},
sort: 'custom',
table: {
width: 150
},
},
{ {
label: '备注', label: '备注',
field: 'remark', field: 'remark',

19
src/views/wms/countManage/count/countRecordMain/countRecordMain.data.ts

@ -192,6 +192,25 @@ export const CountRecordMain = useCrudSchemas(reactive<CrudSchema[]>([
width: 150 width: 150
}, },
}, },
{
label: '明盘',
field: 'isOpenCount',
dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string',
isTable: true,
form: {
component: 'Switch',
value: 'FALSE',
componentProps: {
inactiveValue: 'FALSE',
activeValue: 'TRUE'
}
},
sort: 'custom',
table: {
width: 150
},
},
{ {
label: '备注', label: '备注',
field: 'remark', field: 'remark',

19
src/views/wms/countManage/count/countRequestMain/countRequestMain.data.ts

@ -164,6 +164,25 @@ export const CountRequestMain = useCrudSchemas(<CrudSchema[]>([
}, },
isForm: false, isForm: false,
}, },
{
label: '明盘',
field: 'isOpenCount',
dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string',
isTable: true,
form: {
component: 'Switch',
value: 'FALSE',
componentProps: {
inactiveValue: 'FALSE',
activeValue: 'TRUE'
}
},
sort: 'custom',
table: {
width: 150
},
},
{ {
label: '部门', label: '部门',
field: 'departmentCode', field: 'departmentCode',

Loading…
Cancel
Save