|
|
@@ -344,7 +344,7 @@ public class RuleEngine {
|
|
|
}
|
|
|
JSONObject sendJson = new JSONObject();
|
|
|
sendJson.put("id", advanceWarningAudit.getId());
|
|
|
- sendJson.put("type", "during");
|
|
|
+ sendJson.put("type", "before");
|
|
|
webSocket.pushMessage(ipStr, sendJson.toJSONString());
|
|
|
} catch (Exception e) {
|
|
|
log.error(e.getMessage(), e);
|
|
|
@@ -395,7 +395,7 @@ public class RuleEngine {
|
|
|
if (sendFlag) {
|
|
|
JSONObject sendJson = new JSONObject();
|
|
|
sendJson.put("id", midIncidentAudit.getId());
|
|
|
- sendJson.put("type", "before");
|
|
|
+ sendJson.put("type", "during");
|
|
|
webSocket.pushMessage(ipStr, sendJson.toJSONString());
|
|
|
} else {
|
|
|
log.error("无违规,事中审核无需提醒 门诊/住院号:{}", midIncidentWarningVO.getVisit_no());
|