Commit 13cff1e5 authored by 马超's avatar 马超

Merge branch 'develop' into 'master'

Develop

See merge request doc/ldp-docs!12
parents dd598b4c 5f468972
...@@ -24,6 +24,37 @@ ...@@ -24,6 +24,37 @@
## 2021-09-07
**bpm-service**
版本:**1.0.28**
`feat`:
1. 节点添加相同审批人跳过配置
2. 节点添加默认抄送人配置
3. 节点监听器添加默认监听器
4. 流程定义回调增加已阅回调
5. 流程定义回调增加任务回调
### 本次更新方式
1. 替换ldp-manage/fatjar 目录下对应bpm的jar包
2. 替换nginx中bpm的前端代码
- 流程系统配置操作参考文档:[流程系统操作说明.md](流程系统集成/流程系统操作说明.md) 第1.1.4、1.1.5、1.1.6小节
## 2021-07-19 ## 2021-07-19
版本号: **1.2.47** 版本号: **1.2.47**
......
...@@ -231,6 +231,16 @@ public RestResult getListByJdbc(@RequestParamMap(typeCovertMapping = ExampleUser ...@@ -231,6 +231,16 @@ public RestResult getListByJdbc(@RequestParamMap(typeCovertMapping = ExampleUser
**使用时需传递 moduleKey(模块名称,如果是新模块需提前建立表,以ldp_audit_log_ 开头+ modulekey 录入的值结尾的表 如ldp_audit_log_example , 表结构可参考 ldp_audit_log_sys), subKey 子模块名称最终会保存在日志中作为二级子模块**; **使用时需传递 moduleKey(模块名称,如果是新模块需提前建立表,以ldp_audit_log_ 开头+ modulekey 录入的值结尾的表 如ldp_audit_log_example , 表结构可参考 ldp_audit_log_sys), subKey 子模块名称最终会保存在日志中作为二级子模块**;
#### 3.2.3 版本变更(1.2.48以上)
注解增加属性`service`,值为枚举值`DynamicLogBizServiceEnum.INTERNAL` 或者 `DynamicLogBizServiceEnum.EXTERNAL`默认为`DynamicLogBizServiceEnum.EXTERNAL`,和之前版本的区分为:
EXTERNAL:需要在业务库中创建日志表。
INTERNAL:是调用dubbo rpc接口来存放日志,需要在LDP-MCS对应的数据库中创建日志表,并且需要依赖`internal-common-service`
RESTFUl:是使用REST请求调用mcs接口来存放日志
### 3.3. @SysJobLog ### 3.3. @SysJobLog
#### 3.3.1 注解介绍 #### 3.3.1 注解介绍
......
...@@ -26,6 +26,8 @@ ldp: ...@@ -26,6 +26,8 @@ ldp:
hidden-assign-button: true hidden-assign-button: true
# 隐藏委派按钮 # 隐藏委派按钮
hidden-delegate-button: true hidden-delegate-button: true
# 1.2.47版本后新增相同审批人跳过逻辑,需要跳过则配置为true
skip-approve-when-same-assign-user: true
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment