diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/entity/ProcessAll.java b/laws-modules/src/main/java/com/jero/modules/activiti/entity/ProcessAll.java index f31415a2..945c5596 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/entity/ProcessAll.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/entity/ProcessAll.java @@ -199,7 +199,7 @@ public class ProcessAll { @TableField(exist = false) private String countersignFlag; - @ApiModelProperty(value = "标准主解读人分发节点是否显示驳回/转办(字典:1:是,0:否)") + @ApiModelProperty(value = "是否显示驳回/转办(字典:1:是,0:否)") @Dict(dicCode = "yn") @TableField(exist = false) private String showRejectTransition = "1"; diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java index 0100394c..94df25c4 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java @@ -730,7 +730,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe && YesOrNoEnum.NO.getValue().equals(processStandardInterpret.getChooseClause())){ processStandardInterpretClauseList = new ArrayList<>(); } - // 是否显示驳回 + // 是否显示驳回/转办 // 查询是否存在子流程 int count = processApprovalRecordService.count( new LambdaQueryWrapper() @@ -738,7 +738,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe processApprovalRecord.getProcessInstanceId()) .isNotNull(ProcessApprovalRecord::getParentTaskId)); if (count > 0 || StandardInterpretCommon.MASTER_INTERPRET_AGAIN_DISTRIBUTE.equals(node)){ - processStandardInterpret.setShowReject(YesOrNoEnum.NO.getValue()); + processStandardInterpret.setShowRejectTransition(YesOrNoEnum.NO.getValue()); } }