合同流程监控归档完善

jg-waiwang-pro
mhsnet 8 months ago
parent 1bd5c59330
commit 1eee3290fe

@ -119,6 +119,12 @@ public class FlowTaskServiceImpl extends SuperServiceImpl<FlowTaskMapper, FlowTa
flag = true; flag = true;
queryWrapper.lambda().eq(FlowTaskEntity::getStatus, status); queryWrapper.lambda().eq(FlowTaskEntity::getStatus, status);
} }
//流程状态
Integer completion = paginationFlowTask.getCompletion() != null ? paginationFlowTask.getCompletion() : null;
if (ObjectUtil.isNotEmpty(completion)) {
flag = true;
queryWrapper.lambda().eq(FlowTaskEntity::getCompletion, completion);
}
//流程模板 //流程模板
String templateId = paginationFlowTask.getTemplateId() != null ? paginationFlowTask.getTemplateId() : null; String templateId = paginationFlowTask.getTemplateId() != null ? paginationFlowTask.getTemplateId() : null;
if (ObjectUtil.isNotEmpty(templateId)) { if (ObjectUtil.isNotEmpty(templateId)) {

@ -29,6 +29,8 @@ public class PaginationFlowTask extends PaginationTime {
private String creatorUserId; private String creatorUserId;
@Schema(description ="状态") @Schema(description ="状态")
private Integer status; private Integer status;
@Schema(description ="完成情况")
private Integer completion;
@Schema(description ="批量审批",hidden = true) @Schema(description ="批量审批",hidden = true)
@JsonIgnore @JsonIgnore
private Integer isBatch; private Integer isBatch;

Loading…
Cancel
Save