fix(查询流程审批记录): 80979
This commit is contained in:
+8
@@ -16,6 +16,8 @@ import javax.annotation.Resource;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
*
|
||||
*@author liJiaRao
|
||||
@@ -55,6 +57,12 @@ public class ProcessApprovalRecordService extends ServiceImpl<ProcessApprovalRec
|
||||
taskAcceptor += "(由"+name+"转办)";
|
||||
}
|
||||
record.setTaskAcceptor(taskAcceptor);
|
||||
|
||||
// 进行中的审批记录不显示意见内容和附件信息
|
||||
if (Objects.equals(record.getFinishFlag(), FinishFlagEnum.INCOMPLETE.getValue())){
|
||||
record.setCommitText(null);
|
||||
record.setCommitFile(null);
|
||||
}
|
||||
}
|
||||
return pageList;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user