|
|
@@ -7,6 +7,7 @@ import java.util.Map; |
|
|
|
|
|
|
|
import cn.com.taiji.common.pub.BeanTools; |
|
|
|
import cn.com.taiji.core.entity.msgw.MsgwSendApply; |
|
|
|
import cn.com.taiji.core.entity.user.Staff; |
|
|
|
import cn.com.taiji.core.model.comm.protocol.ats.weiXin.WxMiniSendMessageResponse; |
|
|
|
import cn.com.taiji.core.model.comm.protocol.ats.weiXin.WxMpSendMessageResponse; |
|
|
|
import cn.com.taiji.core.model.comm.protocol.ias.message.HltSendShortResponse; |
|
|
@@ -217,7 +218,10 @@ public class MessageWaitSendManagerImpl extends AbstractCommManager implements M |
|
|
|
if (request.getApplyId() != null){ |
|
|
|
MsgwSendApply apply = sendApplyRepo.findById(request.getApplyId()).orElse(null); |
|
|
|
if (apply.getAuditorOpenId() != null){ |
|
|
|
apply.setAuditorOpenId(staffRepo.findByOpenId(apply.getAuditorOpenId()).getStaffName()); |
|
|
|
Staff staff = staffRepo.findByOpenId(apply.getAuditorOpenId()); |
|
|
|
if (staff != null){ |
|
|
|
apply.setAuditorOpenId(staff.getStaffName()); |
|
|
|
} |
|
|
|
} |
|
|
|
response.setSendApply(apply); |
|
|
|
if (request.getDetailsId() != null){ |