Commit 04c0ee74 by 徐高华

导购

parent 5ebca4df
......@@ -312,6 +312,12 @@ public class StaffClerkRelationApiServiceImpl implements StaffClerkRelationApiSe
if(StringUtils.isBlank(item.getOptStaffName())) {
item.setOptStaffName("未知成员");
}
if(StringUtils.isBlank(item.getClerkName())) {
ClerkDTO clerkDTO = clerkService.getClerkByClerkIdNoStatus(item.getClerkId());
if (null != clerkDTO) {
item.setClerkName(clerkDTO.getClerkName());
}
}
item.setClerkPhoneNumber(item.getClerkPhone());
});
}
......@@ -342,6 +348,12 @@ public class StaffClerkRelationApiServiceImpl implements StaffClerkRelationApiSe
if(StringUtils.isBlank(item.getOptStaffName())) {
item.setOptStaffName("未知成员");
}
if(StringUtils.isBlank(item.getClerkName())) {
ClerkDTO clerkDTO = clerkService.getClerkByClerkIdNoStatus(item.getClerkId());
if (null != clerkDTO) {
item.setClerkName(clerkDTO.getClerkName());
}
}
item.setClerkPhoneNumber(item.getClerkPhone());
});
}
......
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