|
@@ -131,6 +131,12 @@ public class KfAppletMsgServiceImpl implements IKfAppletMsgService {
|
|
|
if (Strings.isNotBlank(orderId) && this.orderHandle(orderId, gameApplet.getGameId(), kfAppletMsgDTO, kfRoom, kfRoomMsg)) {
|
|
|
return;
|
|
|
}
|
|
|
+ //不存在订单的小程序消息, 直接略过, 不转入待接入
|
|
|
+ if (Objects.equals(kfAppletMsgDTO.getMsgType(), KfRoomMsgTypeEnum.KF_MSG_TYPE_MINI_APP.getValue())) {
|
|
|
+ kfRoomMsg.setReadStatus(Boolean.TRUE);
|
|
|
+ kfRoomMsgService.save(kfRoomMsg);
|
|
|
+ return;
|
|
|
+ }
|
|
|
//客服休息时间, 发送自动回复
|
|
|
this.systemReplyHandle(gameApplet.getGameId(), kfAppletMsgDTO.getFromUserName(), kfRoom);
|
|
|
//消息报警监测
|