Commit af156b67 by fudahua

消息推送

parent e7588d5c
......@@ -93,8 +93,17 @@ public class NoticeMessageApiServiceImpl implements NoticeMessageApiService {
return;
}
//stff存在 发送到staff上
String staffId = messageQDTO.getStaffId();
String wxUserId = null;
String wxEnterpriseId = null;
String storeId = "-1";
if (StringUtils.isNotEmpty(messageQDTO.getClerkId())) {
StaffClerkRelationDTO clerkRelationDTO = staffClerkRelationService.getByClerkId(messageQDTO.getClerkId());
staffId = staffId == null ? clerkRelationDTO.getStaffId() : staffId;
storeId = clerkRelationDTO.getStoreId();
}
StaffClerkRelationDTO clerkRelationDTO = null;
if (StringUtils.isNotBlank(messageQDTO.getStaffId())) {
TabHaobanStaff haobanStaff = staffService.selectById(messageQDTO.getStaffId());
......
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