feat(training): 完善培训申请审批流程功能

dev
zhaokai 2026-03-10 09:44:51 +08:00
parent 0471fc29f8
commit 73759034cd
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public class TrainingApplyProcessQueryExe {
String nodeName = e.getNodeName() == null ? "" : e.getNodeName();
String username = e.getUsername() == null ? "" : e.getUsername();
String time =null;
if(e.getApplyType()!=null && ApplyTypeEnum.APPROVAL.getCode().equals(e.getApplyType().longValue())){
if(e.getApplyType()!=null && byTrainingRecordId.getApprovalTime()!=null){
time = byTrainingRecordId.getApprovalTime().format(java.time.format.DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
}
String secondLine = StrUtil.isNotBlank(time) ? (username + " " + time) : username;