Explorar el Código

流程监控增加流程类别搜索

dzx hace 1 año
padre
commit
54cfc27855

+ 1 - 0
src/main/java/com/xjrsoft/module/workflow/service/impl/WorkflowExecuteServiceImpl.java

@@ -4027,6 +4027,7 @@ public class WorkflowExecuteServiceImpl implements IWorkflowExecuteService {
         if (processIds.size() > 0) {
             List<WorkflowExtra> workflowExtras = extraService.list(
                     new MPJLambdaWrapper<WorkflowExtra>()
+                            .select(WorkflowExtra.class, x -> VoToColumnUtil.fieldsToColumns(WorkflowExtra.class).contains(x.getProperty()))
                             .leftJoin(WorkflowSchema.class, WorkflowSchema::getId, WorkflowExtra::getSchemaId)
                             .leftJoin(DictionaryDetail.class, DictionaryDetail::getId, WorkflowSchema::getCategory)
                             .eq(StrUtil.isNotEmpty(dto.getCategory()), DictionaryDetail::getCode, dto.getCategory())