From 3826cdae370510ae5fc792ff420e8ad6b8185d19 Mon Sep 17 00:00:00 2001 From: wangliwen Date: Mon, 26 Sep 2022 16:50:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../processForm/controller/TAbilityApplicationController.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renren-admin/src/main/java/io/renren/modules/processForm/controller/TAbilityApplicationController.java b/renren-admin/src/main/java/io/renren/modules/processForm/controller/TAbilityApplicationController.java index 9240a4d7..5176db8c 100644 --- a/renren-admin/src/main/java/io/renren/modules/processForm/controller/TAbilityApplicationController.java +++ b/renren-admin/src/main/java/io/renren/modules/processForm/controller/TAbilityApplicationController.java @@ -277,7 +277,8 @@ public class TAbilityApplicationController { if (task != null && StringUtils.isNotEmpty(task.getId()) && StringUtils.isNumeric(task.getAssignee())) { final HistoryDetailDTO detailDTO = new HistoryDetailDTO(); detailDTO.setId(task.getId()); - detailDTO.setAssignee(sysUserService.get(Long.valueOf(task.getAssignee())).getRealName()); + detailDTO.setAssignee(task.getAssignee()); + detailDTO.setAssigneeName(sysUserService.get(Long.valueOf(task.getAssignee())).getRealName()); detailDTO.setActivityName(task.getName()); detailDTO.setActivityType(""); detailDTO.setStartTime(task.getCreateTime());