diff --git a/onprc_ehr/src/org/labkey/onprc_ehr/notification/ClinicalAlertsNotification.java b/onprc_ehr/src/org/labkey/onprc_ehr/notification/ClinicalAlertsNotification.java index 44da6de65..edde1ea8e 100644 --- a/onprc_ehr/src/org/labkey/onprc_ehr/notification/ClinicalAlertsNotification.java +++ b/onprc_ehr/src/org/labkey/onprc_ehr/notification/ClinicalAlertsNotification.java @@ -97,7 +97,9 @@ public String getMessageBodyHTML(Container c, User u) groupProblemSummary(c, u, msg, 30, 10); roomProblemSummary(c, u, msg, 7, 5); roomProblemSummary(c, u, msg, 30, 10); - duplicateCases(c, u, msg); + //Modified by: Kollil, 12/15/2023 + //This warning is disabled as per tkt # 10276. Please check the ticket for more info + //duplicateCases(c, u, msg); return msg.toString(); } diff --git a/onprc_ehr/src/org/labkey/onprc_ehr/notification/ClinicalRoundsNotification.java b/onprc_ehr/src/org/labkey/onprc_ehr/notification/ClinicalRoundsNotification.java index 2c719c49d..421c48b08 100644 --- a/onprc_ehr/src/org/labkey/onprc_ehr/notification/ClinicalRoundsNotification.java +++ b/onprc_ehr/src/org/labkey/onprc_ehr/notification/ClinicalRoundsNotification.java @@ -84,7 +84,10 @@ public String getMessageBodyHTML(Container c, User u) { StringBuilder msg = new StringBuilder(); - duplicateCases(c, u, msg); + //Modified by: Kollil, 12/15/2023 + //This warning is disabled as per tkt # 10276. Please check the ticket for more info + //duplicateCases(c, u, msg); + animalsWithoutRounds(c, u, msg); //animalsWithoutVetReview(c, u, msg);