Skip to content

Commit

Permalink
BAH-3416 | Fix. Add accession number for lab panel test
Browse files Browse the repository at this point in the history
  • Loading branch information
riyaTw authored Dec 21, 2023
1 parent 1d8a3ff commit 759e3df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ protected Set<Encounter> associateTestResultsToOrder(OpenElisAccession openElisA
continue;
}
for (Order order : orderEncounter.getOrders()) {
if (testDetail.getTestUuid().equals(order.getConcept().getUuid())) {
if (testDetail.getTestUuid().equals(order.getConcept().getUuid()) || order.getConcept().getUuid().equals(testDetail.getPanelUuid())) {
if ("Canceled".equals(testDetail.getStatus())) {
continue;
}
Expand Down

0 comments on commit 759e3df

Please sign in to comment.