Skip to content

Commit

Permalink
feat: Displaying date in specimen column of lab results. (openemr#6918)
Browse files Browse the repository at this point in the history
  • Loading branch information
juggernautsei committed Oct 16, 2023
1 parent 8d5dc6e commit 6af4738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interface/orders/single_order_results.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function generate_result_row(&$ctx, &$row, &$rrow, $priors_omitted = false)
echo "</td>\n";

echo " <td>";
echo myCellText($specimen_num);
echo !empty($specimen_num) ? myCellText($specimen_num) : myCellText($date_collected); //quest wanted the specimen date to show here
echo "</td>\n";

echo " <td title='" . xla('Check mark indicates reviewed') . "'>";
Expand Down

0 comments on commit 6af4738

Please sign in to comment.