Skip to content

Commit

Permalink
Updated Code
Browse files Browse the repository at this point in the history
  • Loading branch information
kollil committed Feb 20, 2025
1 parent 890fd8a commit cdfc572
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ protected void proceduresWithoutUSDAPainLevels(final Container c, User u, final
long count = ts.getRowCount();

if (count > 0) {//procedures count
msg.append("<br><b>Active procedures with missing USDA categories:</b><br><br>");
msg.append("<br><b>The following procedures were performed with missing USDA pain categories:</b><br><br>");
msg.append("<b>" + count + " procedure(s) found:</b>");
msg.append("<p><a href='" + getExecuteQueryUrl(c, "onprc_ehr", "Procedures_Missing_PainLevels", null) + "'>Click here to view the procedures in PRIME</a></p>\n");
msg.append("<hr>");
Expand All @@ -1330,7 +1330,7 @@ protected void proceduresWithoutUSDAPainLevels(final Container c, User u, final
TableSelector ts2 = new TableSelector(ti, colMap.values(), null, null);

// Table header
msg.append("<br><br><table border=1 style='border-collapse: collapse;'>");
msg.append("<table border=1 style='border-collapse: collapse;'>");
msg.append("<tr bgcolor = " + '"' + "#00FF7F" + '"' + "style='font-weight: bold;'>");
msg.append("<td> Id </td><td> Center Project </td><td> Date </td><td> Procedure </td><td> USDA Categories </td></tr>");

Expand Down Expand Up @@ -1396,7 +1396,7 @@ protected void proceduresCreatedWithNoPainLevels(final Container c, User u, fina
TableSelector ts2 = new TableSelector(ti, colMap.values(), null, null);

// Table header
msg.append("<br><br><table border=1 style='border-collapse: collapse;'>");
msg.append("<table border=1 style='border-collapse: collapse;'>");
msg.append("<tr bgcolor = " + '"' + "#00FF7F" + '"' + "style='font-weight: bold;'>");
msg.append("<td> Procedure Name </td><td> USDA Pain Categories </td><td> Category </td></tr>");

Expand Down

0 comments on commit cdfc572

Please sign in to comment.