feat: 新增多模块功能并完善功能清单
Some checks failed
Release pipeline / publish (push) Has been cancelled
Release pipeline / Always run job (push) Has been cancelled

1. 新增BOM物料清单、班组管理、班次管理、排班日历、监控设置页面及对应路由
2. 新增相关业务API接口
3. 完善多语言国际化配置
4. 更新功能迁移状态清单,完成所有功能迁移
5. 新增各模块测试用例文档
This commit is contained in:
sheng
2026-06-23 10:39:42 +08:00
20 changed files with 1910 additions and 693 deletions

View File

@@ -68,6 +68,12 @@ export default {
meta: { ...meta, cache: true, title: '物料信息管理' },
component: _import('production-master-data/material-model/material-master')
},
{
path: 'matetial_model/bom',
name: `${pre}material_model-bill_of_materials`,
meta: { ...meta, cache: true, title: 'BOM物料清单' },
component: _import('production-master-data/material-model/bill-of-materials')
},
{
path: 'matetial_model/unit',
name: `${pre}material_model-material_unit`,

View File

@@ -49,6 +49,30 @@ export default {
name: `${pre}system_assistant-problem_help`,
meta: { ...meta, cache: true, title: '问题帮助' },
component: _import('system-administration/system-utilities/problem-help')
},
{
path: 'system_monitoring/setting',
name: `${pre}system_monitoring-setting`,
meta: { ...meta, cache: true, title: '监控设置' },
component: _import('system-administration/system-monitoring/monitoring-configuration')
},
{
path: 'organization/production_team_manage',
name: `${pre}organization-production_team_manage`,
meta: { ...meta, cache: true, title: '班组管理' },
component: _import('production-master-data/team-model/team-management')
},
{
path: 'organization/production_shift_management',
name: `${pre}organization-production_shift_management`,
meta: { ...meta, cache: true, title: '班次管理' },
component: _import('production-master-data/team-model/shift-management')
},
{
path: 'organization/production_shift_calender',
name: `${pre}organization-production_shift_calender`,
meta: { ...meta, cache: true, title: '排班日历' },
component: _import('production-master-data/team-model/scheduling-calendar')
}
])('system_settings-')
}