diff --git a/src/views/wms/countManage/count/countJobMain/countJobMain.data.ts b/src/views/wms/countManage/count/countJobMain/countJobMain.data.ts index c81addf77..4774927d0 100644 --- a/src/views/wms/countManage/count/countJobMain/countJobMain.data.ts +++ b/src/views/wms/countManage/count/countJobMain/countJobMain.data.ts @@ -27,6 +27,33 @@ export const CountJobMain = useCrudSchemas(reactive([ width: 150 }, }, + { + label: '任务拆分方式', + field: 'countSplitType', + dictType: DICT_TYPE.COUNT_SPLIT_TYPE, + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true, + form: { + value: 'locationCode' + } + + }, + { + label: '任务拆分值', + field: 'countSplitCode', + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true + }, { label: '计划单号', field: 'planNumber', diff --git a/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts b/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts index 64f38a54f..402a2964e 100644 --- a/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts +++ b/src/views/wms/countManage/count/countPlanMain/countPlanMain.data.ts @@ -48,6 +48,22 @@ export const CountPlanMain = useCrudSchemas(reactive([ }, isSearch: true }, + { + label: '任务拆分方式', + field: 'countSplitType', + dictType: DICT_TYPE.COUNT_SPLIT_TYPE, + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true, + form: { + value: 'locationCode' + } + + }, { label: '',//执行周期 field: 'crontab', @@ -76,22 +92,6 @@ export const CountPlanMain = useCrudSchemas(reactive([ } } }, - { - label: '任务拆分方式', - field: 'countSplitType', - dictType: DICT_TYPE.COUNT_SPLIT_TYPE, - dictClass: 'string', - sort: 'custom', - table: { - width: 150 - }, - isTable:true, - isForm: true, - form: { - value: 'locationCode' - } - - }, { label: '维度', field: 'dimension', diff --git a/src/views/wms/countManage/count/countRecordMain/countRecordMain.data.ts b/src/views/wms/countManage/count/countRecordMain/countRecordMain.data.ts index 8b5029d6d..5e19bb62e 100644 --- a/src/views/wms/countManage/count/countRecordMain/countRecordMain.data.ts +++ b/src/views/wms/countManage/count/countRecordMain/countRecordMain.data.ts @@ -40,14 +40,33 @@ export const CountRecordMain = useCrudSchemas(reactive([ width: 150 }, }, - // { - // label: '仓库代码', - // field: 'warehouseCode', - // sort: 'custom', - // table: { - // width: 150 - // }, - // }, + { + label: '任务拆分方式', + field: 'countSplitType', + dictType: DICT_TYPE.COUNT_SPLIT_TYPE, + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true, + form: { + value: 'locationCode' + } + + }, + { + label: '任务拆分值', + field: 'countSplitCode', + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true + }, { label: '阶段', field: 'stage', diff --git a/src/views/wms/countManage/count/countRequestMain/countRequestMain.data.ts b/src/views/wms/countManage/count/countRequestMain/countRequestMain.data.ts index 53a9b2930..ccb01037a 100644 --- a/src/views/wms/countManage/count/countRequestMain/countRequestMain.data.ts +++ b/src/views/wms/countManage/count/countRequestMain/countRequestMain.data.ts @@ -90,15 +90,22 @@ export const CountRequestMain = useCrudSchemas(([ }, isSearch: true, }, - // { - // label: '仓库代码', - // field: 'warehouseCode', - // sort: 'custom', - // table: { - // width: 150 - // }, - // isSearch: true, - // }, + { + label: '任务拆分方式', + field: 'countSplitType', + dictType: DICT_TYPE.COUNT_SPLIT_TYPE, + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true, + form: { + value: 'locationCode' + } + + }, { label: '申请时间', field: 'requestTime', diff --git a/src/views/wms/countManage/countadjust/countadjustRecordMain/countadjustRecordMain.data.ts b/src/views/wms/countManage/countadjust/countadjustRecordMain/countadjustRecordMain.data.ts index 32950081e..b79fd418e 100644 --- a/src/views/wms/countManage/countadjust/countadjustRecordMain/countadjustRecordMain.data.ts +++ b/src/views/wms/countManage/countadjust/countadjustRecordMain/countadjustRecordMain.data.ts @@ -24,22 +24,32 @@ export const CountadjustRecordMain = useCrudSchemas(reactive([ }, isSearch: true }, - // { - // label: '盘点记录单号', - // field: 'countRecordNumber', - // sort: 'custom', - // table: { - // width: 180 - // }, - // isSearch: true - // }, { - label: '仓库代码', - field: 'warehouseCode', + label: '任务拆分方式', + field: 'countSplitType', + dictType: DICT_TYPE.COUNT_SPLIT_TYPE, + dictClass: 'string', sort: 'custom', table: { width: 150 }, + isTable:true, + isForm: true, + form: { + value: 'locationCode' + } + + }, + { + label: '任务拆分值', + field: 'countSplitCode', + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true }, { label: '出库事务类型', @@ -532,4 +542,4 @@ export const CountadjustRecordDetailRules =reactive({ creator: [ { required: true, message: '请输入创建者', trigger: 'blur' } ], -}) \ No newline at end of file +}) diff --git a/src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts b/src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts index 490dfe82c..a88081343 100644 --- a/src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts +++ b/src/views/wms/countManage/countadjust/countadjustRequestMain/countadjustRequestMain.data.ts @@ -55,6 +55,33 @@ export const CountadjustRequestMain = useCrudSchemas(([ }, }, + { + label: '任务拆分方式', + field: 'countSplitType', + dictType: DICT_TYPE.COUNT_SPLIT_TYPE, + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true, + form: { + value: 'locationCode' + } + + }, + { + label: '任务拆分值', + field: 'countSplitCode', + dictClass: 'string', + sort: 'custom', + table: { + width: 150 + }, + isTable:true, + isForm: true + }, // { // label: '申请单号', // field: 'requestNumber',