Commit 35428b39 by jinxin

操作人名字问题处理

parent 5fe4f80c
...@@ -98,12 +98,10 @@ public class StaffClerkRelationApiServiceImpl implements StaffClerkRelationApiSe ...@@ -98,12 +98,10 @@ public class StaffClerkRelationApiServiceImpl implements StaffClerkRelationApiSe
clerkName = clerkDTO.getClerkName(); clerkName = clerkDTO.getClerkName();
} }
String operClerkId = infoDTO.getOptStaffId(); String operClerkId = infoDTO.getOptStaffId();
//操作人只有staffId,operName字段存储成员名称 ClerkDTO operClerkDTO = clerkService.getClerkByClerkIdNoStatus(operClerkId);
TabHaobanStaff tabHaobanStaff = staffService.selectById(operClerkId);
// clerkDTO = clerkService.getClerkByClerkIdNoStatus(clerkRelation.getClerkId());
String operName = null; String operName = null;
if (null != tabHaobanStaff) { if (null != operClerkDTO) {
operName = tabHaobanStaff.getStaffName(); operName = operClerkDTO.getClerkName();
} }
TabHaobanStaffClerkBindLog enity = new TabHaobanStaffClerkBindLog(); TabHaobanStaffClerkBindLog enity = new TabHaobanStaffClerkBindLog();
enity.setClerkId(clerkRelation.getClerkId()); enity.setClerkId(clerkRelation.getClerkId());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment