Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
2574ce1
feat(workflow-template): add frontend API adaptation and i18n keys fo…
LordofAvernus Apr 21, 2026
4aa4d84
feat(workflow-template): refactor approval process page from detail v…
LordofAvernus Apr 21, 2026
4a39b3b
feat(workflow-template): differentiate edit page by workflow type
LordofAvernus Apr 21, 2026
29b817f
feat(data-export): add approval process preview component to data exp…
LordofAvernus Apr 21, 2026
f9f038a
test(workflow-template): add/update unit tests for workflow template …
LordofAvernus Apr 21, 2026
5cfffaf
fix(test): add type annotation to dataExportWorkflowTemplateData and …
LordofAvernus Apr 21, 2026
2307042
fix(#784): fix data export workflow template UI issues
LordofAvernus Apr 22, 2026
eed1bd4
fix(#784): optimize workflow template UI - tab style, redirect link, …
LordofAvernus Apr 22, 2026
b9358b6
fix(#784): enforce audit node constraints, executor=creator, remove p…
LordofAvernus Apr 23, 2026
699a493
fix(#784): update mock data to include export_execute step in data ex…
LordofAvernus Apr 23, 2026
4f7a468
fix(#784): update frontend tests for data export template with export…
LordofAvernus Apr 23, 2026
3f795f8
fix(#784): update useInitDataWithRequest test to match initLoading be…
LordofAvernus Apr 23, 2026
a717d17
style(#784): apply prettier formatting
LordofAvernus Apr 23, 2026
11d6256
feat(workflow): type workflow_type for template APIs and align UI
LZS911 Apr 27, 2026
9df4dda
chore: restore version.ts
LZS911 Apr 27, 2026
6e5f2e6
fix: code review
LZS911 Apr 27, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions packages/base/src/locale/en-US/dmsDataExport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,17 @@ export default {
result: {
success: 'Task created successfully',
guide: 'View the newly created task'
},
approvalProcess: {
title: 'Approval Process',
hint: 'Approval process can be modified in Project Configure > Approval Process',
stepLabel: 'Step {{number}}',
matchByPermission: 'Match by Permission',
loadFailed: 'Failed to load approval process',
stepType: {
export_review: 'Export Review',
export_execute: 'Export Execution Confirm'
}
}
},
batchClose: {
Expand Down
11 changes: 11 additions & 0 deletions packages/base/src/locale/zh-CN/dmsDataExport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,17 @@ export default {
hasExceptionRule: '当前存在审核规则未被校验,请排除问题后重新触发审核',
continueSubmission: '仍要创建'
},
approvalProcess: {
title: '审批流程',
hint: '审批流程可在 项目配置 > 审批流程 中修改',
stepLabel: '步骤 {{number}}',
matchByPermission: '按权限匹配',
loadFailed: '加载审批流程失败',
stepType: {
export_review: '导出审批',
export_execute: '导出执行确认'
}
},
update: {
baseTitle: '工单基本信息',
sourceTitle: '工单导出对象',
Expand Down
Loading
Loading