Files
supervision-test-repo/sql-changelog/dml/20260817_习讲话反馈流程process_key对齐.sql
T
wsm d66788eb94 !130 chore: gitignore 忽略 weekly-summary 目录
* chore: gitignore 忽略 weekly-summary 目录
* feat(bpm): 流程回归支持驳回路径驱动
* feat(bpm): 4个流程happy path回归测试全部跑通
* feat(bpm): 新增流程回归测试框架(连运行后端全路径驱动+自动清理)
2026-08-17 07:24:40 +00:00

10 lines
558 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 习讲话经办人反馈流程 process_key 对齐
-- 背景:该流程 ext_act_process.process_key 曾为中文(xispeak经办人反馈流程),
-- 与部署的 BPMN <process id>process_1778315114392)不一致,导致 startWorkflow
-- 按 process_key 查不到已部署定义、流程无法发起("立即发起流程失败")。
-- 对齐为 BPMN id 后,按 flowCode 发起即可正常启动。
UPDATE ext_act_process
SET process_key = 'process_1778315114392'
WHERE id = '2058711133876629506'
AND process_key <> 'process_1778315114392';