- models: sd_projects/sd_project_role_models/pipeline_deliverables 3个JSON删除——归属core,双源必乱 - json: sd_project_list/pipeline_deliverables_list CRUD定义删除(迁core) - wwwroot/api: 15个CRUD页面依赖的dspy删除(随页面迁core,entire_url相对解析跟页面走) - wwwroot/sd_project_role_models: 手写角色模型页整目录删除(迁core) - scripts/load_path.py: 已迁页面的RBAC注册条目删除(sd_projects 5条/sd_project_list 1条/role_models 5条/api 4条) - json/sd_iteration_list+sd_deploy_env_list+sd_features_list: get_project_options.dspy引用改绝对路径/pipeline_core/api/**(留在sdlc的页面消费迁走的api) - wwwroot/api/cockpit_cards.dspy: 项目管理弹窗URL改/pipeline_core/sd_projects/index.ui - init/data.json: 4组字典随表迁core(sd_project_status/sd_project_type/deliverable_type/review_status) - .gitignore: 已迁生成目录条目清理(sd_projects//pipeline_deliverables/) - 顺带清死双源: wwwroot/json/整目录(build.sh只读模块根json/,wwwroot/json零消费方+内容漂移:subtables还指着改名前的目录)+wwwroot/sd_project_list/index.ui死占位页(零菜单引用)
81 lines
2.0 KiB
JSON
81 lines
2.0 KiB
JSON
{
|
|
"tblname": "sd_iterations",
|
|
"title": "迭代管理",
|
|
"params": {
|
|
"sortby": [
|
|
"created_at desc"
|
|
],
|
|
"confidential_fields": [],
|
|
"browserfields": {
|
|
"exclouded": [
|
|
"scope"
|
|
],
|
|
"alters": {
|
|
"project_id": {
|
|
"uitype": "code",
|
|
"dataurl": "{{entire_url('/pipeline_core/api/get_project_options.dspy')}}",
|
|
"valueField": "value",
|
|
"textField": "text"
|
|
},
|
|
"iteration_type": {
|
|
"uitype": "code",
|
|
"dataurl": "{{entire_url('../api/get_search_iteration_type.dspy')}}",
|
|
"valueField": "value",
|
|
"textField": "text"
|
|
},
|
|
"status": {
|
|
"uitype": "code",
|
|
"dataurl": "{{entire_url('../api/get_search_iteration_status.dspy')}}",
|
|
"valueField": "value",
|
|
"textField": "text"
|
|
}
|
|
}
|
|
},
|
|
"editexclouded": [
|
|
"id",
|
|
"task_id",
|
|
"started_at",
|
|
"completed_at",
|
|
"created_at",
|
|
"updated_at"
|
|
],
|
|
"editable": {
|
|
"new_data_url": "{{entire_url('../api/sd_iteration_create.dspy')}}",
|
|
"update_data_url": "{{entire_url('../api/sd_iteration_update.dspy')}}",
|
|
"delete_data_url": "{{entire_url('../api/sd_iteration_delete.dspy')}}"
|
|
},
|
|
"data_filter": {
|
|
"AND": [
|
|
{
|
|
"field": "project_id",
|
|
"op": "=",
|
|
"var": "project_input"
|
|
},
|
|
{
|
|
"field": "iteration_name",
|
|
"op": "LIKE",
|
|
"var": "name_input"
|
|
},
|
|
{
|
|
"field": "status",
|
|
"op": "=",
|
|
"var": "status_input"
|
|
}
|
|
]
|
|
},
|
|
"subtables": [
|
|
{
|
|
"field": "iteration_id",
|
|
"title": "Bug列表",
|
|
"url": "{{entire_url('../sd_bugs?iteration_id=${id}')}}",
|
|
"subtable": "sd_bugs"
|
|
},
|
|
{
|
|
"field": "iteration_id",
|
|
"title": "测试方案",
|
|
"url": "{{entire_url('../sd_test_plans?iteration_id=${id}')}}",
|
|
"subtable": "sd_test_plans"
|
|
}
|
|
]
|
|
}
|
|
} |