Skip to content

Commit

Permalink
Clinical alerts modification (#873)
Browse files Browse the repository at this point in the history
* Dupe cases warning is removed.

* Dupe cases warning is removed.
  • Loading branch information
kollil authored Dec 19, 2023
1 parent b2461b8 commit 7e2e6e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ 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);

//Edited by Kollil: 12/18/23
//Removing this warning per request. Please check tkt # 10276 for details.
//duplicateCases(c, u, msg);

return msg.toString();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ public String getMessageBodyHTML(Container c, User u)
{
StringBuilder msg = new StringBuilder();

duplicateCases(c, u, msg);
//Edited by Kollil: 12/18/23
//Removing this warning per request. Please check tkt # 10276 for details.
//duplicateCases(c, u, msg);
animalsWithoutRounds(c, u, msg);
//animalsWithoutVetReview(c, u, msg);

Expand Down

0 comments on commit 7e2e6e9

Please sign in to comment.