Ver Fonte

会签,去掉固定字符

dzx há 1 ano atrás
pai
commit
1e29967fe5

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

@@ -5732,7 +5732,7 @@ public class WorkflowExecuteServiceImpl implements IWorkflowExecuteService {
             String comment = p.getComment();
             String approveComment = "";
             if(!"".equals(comment) && comment != null){
-                approveComment = comment.substring(comment.indexOf("审批内容:")+5);
+                approveComment = comment.substring(comment.indexOf("审批内容:")+5).replaceAll(",未达到会签完成条件", "");
             }
 
             String[] commentArr = comment.split(",");