Browse Source

添加流程任务节点key字典值

dongpo 1 year ago
parent
commit
38ebc3f7c0

+ 11 - 1
yudao-module-bpm/yudao-module-bpm-api/src/main/java/cn/iocoder/yudao/module/bpm/enums/DictDataConstants.java

@@ -35,5 +35,15 @@ public interface DictDataConstants {
      * 已撤回状态
      */
     String OA_AUDIT_STATUS_RECALLED = "6";
-    
+
+    /**
+     * bpm任务定义节点Key:申请节点
+     */
+    String OA_TASK_DEFINITION_KEY_MODIFY_APPLY = "modifyApply";
+
+    /**
+     * bpm任务定义节点Key:审核节点
+     */
+    String OA_TASK_DEFINITION_KEY_APPROVER = "approver";
+
 }

+ 6 - 0
yudao-module-bpm/yudao-module-bpm-api/src/main/java/cn/iocoder/yudao/module/bpm/enums/DictTypeConstants.java

@@ -14,4 +14,10 @@ public interface DictTypeConstants {
      * bpm流程审核状态
      */
     String BPM_TASK_AUDIT_STATUS = "bpm_task_audit_status";
+
+    /**
+     * bpm任务定义节点Key
+     */
+    String BPM_TASK_DEFINITION_KEY = "bpm_task_definition_key";
+
 }

+ 1 - 1
yudao-server/src/main/resources/application-local.yaml

@@ -173,7 +173,7 @@ logging:
     cn.iocoder.yudao.module.crm.dal.mysql: debug
     cn.iocoder.yudao.module.erp.dal.mysql: debug
     org.springframework.context.support.PostProcessorRegistrationDelegate: ERROR # TODO 芋艿:先禁用,Spring Boot 3.X 存在部分错误的 WARN 提示
-    org.flowable: debug
+#    org.flowable: debug
 
 debug: false