【功能新增】BPM:支持通过“历史”进行恢复
This commit is contained in:
parent
9927dd4439
commit
d8a7d668a4
|
@ -25,7 +25,7 @@ public class BpmModelRespVO extends BpmModelMetaInfoVO {
|
||||||
@Schema(description = "流程图标", example = "https://www.iocoder.cn/yudao.jpg")
|
@Schema(description = "流程图标", example = "https://www.iocoder.cn/yudao.jpg")
|
||||||
private String icon;
|
private String icon;
|
||||||
|
|
||||||
@Schema(description = "流程分类编码", example = "1")
|
@Schema(description = "流程分类编号", example = "1")
|
||||||
private String category;
|
private String category;
|
||||||
@Schema(description = "流程分类名字", example = "请假")
|
@Schema(description = "流程分类名字", example = "请假")
|
||||||
private String categoryName;
|
private String categoryName;
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
package cn.iocoder.yudao.module.bpm.controller.admin.definition.vo.process;
|
package cn.iocoder.yudao.module.bpm.controller.admin.definition.vo.process;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.bpm.controller.admin.definition.vo.model.BpmModelMetaInfoVO;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Schema(description = "管理后台 - 流程定义 Response VO")
|
@Schema(description = "管理后台 - 流程定义 Response VO")
|
||||||
@Data
|
@Data
|
||||||
public class BpmProcessDefinitionRespVO {
|
public class BpmProcessDefinitionRespVO extends BpmModelMetaInfoVO {
|
||||||
|
|
||||||
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
||||||
private String id;
|
private String id;
|
||||||
|
@ -22,36 +22,19 @@ public class BpmProcessDefinitionRespVO {
|
||||||
@Schema(description = "流程标识", requiredMode = Schema.RequiredMode.REQUIRED, example = "yudao")
|
@Schema(description = "流程标识", requiredMode = Schema.RequiredMode.REQUIRED, example = "yudao")
|
||||||
private String key;
|
private String key;
|
||||||
|
|
||||||
@Schema(description = "流程图标", requiredMode = Schema.RequiredMode.REQUIRED, example = "https://www.iocoder.cn/yudao.jpg")
|
|
||||||
private String icon;
|
|
||||||
|
|
||||||
@Schema(description = "流程描述", example = "我是描述")
|
|
||||||
private String description;
|
|
||||||
|
|
||||||
@Schema(description = "流程分类", example = "1")
|
@Schema(description = "流程分类", example = "1")
|
||||||
private String category;
|
private String category;
|
||||||
@Schema(description = "流程分类名字", example = "请假")
|
@Schema(description = "流程分类名字", example = "请假")
|
||||||
private String categoryName;
|
private String categoryName;
|
||||||
|
|
||||||
|
@Schema(description = "流程模型的编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "ABC")
|
||||||
|
private String modelId;
|
||||||
|
|
||||||
@Schema(description = "流程模型的类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
|
@Schema(description = "流程模型的类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
|
||||||
private Integer modelType; // 参见 BpmModelTypeEnum 枚举类
|
private Integer modelType; // 参见 BpmModelTypeEnum 枚举类
|
||||||
|
|
||||||
@Schema(description = "表单类型-参见 bpm_model_form_type 数据字典", example = "1")
|
|
||||||
private Integer formType;
|
|
||||||
@Schema(description = "表单编号-在表单类型为 {@link BpmModelFormTypeEnum#CUSTOM} 时,必须非空", example = "1024")
|
|
||||||
private Long formId;
|
|
||||||
@Schema(description = "表单名字", example = "请假表单")
|
@Schema(description = "表单名字", example = "请假表单")
|
||||||
private String formName;
|
private String formName;
|
||||||
@Schema(description = "表单的配置-JSON 字符串。在表单类型为 {@link BpmModelFormTypeEnum#CUSTOM} 时,必须非空", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
||||||
private String formConf;
|
|
||||||
@Schema(description = "表单项的数组-JSON 字符串的数组。在表单类型为 {@link BpmModelFormTypeEnum#CUSTOM} 时,必须非空", requiredMode = Schema.RequiredMode.REQUIRED)
|
|
||||||
private List<String> formFields;
|
|
||||||
@Schema(description = "自定义表单的提交路径,使用 Vue 的路由地址-在表单类型为 {@link BpmModelFormTypeEnum#CUSTOM} 时,必须非空",
|
|
||||||
example = "/bpm/oa/leave/create")
|
|
||||||
private String formCustomCreatePath;
|
|
||||||
@Schema(description = "自定义表单的查看路径,使用 Vue 的路由地址-在表单类型为 {@link BpmModelFormTypeEnum#CUSTOM} 时,必须非空",
|
|
||||||
example = "/bpm/oa/leave/view")
|
|
||||||
private String formCustomViewPath;
|
|
||||||
|
|
||||||
@Schema(description = "中断状态-参见 SuspensionState 枚举", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
@Schema(description = "中断状态-参见 SuspensionState 枚举", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
||||||
private Integer suspensionState; // 参见 SuspensionState 枚举
|
private Integer suspensionState; // 参见 SuspensionState 枚举
|
||||||
|
|
|
@ -2,7 +2,6 @@ package cn.iocoder.yudao.module.bpm.dal.dataobject.definition;
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.type.LongListTypeHandler;
|
import cn.iocoder.yudao.framework.mybatis.core.type.LongListTypeHandler;
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.type.StringListTypeHandler;
|
|
||||||
import cn.iocoder.yudao.module.bpm.controller.admin.definition.vo.model.BpmModelMetaInfoVO;
|
import cn.iocoder.yudao.module.bpm.controller.admin.definition.vo.model.BpmModelMetaInfoVO;
|
||||||
import cn.iocoder.yudao.module.bpm.enums.definition.BpmAutoApproveTypeEnum;
|
import cn.iocoder.yudao.module.bpm.enums.definition.BpmAutoApproveTypeEnum;
|
||||||
import cn.iocoder.yudao.module.bpm.enums.definition.BpmModelFormTypeEnum;
|
import cn.iocoder.yudao.module.bpm.enums.definition.BpmModelFormTypeEnum;
|
||||||
|
@ -60,6 +59,14 @@ public class BpmProcessDefinitionInfoDO extends BaseDO {
|
||||||
*/
|
*/
|
||||||
private Integer modelType;
|
private Integer modelType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 流程分类的编码
|
||||||
|
*
|
||||||
|
* 关联 {@link BpmCategoryDO#getCode()}
|
||||||
|
*
|
||||||
|
* 为什么要存储?原因是,{@link ProcessDefinition#getCategory()} 无法设置
|
||||||
|
*/
|
||||||
|
private String category;
|
||||||
/**
|
/**
|
||||||
* 图标
|
* 图标
|
||||||
*/
|
*/
|
||||||
|
@ -149,7 +156,7 @@ public class BpmProcessDefinitionInfoDO extends BaseDO {
|
||||||
*
|
*
|
||||||
* 关联 {@link AdminUserRespDTO#getId()} 字段的数组
|
* 关联 {@link AdminUserRespDTO#getId()} 字段的数组
|
||||||
*/
|
*/
|
||||||
@TableField(typeHandler = StringListTypeHandler.class) // 为了可以使用 find_in_set 进行过滤
|
@TableField(typeHandler = LongListTypeHandler.class) // 为了可以使用 find_in_set 进行过滤
|
||||||
private List<Long> managerUserIds;
|
private List<Long> managerUserIds;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -143,9 +143,8 @@ public class BpmProcessDefinitionServiceImpl implements BpmProcessDefinitionServ
|
||||||
|
|
||||||
// 插入拓展表
|
// 插入拓展表
|
||||||
BpmProcessDefinitionInfoDO definitionDO = BeanUtils.toBean(modelMetaInfo, BpmProcessDefinitionInfoDO.class)
|
BpmProcessDefinitionInfoDO definitionDO = BeanUtils.toBean(modelMetaInfo, BpmProcessDefinitionInfoDO.class)
|
||||||
.setModelId(model.getId()).setProcessDefinitionId(definition.getId())
|
.setModelId(model.getId()).setCategory(model.getCategory()).setProcessDefinitionId(definition.getId())
|
||||||
.setModelType(modelMetaInfo.getType()).setSimpleModel(simpleJson);
|
.setModelType(modelMetaInfo.getType()).setSimpleModel(simpleJson);
|
||||||
|
|
||||||
if (form != null) {
|
if (form != null) {
|
||||||
definitionDO.setFormFields(form.getFields()).setFormConf(form.getConf());
|
definitionDO.setFormFields(form.getFields()).setFormConf(form.getConf());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue